ACORD · JSON Structure

Ngds Address Structure

Address schema from ACORD NGDS API

Type: object Properties: 6
ClaimsInsurancePolicyStandardsUnderwriting

Address is a JSON Structure definition published by ACORD, describing 6 properties. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

street1 street2 city state postalCode country

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/acord/refs/heads/main/json-structure/ngds-address-structure.json",
  "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"
    }
  },
  "name": "Address"
}