schemas/application.json in losant_rest-1.2.2 vs schemas/application.json in losant_rest-1.2.3
- old
+ new
@@ -49,9 +49,32 @@
"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"
+ ]
+ }
+ },
"summary": {
"type": "object",
"properties": {
"apiTokenCount": {
"type": "number"
\ No newline at end of file