ACORD · JSON Structure

Ngds Party Request Structure

PartyRequest schema from ACORD NGDS API

Type: object Properties: 7 Required: 1
ClaimsInsurancePolicyStandardsUnderwriting

PartyRequest is a JSON Structure definition published by ACORD, describing 7 properties, of which 1 is required. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

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-request-structure.json",
  "description": "PartyRequest schema from ACORD NGDS API",
  "type": "object",
  "properties": {
    "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"
      }
    }
  },
  "required": [
    "partyType"
  ],
  "name": "PartyRequest"
}