{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/MonitoringSettings", "title": "MonitoringSettings", "type": "object", "required": [ "callParkNotificationEnabled", "monitoredElements" ], "properties": { "callParkNotificationEnabled": { "type": "boolean", "example": true, "description": "Call park notification is enabled or disabled." }, "monitoredElements": { "type": "array", "items": { "$ref": "#/components/schemas/GetMonitoredElementsObject" }, "description": "Settings of monitored elements which can be person, place, virtual line or call park extension." } } }