ACORD · Schema

Contact

Contact schema from ACORD NGDS API

ClaimsInsurancePolicyStandardsUnderwriting

Properties

Name Type Description
contactType string
value string
View JSON Schema on GitHub

JSON Schema

ngds-contact-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/acord/refs/heads/main/json-schema/ngds-contact-schema.json",
  "title": "Contact",
  "description": "Contact schema from ACORD NGDS API",
  "type": "object",
  "properties": {
    "contactType": {
      "type": "string",
      "enum": [
        "Phone",
        "Email",
        "Fax"
      ]
    },
    "value": {
      "type": "string"
    }
  }
}