aflac · JSON Structure

Enterprise Connect Enrollment List Structure

Paginated list of enrollment records.

Type: object Properties: 4
Fortune 500

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

Properties

items total limit offset

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-enrollment-list-structure.json",
  "name": "EnrollmentList",
  "description": "Paginated list of enrollment records.",
  "type": "object",
  "properties": {
    "items": {
      "type": "array",
      "description": "Array of enrollment records.",
      "items": {
        "$ref": "#/components/schemas/Enrollment"
      },
      "example": [
        "example_value"
      ]
    },
    "total": {
      "type": "int32",
      "description": "Total number of matching enrollments.",
      "example": 150
    },
    "limit": {
      "type": "int32",
      "description": "Maximum number of results returned.",
      "example": 50
    },
    "offset": {
      "type": "int32",
      "description": "Number of results skipped.",
      "example": 0
    }
  }
}