aflac · Schema

ClaimList

Paginated list of claims.

Fortune 500

Properties

Name Type Description
items array Array of claim records.
total integer Total number of matching claims.
View JSON Schema on GitHub

JSON Schema

enterprise-connect-claim-list-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/aflac/refs/heads/main/json-schema/enterprise-connect-claim-list-schema.json",
  "title": "ClaimList",
  "description": "Paginated list of claims.",
  "type": "object",
  "properties": {
    "items": {
      "type": "array",
      "description": "Array of claim records.",
      "items": {
        "$ref": "#/components/schemas/Claim"
      },
      "example": [
        "example_value"
      ]
    },
    "total": {
      "type": "integer",
      "description": "Total number of matching claims.",
      "example": 30
    }
  }
}