{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/LocationAssignedNumbersGet", "title": "LocationAssignedNumbersGet", "type": "object", "description": "Response object containing the list of assigned phone numbers/extension in the user's location.", "properties": { "phoneNumbers": { "type": "array", "description": "List of assigned phone numbers/extension in user's location.", "items": { "$ref": "#/components/schemas/LocationAssignedNumber" } } }, "example": { "phoneNumbers": [ { "phoneNumber": "+12145551234", "extension": "1234", "state": "ACTIVE", "phoneNumberType": "PRIMARY", "tollFreeNumber": false } ] } }