{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/MonitoredMemberObject", "title": "MonitoredMemberObject", "type": "object", "required": [ "id", "lastName", "firstName", "displayName", "type" ], "properties": { "id": { "type": "string", "example": "Y2lzY29zcGFyazovL3VzL1BFT1BMRS82MWU3MDlkNy1hM2IxLTQ2MDctOTBiOC04NmE5MDgxYWFkNmE", "description": "Unique identifier of the person, workspace or virtual line to be monitored." }, "lastName": { "type": "string", "example": "Little", "description": "Last name of the monitored person, workspace or virtual line." }, "firstName": { "type": "string", "example": "Alice", "description": "First name of the monitored person, workspace or virtual line." }, "displayName": { "type": "string", "example": "Alice Little", "description": "Display name of the monitored person, workspace or virtual line." }, "type": { "$ref": "#/components/schemas/PeopleOrPlaceOrVirtualLineType", "description": "Indicates whether type is person, workspace or virtual line." }, "email": { "type": "string", "example": "alice@example.com", "description": "Email address of the monitored person, workspace or virtual line." }, "numbers": { "type": "array", "items": { "$ref": "#/components/schemas/MonitoredNumberObject" }, "description": "List of phone numbers of the monitored person, workspace or virtual line." } } }