diff --git a/schemas/com.snowplowanalytics.snowplow/event_specification/jsonschema/1-0-1 b/schemas/com.snowplowanalytics.snowplow/event_specification/jsonschema/1-0-1 new file mode 100644 index 00000000..286f7a2a --- /dev/null +++ b/schemas/com.snowplowanalytics.snowplow/event_specification/jsonschema/1-0-1 @@ -0,0 +1,29 @@ +{ + "$schema": "http://iglucentral.com/schemas/com.snowplowanalytics.self-desc/schema/jsonschema/1-0-0#", + "self": { + "vendor": "com.snowplowanalytics.snowplow", + "name": "event_specification", + "format": "jsonschema", + "version": "1-0-1" + }, + "description": "Entity schema for referencing an event specification", + "properties": { + "id": { + "description": "Identifier for the event specification that the event adheres to", + "type": "string", + "maxLength": 254, + "minLength": 1 + }, + "name": { + "description": "Name for the event specification that the event adheres to", + "type": "string", + "maxLength": 256, + "minLength": 1 + } + }, + "additionalProperties": false, + "type": "object", + "required": [ + "id" + ] +}