-
Notifications
You must be signed in to change notification settings - Fork 113
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add com.snowplowanalytics.snowplow/event_specification/jsonschema/1-0…
…-2 (close #1398)
- Loading branch information
Showing
1 changed file
with
41 additions
and
0 deletions.
There are no files selected for viewing
41 changes: 41 additions & 0 deletions
41
schemas/com.snowplowanalytics.snowplow/event_specification/jsonschema/1-0-2
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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" | ||
] | ||
} |