We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 66e1dba commit aae3810Copy full SHA for aae3810
schemas/com.snowplowanalytics.snowplow/application/jsonschema/1-0-0
@@ -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