ACORD · Schema

ACORD Claim

JSON Schema for an ACORD NGDS insurance claim object, representing a first notice of loss through claim settlement.

ClaimsData StandardsInsurancePolicyProperty CasualtyReinsuranceStandardsUnderwritingXML

Properties

Name Type Description
claimId string Unique internal claim identifier
claimNumber string Carrier-assigned claim number
policyId string Reference to the associated policy
policyNumber string
status string
lossDate string Date the loss or incident occurred
reportedDate string Date the claim was reported
lossDescription string Narrative description of the loss
lossType string Type of loss event
lossLocation object
claimant object
adjuster object
reserveAmount number Current reserve amount set for this claim
paidAmount number Total amount paid on this claim to date
currency string
payments array
createdAt string
updatedAt string
View JSON Schema on GitHub

JSON Schema

acord-claim-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/acord-claim-schema.json",
  "title": "ACORD Claim",
  "description": "JSON Schema for an ACORD NGDS insurance claim object, representing a first notice of loss through claim settlement.",
  "type": "object",
  "required": ["claimId", "claimNumber", "policyId", "status", "lossDate"],
  "properties": {
    "claimId": {
      "type": "string",
      "description": "Unique internal claim identifier"
    },
    "claimNumber": {
      "type": "string",
      "description": "Carrier-assigned claim number"
    },
    "policyId": {
      "type": "string",
      "description": "Reference to the associated policy"
    },
    "policyNumber": {
      "type": "string"
    },
    "status": {
      "type": "string",
      "enum": ["Open", "Closed", "Pending", "Denied", "Paid"]
    },
    "lossDate": {
      "type": "string",
      "format": "date",
      "description": "Date the loss or incident occurred"
    },
    "reportedDate": {
      "type": "string",
      "format": "date",
      "description": "Date the claim was reported"
    },
    "lossDescription": {
      "type": "string",
      "description": "Narrative description of the loss"
    },
    "lossType": {
      "type": "string",
      "description": "Type of loss event",
      "enum": ["Collision", "Theft", "Fire", "Water", "Wind", "Liability", "Medical", "Other"]
    },
    "lossLocation": {
      "$ref": "#/$defs/Address"
    },
    "claimant": {
      "$ref": "#/$defs/Party"
    },
    "adjuster": {
      "$ref": "#/$defs/Party"
    },
    "reserveAmount": {
      "type": "number",
      "minimum": 0,
      "description": "Current reserve amount set for this claim"
    },
    "paidAmount": {
      "type": "number",
      "minimum": 0,
      "description": "Total amount paid on this claim to date"
    },
    "currency": {
      "type": "string",
      "default": "USD"
    },
    "payments": {
      "type": "array",
      "items": {
        "$ref": "#/$defs/ClaimPayment"
      }
    },
    "createdAt": {
      "type": "string",
      "format": "date-time"
    },
    "updatedAt": {
      "type": "string",
      "format": "date-time"
    }
  },
  "$defs": {
    "Party": {
      "type": "object",
      "required": ["partyType"],
      "properties": {
        "partyId": {
          "type": "string"
        },
        "partyType": {
          "type": "string",
          "enum": ["Insured", "Claimant", "Agent", "Broker", "Carrier", "Adjuster"]
        },
        "firstName": {
          "type": "string"
        },
        "lastName": {
          "type": "string"
        },
        "organizationName": {
          "type": "string"
        },
        "address": {
          "$ref": "#/$defs/Address"
        }
      }
    },
    "ClaimPayment": {
      "type": "object",
      "required": ["paymentId", "amount", "paymentDate"],
      "properties": {
        "paymentId": {
          "type": "string"
        },
        "amount": {
          "type": "number",
          "minimum": 0
        },
        "paymentDate": {
          "type": "string",
          "format": "date"
        },
        "paymentType": {
          "type": "string",
          "enum": ["Check", "EFT", "Wire"]
        },
        "coverageType": {
          "type": "string"
        }
      }
    },
    "Address": {
      "type": "object",
      "properties": {
        "street1": {"type": "string"},
        "street2": {"type": "string"},
        "city": {"type": "string"},
        "state": {"type": "string"},
        "postalCode": {"type": "string"},
        "country": {"type": "string", "default": "US"}
      }
    }
  }
}

Work with this as data

Every JSON Schema here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for schemas

4 MCP tools reach this
  • find_json_schemasBrowse and filter every JSON Schema in the catalog.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools →

Call it yourself

curl for this page
This JSON Schema
curl "https://apis.io/api/v1/json-schemas/acord-claim"
All schemas
curl "https://apis.io/api/v1/json-schemas?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.

A second provider on the same verified email joins the account you already have.