{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/preferredAnswerEndpointInformation", "title": "preferredAnswerEndpointInformation", "type": "object", "description": "Response object for the preferred answer endpoint information.", "example": { "endpoints": [ { "id": "Y2lzY29z...", "type": "DEVICE", "name": "Cisco 8865 (Phone in reception area)", "isPreferredAnswerEndpoint": false }, { "id": "Y2lzY29b...", "type": "APPLICATION", "name": "Webex Desktop Application", "isPreferredAnswerEndpoint": true } ] }, "required": [ "endpoints" ], "properties": { "endpoints": { "type": "array", "items": { "$ref": "#/components/schemas/endpoints" }, "description": "Array of endpoints available to the person." } } }