aflac · JSON Structure

Enterprise Connect Claim Request Structure

Request payload for submitting a new claim.

Type: object Properties: 4 Required: 3
Fortune 500

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

Properties

policy_id claim_type incident_date description

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/aflac/refs/heads/main/json-structure/enterprise-connect-claim-request-structure.json",
  "name": "ClaimRequest",
  "description": "Request payload for submitting a new claim.",
  "type": "object",
  "properties": {
    "policy_id": {
      "type": "string",
      "description": "Policy against which to file the claim.",
      "example": "POL-987654"
    },
    "claim_type": {
      "type": "string",
      "description": "Type of claim event.",
      "enum": [
        "accident",
        "critical_illness",
        "cancer_diagnosis",
        "hospitalization",
        "disability"
      ],
      "example": "accident"
    },
    "incident_date": {
      "type": "date",
      "description": "Date of the qualifying event.",
      "example": "2025-02-10"
    },
    "description": {
      "type": "string",
      "description": "Description of the incident or diagnosis.",
      "example": "Employee sustained a broken arm in a workplace accident."
    }
  },
  "required": [
    "policy_id",
    "claim_type",
    "incident_date"
  ]
}