aflac · Schema

PolicyList

Paginated list of policies.

Fortune 500

Properties

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

JSON Schema

enterprise-connect-policy-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-policy-list-schema.json",
  "title": "PolicyList",
  "description": "Paginated list of policies.",
  "type": "object",
  "properties": {
    "items": {
      "type": "array",
      "description": "Array of policy records.",
      "items": {
        "$ref": "#/components/schemas/Policy"
      },
      "example": [
        "example_value"
      ]
    },
    "total": {
      "type": "integer",
      "description": "Total number of matching policies.",
      "example": 75
    }
  }
}