Acadia · Schema

RoleList

Paginated list of roles

Connected WorkerKnowledge ManagementManufacturingSkills ManagementTrainingWorkforce Development

Properties

Name Type Description
data array
total integer
page integer
limit integer
View JSON Schema on GitHub

JSON Schema

acadia-role-list-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/acadia/refs/heads/main/json-schema/acadia-role-list-schema.json",
  "title": "RoleList",
  "description": "Paginated list of roles",
  "type": "object",
  "properties": {
    "data": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/Role"
      }
    },
    "total": {
      "type": "integer",
      "example": 8
    },
    "page": {
      "type": "integer",
      "example": 1
    },
    "limit": {
      "type": "integer",
      "example": 25
    }
  }
}