ACORD · Schema

Address

Address schema from ACORD NGDS API

ClaimsInsurancePolicyStandardsUnderwriting

Properties

Name Type Description
street1 string
street2 string
city string
state string
postalCode string
country string
View JSON Schema on GitHub

JSON Schema

ngds-address-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-address-schema.json",
  "title": "Address",
  "description": "Address schema from ACORD NGDS API",
  "type": "object",
  "properties": {
    "street1": {
      "type": "string"
    },
    "street2": {
      "type": "string"
    },
    "city": {
      "type": "string"
    },
    "state": {
      "type": "string"
    },
    "postalCode": {
      "type": "string"
    },
    "country": {
      "type": "string",
      "default": "US"
    }
  }
}