{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/UserMonitoringPatch", "title": "UserMonitoringPatch", "type": "object", "properties": { "enableCallParkNotification": { "type": "boolean", "example": true, "description": "Call park notification is enabled or disabled." }, "monitoredElements": { "type": "array", "maxItems": 50, "items": { "type": "string" }, "description": "Array of ID strings of monitored elements. Maximum 50 elements." } } }