Acceldata · Schema

RoleList

Paginated list of roles

AI AgentsData ManagementData ObservabilityData PipelineData QualityIntelligenceObservability

Properties

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

JSON Schema

adoc-api-role-list-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://acceldata.io/schemas/role-list.json",
  "title": "RoleList",
  "type": "object",
  "description": "Paginated list of roles",
  "properties": {
    "data": {
      "type": "array",
      "items": {
        "$ref": "role.json"
      }
    },
    "total": {
      "type": "integer"
    },
    "page": {
      "type": "integer"
    },
    "limit": {
      "type": "integer"
    }
  }
}