Response containing a list of E911 locations
{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/bandwidth/refs/heads/main/json-schema/emergency-calling-location-list-response-schema.json", "title": "LocationListResponse", "description": "Response containing a list of E911 locations", "type": "object", "properties": { "totalCount": { "type": "integer", "description": "Total number of locations" }, "locations": { "type": "array", "items": { "$ref": "#/components/schemas/Location" } } } }