TM Forum · Schema

PhoneContactMedium

PhoneContactMedium schema from TM Forum API

TelcoTelecommunicationsBSSOSSOpen APIsStandards
View JSON Schema on GitHub

JSON Schema

tmf629-customer-management-phone-contact-medium-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/tm-forum/refs/heads/main/json-schema/tmf629-customer-management-phone-contact-medium-schema.json",
  "title": "PhoneContactMedium",
  "description": "PhoneContactMedium schema from TM Forum API",
  "allOf": [
    {
      "$ref": "#/components/schemas/ContactMedium"
    },
    {
      "type": "object",
      "description": "Describes a phone number that could be used to contact a party (an individual or an organization)",
      "properties": {
        "phoneNumber": {
          "type": "string",
          "description": "The phone number of the contact"
        }
      }
    }
  ]
}