ACORD · JSON Structure

Ngds Claim Request Structure

ClaimRequest schema from ACORD NGDS API

Type: object Properties: 6 Required: 3
ClaimsInsurancePolicyStandardsUnderwriting

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

Properties

policyId lossDate lossDescription lossLocation claimant estimatedLossAmount

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-claim-request-structure.json",
  "description": "ClaimRequest schema from ACORD NGDS API",
  "type": "object",
  "properties": {
    "policyId": {
      "type": "string"
    },
    "lossDate": {
      "type": "date"
    },
    "lossDescription": {
      "type": "string"
    },
    "lossLocation": {
      "$ref": "#/components/schemas/Address"
    },
    "claimant": {
      "$ref": "#/components/schemas/PartyRequest"
    },
    "estimatedLossAmount": {
      "type": "double"
    }
  },
  "required": [
    "policyId",
    "lossDate",
    "lossDescription"
  ],
  "name": "ClaimRequest"
}