Last active
August 29, 2015 14:02
-
-
Save alexanderdean/10ca319e08ca8e1e3984 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
{ | |
"$schema": "http://iglucentral.com/schemas/com.snowplowanalytics.self-desc/schema/jsonschema/1-0-0#", | |
"description": "Schema for a video_played event", | |
"self": { | |
"vendor": "com.channel2.vod", | |
"name": "video_played", | |
"format": "jsonschema", | |
"version": "1-0-0" | |
}, | |
"type": "object", | |
"properties": { | |
"length": { | |
"type": "number" | |
}, | |
"id": { | |
"type": "string" | |
}, | |
"tags": { | |
"type": "array", | |
"items": { | |
"type": "string" | |
} | |
}, | |
}, | |
"required": ["length", "id"], | |
"additionalProperties": false | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment