schemas/applicationPatch.json in losant_rest-1.3.3 vs schemas/applicationPatch.json in losant_rest-1.4.0
- old
+ new
@@ -44,9 +44,38 @@
"required": [
"key",
"json"
]
}
+ },
+ "ftueTracking": {
+ "type": "array",
+ "items": {
+ "type": "object",
+ "properties": {
+ "name": {
+ "type": "string",
+ "pattern": "^[0-9a-zA-Z_-]{1,255}$"
+ },
+ "version": {
+ "type": "number"
+ },
+ "status": {
+ "type": "string",
+ "enum": [
+ "skipped",
+ "completed"
+ ]
+ }
+ },
+ "required": [
+ "name",
+ "version",
+ "status"
+ ],
+ "additionalProperties": false
+ },
+ "maxItems": 100
}
},
"additionalProperties": false
}
\ No newline at end of file