{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/AvailableCallerIdObject", "title": "AvailableCallerIdObject", "type": "object", "required": [ "id", "type", "name" ], "properties": { "id": { "type": "string", "example": "Y2lzY29zcGFyazovL3VzL0NBTExfUVVFVUUvMjE3ZDU3YmEtOTMxYi00ZjczLTk1Y2EtOGY3MWFhYzc4MTE5", "description": "Call queue or hunt group's unique identifier." }, "type": { "$ref": "#/components/schemas/AgentCallerIdType", "description": "Member is of type `CALL_QUEUE` or `HUNT_GROUP`." }, "name": { "type": "string", "example": "TestCallQueue", "description": "Call queue or hunt group's name." }, "phoneNumber": { "type": "string", "example": "+441234200090", "description": "When not null, it is call queue or hunt group's phone number." }, "extension": { "type": "string", "example": "6001", "description": "When not null, it is call queue or hunt group's extension number." } } }