schemas/applicationPatch.json in losant_rest-1.2.2 vs schemas/applicationPatch.json in losant_rest-1.2.3
- old
+ new
@@ -21,9 +21,32 @@
"type": "string",
"format": "date-time"
},
"endpointDefaultCors": {
"type": "boolean"
+ },
+ "globals": {
+ "type": "array",
+ "maxItems": 100,
+ "items": {
+ "type": "object",
+ "properties": {
+ "key": {
+ "type": "string",
+ "pattern": "^[0-9a-zA-Z_-]{1,255}$"
+ },
+ "json": {
+ "type": "string",
+ "minLength": 1,
+ "maxLength": 2048
+ }
+ },
+ "additionalProperties": false,
+ "required": [
+ "key",
+ "json"
+ ]
+ }
}
},
"additionalProperties": false
}
\ No newline at end of file