{
  "$schema": "http://json-schema.org/draft-04/schema#",
  "$anchor": "cdm.base.staticdata.party",
  "type": "object",
  "title": "ContactInformation",
  "description": "A class to specify contact information associated with a party: telephone, postal/street address, email and web page.",
  "properties": {
    "telephone": {
      "description": "The telephone number.",
      "type": "array",
      "items": {
        "$ref": "cdm-base-staticdata-party-TelephoneNumber.schema.json"
      },
      "minItems": 0
    },
    "address": {
      "description": "The street/postal address.",
      "type": "array",
      "items": {
        "$ref": "cdm-base-staticdata-party-Address.schema.json"
      },
      "minItems": 0
    },
    "email": {
      "description": "The email address.",
      "type": "array",
      "items": {
        "type": "string"
      },
      "minItems": 0
    },
    "webPage": {
      "description": "The web page. This attribute is not specified as part of the FpML ContactInformation complex type.",
      "type": "array",
      "items": {
        "type": "string"
      },
      "minItems": 0
    }
  }
}
