Skip to content

Commit

Permalink
Add com.snowplowanalytics.snowplow/event_specification/jsonschema/1-0…
Browse files Browse the repository at this point in the history
…-2 (close #1398)
  • Loading branch information
igneel64 authored and jbeemster committed Apr 2, 2024
1 parent 7162999 commit de9b1af
Showing 1 changed file with 41 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -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", "null"],
"maxLength": 256,
"minLength": 1
},
"data_product_id": {
"description": "Identifier for the data product that the event specification belongs to",
"type": ["string", "null"],
"maxLength": 256,
"minLength": 1
},
"data_product_name": {
"description": "Name for the data product that the event specification belongs to",
"type": ["string", "null"],
"maxLength": 256,
"minLength": 1
}
},
"additionalProperties": false,
"type": "object",
"required": [
"id"
]
}

0 comments on commit de9b1af

Please sign in to comment.