schemas/dashboards.json in losant_rest-1.3.2 vs schemas/dashboards.json in losant_rest-1.3.3
- old
+ new
@@ -54,9 +54,59 @@
"type": "boolean"
},
"public": {
"type": "boolean"
},
+ "reportConfigs": {
+ "type": "array",
+ "max": 10,
+ "items": {
+ "type": "object",
+ "additionalProperties": false,
+ "required": [
+ "cron",
+ "toEmail"
+ ],
+ "properties": {
+ "id": {
+ "type": "string",
+ "max": 14
+ },
+ "cron": {
+ "type": "string"
+ },
+ "toEmail": {
+ "type": "array",
+ "min": 1,
+ "max": 10,
+ "items": {
+ "type": "string",
+ "format": "email",
+ "maxLength": 1024
+ }
+ },
+ "subject": {
+ "type": "string",
+ "max": 255
+ },
+ "message": {
+ "type": "string",
+ "max": 32767
+ },
+ "theme": {
+ "type": "string",
+ "enum": [
+ "dark",
+ "light"
+ ]
+ },
+ "timezone": {
+ "type": "string",
+ "max": 255
+ }
+ }
+ }
+ },
"blocks": {
"type": "array",
"items": {
"type": "object",
"properties": {
\ No newline at end of file