From 9daf5093877b1b64aeec4d39c2ecba7733d82798 Mon Sep 17 00:00:00 2001
From: Peter Perlepes
Date: Thu, 28 Mar 2024 16:26:33 +0200
Subject: [PATCH] Add
com.snowplowanalytics.snowplow/event_specification/jsonschema/1-0-2 (close
#1398)
---
.../event_specification/jsonschema/1-0-2 | 41 +++++++++++++++++++
1 file changed, 41 insertions(+)
create mode 100644 schemas/com.snowplowanalytics.snowplow/event_specification/jsonschema/1-0-2
diff --git a/schemas/com.snowplowanalytics.snowplow/event_specification/jsonschema/1-0-2 b/schemas/com.snowplowanalytics.snowplow/event_specification/jsonschema/1-0-2
new file mode 100644
index 000000000..a118eca43
--- /dev/null
+++ b/schemas/com.snowplowanalytics.snowplow/event_specification/jsonschema/1-0-2
@@ -0,0 +1,41 @@
+{
+ "$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-2"
+ },
+ "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
+ },
+ "data_product_id": {
+ "description": "Identifier for the data product that the event specification belongs to",
+ "type": "string",
+ "maxLength": 256,
+ "minLength": 36
+ },
+ "data_product_name": {
+ "description": "Name for the data product that the event specification belongs to",
+ "type": "string",
+ "maxLength": 256,
+ "minLength": 1
+ }
+ },
+ "additionalProperties": false,
+ "type": "object",
+ "required": [
+ "id"
+ ]
+}