ACORD · JSON Structure

Ngds Party Structure

Party schema from ACORD NGDS API

Type: object Properties: 8
ClaimsInsurancePolicyStandardsUnderwriting

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

Properties

partyId partyType firstName lastName organizationName taxId address contacts

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-party-structure.json",
  "description": "Party schema from ACORD NGDS API",
  "type": "object",
  "properties": {
    "partyId": {
      "type": "string"
    },
    "partyType": {
      "type": "string",
      "enum": [
        "Insured",
        "Claimant",
        "Agent",
        "Broker",
        "Carrier"
      ]
    },
    "firstName": {
      "type": "string"
    },
    "lastName": {
      "type": "string"
    },
    "organizationName": {
      "type": "string"
    },
    "taxId": {
      "type": "string"
    },
    "address": {
      "$ref": "#/components/schemas/Address"
    },
    "contacts": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/Contact"
      }
    }
  },
  "name": "Party"
}