{ "$schema": "http://json-schema.org/draft-07/schema#", "type": "object", "properties": { "creationDate": { "type": "string", "format": "date-time" }, "lastUpdated": { "type": "string", "format": "date-time" }, "name": { "type": "string", "minLength": 1, "maxLength": 255 }, "id": { "type": "string", "pattern": "^[A-Fa-f\\d]{24}$" }, "instanceId": { "type": "string", "pattern": "^[A-Fa-f\\d]{24}$" }, "description": { "type": "string", "maxLength": 32767 }, "iconColor": { "type": "string", "maxLength": 64 }, "limits": { "type": "object", "properties": { "apitoken": { "type": "integer", "minimum": 0 }, "application": { "type": "integer", "minimum": 0 }, "applicationkey": { "type": "integer", "minimum": 0 }, "credential": { "type": "integer", "minimum": 0 }, "dashboard": { "type": "integer", "minimum": 0 }, "datatable": { "type": "integer", "minimum": 0 }, "device": { "type": "integer", "minimum": 0 }, "devicerecipe": { "type": "integer", "minimum": 0 }, "experiencedomain": { "type": "integer", "minimum": 0 }, "experienceendpoint": { "type": "integer", "minimum": 0 }, "experiencegroup": { "type": "integer", "minimum": 0 }, "experienceslug": { "type": "integer", "minimum": 0 }, "experienceuser": { "type": "integer", "minimum": 0 }, "experienceversion": { "type": "integer", "minimum": 0 }, "experienceview": { "type": "integer", "minimum": 0 }, "file": { "type": "integer", "minimum": 0 }, "flow": { "type": "integer", "minimum": 0 }, "integration": { "type": "integer", "minimum": 0 }, "notebook": { "type": "integer", "minimum": 0 }, "resourcejob": { "type": "integer", "minimum": 0 }, "webhook": { "type": "integer", "minimum": 0 }, "dataTTL": { "type": "integer", "minimum": 86400 }, "member": { "type": "integer", "minimum": 0 }, "payload": { "type": "integer", "minimum": 0 }, "storage": { "type": "integer", "minimum": 0 }, "notebookMinutesPerRun": { "type": "integer", "minimum": 0 }, "notebookMinutesPerMonth": { "type": "integer", "minimum": 0 }, "notebookInParallel": { "type": "integer", "minimum": 0 }, "experienceFlowSlots": { "type": "integer", "minimum": 0 }, "applicationFlowSlots": { "type": "integer", "minimum": 0 } }, "additionalProperties": false }, "whitelistedEmailDomains": { "type": "array", "items": { "type": "string", "maxLength": 45, "minLength": 3 } }, "auditLogEnabled": { "type": "boolean" }, "disabledAt": { "oneOf": [ { "type": "boolean", "enum": [ false ] }, { "type": "string", "format": "date-time" } ] }, "isReadOnly": { "type": "boolean" }, "tags": { "type": "array", "items": { "type": "object", "properties": { "key": { "type": "string", "pattern": "^[0-9a-zA-Z_-]{1,255}$" }, "value": { "type": "string", "minLength": 1, "maxLength": 255 } }, "required": [ "key", "value" ], "additionalProperties": false }, "maxItems": 100 }, "referralId": { "type": "string", "maxLength": 1024 } }, "additionalProperties": false, "required": [ "name" ] }