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
…-1 (close #1396)
  • Loading branch information
igneel64 committed Mar 27, 2024
1 parent 577eeb1 commit 308c631
Showing 1 changed file with 29 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -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"
]
}

0 comments on commit 308c631

Please sign in to comment.