Bandwidth · Schema

Site

A site (sub-account) within a Bandwidth account

CommunicationsCPaaSVoiceMessagingTelephonySMSMFA

Properties

Name Type Description
id string The unique identifier for the site
name string The name of the site
description string A description of the site
address object
View JSON Schema on GitHub

JSON Schema

phone-numbers-site-schema.json Raw ↑
{
  "$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"
    }
  }
}