{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/PlaceGetNumbersResponse", "title": "PlaceGetNumbersResponse", "type": "object", "required": [ "phoneNumbers" ], "properties": { "distinctiveRingEnabled": { "type": "boolean", "example": true, "description": "Enables a distinctive ring pattern for the person." }, "phoneNumbers": { "type": "array", "items": { "$ref": "#/components/schemas/PhoneNumber" }, "description": "List of phone numbers that are assigned to a person." } } }