From 5e0d7ccaff2b0ea1cb1b1f71374a22ff68635dc0 Mon Sep 17 00:00:00 2001 From: Costas Kotsokalis Date: Wed, 21 Feb 2024 16:04:49 +0200 Subject: [PATCH 1/2] Add com.snowplowanalytics.snowplow/event_specification/jsonschema/1-0-0 (close #1389) --- .../event_specification/jsonschema/1-0-0 | 23 +++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 schemas/com.snowplowanalytics.snowplow/event_specification/jsonschema/1-0-0 diff --git a/schemas/com.snowplowanalytics.snowplow/event_specification/jsonschema/1-0-0 b/schemas/com.snowplowanalytics.snowplow/event_specification/jsonschema/1-0-0 new file mode 100644 index 00000000..19439e19 --- /dev/null +++ b/schemas/com.snowplowanalytics.snowplow/event_specification/jsonschema/1-0-0 @@ -0,0 +1,23 @@ +{ + "$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-0" + }, + "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 + } + }, + "additionalProperties": false, + "type": "object", + "required": [ + "id" + ] +} From aafbe47c2dce37294de1bf0fbe150e38fc29a6df Mon Sep 17 00:00:00 2001 From: jbeemster Date: Wed, 21 Feb 2024 15:32:04 +0100 Subject: [PATCH 2/2] Prepare for R154 release --- CHANGELOG | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/CHANGELOG b/CHANGELOG index 16ee1670..f26f8c0e 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,3 +1,7 @@ +Release 154 (2024-02-21) +------------------------ +Add com.snowplowanalytics.snowplow/event_specification/jsonschema/1-0-0 (#1389) + Release 153 (2024-02-12) ------------------------ Add com.snowplowanalytics.snowplow/javascript_script_config/jsonschema/1-0-1 (#1370)