{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/MonitoredPersonObject", "title": "MonitoredPersonObject", "type": "object", "properties": { "id": { "type": "string", "example": "Y2lzY29zcGFyazovL3VzL1BFT1BMRS82MWU3MDlkNy1hM2IxLTQ2MDctOTBiOC04NmE5MDgxYWFkNmE", "description": "Unique identifier of the person." }, "lastName": { "type": "string", "example": "Little", "description": "Last name of the person." }, "firstName": { "type": "string", "example": "Alice", "description": "First name of the person." }, "displayName": { "type": "string", "example": "Alice Little", "description": "Display name of the person." }, "type": { "$ref": "#/components/schemas/PeopleOrPlaceOrVirtualLineType", "description": "Type usually indicates `PEOPLE`, `PLACE` or `VIRTUAL_LINE`. Push-to-Talk and Privacy features only supports `PEOPLE`." }, "email": { "type": "string", "example": "alice@example.com", "description": "Email address of the person." }, "numbers": { "type": "array", "items": { "$ref": "#/components/schemas/PushToTalkNumberObject" }, "description": "List of phone numbers of the person." } } }