From 77abe45ef633c0017018ef64e547cc01ab1129c0 Mon Sep 17 00:00:00 2001 From: Peter Perlepes Date: Wed, 27 Mar 2024 17:51:07 +0200 Subject: [PATCH] Add com.snowplowanalytics.snowplow/event_specification/jsonschema/1-0-1 (close #1396) (cherry picked from commit 308c631f8b0a6e47f15cd346041da6f3c6d230a3) --- .../event_specification/jsonschema/1-0-1 | 29 +++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 schemas/com.snowplowanalytics.snowplow/event_specification/jsonschema/1-0-1 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" + ] +}