{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/bandwidth/refs/heads/main/json-schema/phone-numbers-site-schema.json", "title": "Site", "description": "A site (sub-account) within a Bandwidth account", "type": "object", "properties": { "id": { "type": "string", "description": "The unique identifier for the site" }, "name": { "type": "string", "description": "The name of the site" }, "description": { "type": "string", "description": "A description of the site" }, "address": { "$ref": "#/components/schemas/Address" } } }