Skip to content

Commit aae3810

Browse files
Add com.snowplowanalytics.snowplow/application/jsonschema/1-0-0 (close #1418)
PR #1419
1 parent 66e1dba commit aae3810

File tree

1 file changed

+20
-0
lines changed
  • schemas/com.snowplowanalytics.snowplow/application/jsonschema

1 file changed

+20
-0
lines changed
Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
{
2+
"$schema": "http://iglucentral.com/schemas/com.snowplowanalytics.self-desc/schema/jsonschema/1-0-0#",
3+
"description": "Schema for an application context which tracks the app version.",
4+
"self": {
5+
"vendor": "com.snowplowanalytics.snowplow",
6+
"name": "application",
7+
"format": "jsonschema",
8+
"version": "1-0-0"
9+
},
10+
"type": "object",
11+
"properties": {
12+
"version": {
13+
"type": "string",
14+
"description": "Version of the application. Can be a semver-like structure (e.g 1.1.0) or a Git commit SHA hash.",
15+
"maxLength": 255
16+
}
17+
},
18+
"required": ["version"],
19+
"additionalProperties": false
20+
}

0 commit comments

Comments
 (0)