{ "$schema": "http://json-schema.org/draft-04/schema#", "type": "object", "properties": { "destinationId": { "type": "string", "pattern": "^[A-Fa-f\\d]{24}$" }, "destinationType": { "type": "string", "enum": [ "user", "organization" ] }, "applicationIds": { "type": "array", "items": { "type": "string", "pattern": "^[A-Fa-f\\d]{24}$" } }, "dashboardIds": { "type": "array", "items": { "type": "string", "pattern": "^[A-Fa-f\\d]{24}$" } }, "solutionIds": { "type": "array", "items": { "type": "string", "pattern": "^[A-Fa-f\\d]{24}$" } }, "strict": { "type": "boolean" } }, "additionalProperties": false, "required": [ "destinationId", "destinationType" ] }