schemas/instance.json in losant_rest-1.13.0 vs schemas/instance.json in losant_rest-1.13.1
- old
+ new
@@ -24,9 +24,69 @@
"format": "date-time"
},
"allowAuditLogging": {
"type": "boolean"
},
+ "reportConfigs": {
+ "type": "array",
+ "items": {
+ "type": "object",
+ "max": 10,
+ "properties": {
+ "id": {
+ "type": "string",
+ "maxLength": 48
+ },
+ "cron": {
+ "type": "string",
+ "maxLength": 255
+ },
+ "timezone": {
+ "type": "string",
+ "maxLength": 255
+ },
+ "emails": {
+ "type": "array",
+ "max": 10,
+ "items": {
+ "type": "string",
+ "format": "email",
+ "maxLength": 1024
+ }
+ },
+ "callbackUrl": {
+ "type": "string",
+ "maxLength": 1024
+ },
+ "resourceGroupBy": {
+ "type": "string",
+ "enum": [
+ "application",
+ "organization"
+ ]
+ },
+ "dateGroupBy": {
+ "type": "string",
+ "enum": [
+ "day",
+ "month"
+ ]
+ },
+ "periods": {
+ "type": "integer",
+ "minimum": 1,
+ "maximum": 90
+ },
+ "includeSandbox": {
+ "type": "boolean"
+ }
+ },
+ "required": [
+ "cron"
+ ],
+ "additionalProperties": false
+ }
+ },
"limits": {
"organization": {
"type": "number"
},
"apitoken": {
\ No newline at end of file