{
  "$schema": "http://json-schema.org/draft-04/schema#",
  "$anchor": "cdm.base.staticdata.party",
  "type": "object",
  "title": "TelephoneNumber",
  "description": "A class to specify a telephone number as a type of phone number (e.g. work, personal, ...) alongside with the actual number.",
  "properties": {
    "telephoneNumberType": {
      "description": "The type of telephone number, e.g. work, mobile.",
      "$ref": "cdm-base-staticdata-party-TelephoneTypeEnum.schema.json"
    },
    "number": {
      "description": "The actual telephone number.",
      "type": "string"
    }
  },
  "required": [
    "number"
  ]
}
