Acceldata · Schema

Role

A role with associated permissions

AI AgentsData ManagementData ObservabilityData PipelineData QualityIntelligenceObservability

Properties

Name Type Description
id string Role identifier
name string Role name
description string Role description
permissions array List of permissions assigned to this role
View JSON Schema on GitHub

JSON Schema

adoc-api-role-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://acceldata.io/schemas/role.json",
  "title": "Role",
  "type": "object",
  "description": "A role with associated permissions",
  "properties": {
    "id": {
      "type": "string",
      "description": "Role identifier"
    },
    "name": {
      "type": "string",
      "description": "Role name"
    },
    "description": {
      "type": "string",
      "description": "Role description"
    },
    "permissions": {
      "type": "array",
      "description": "List of permissions assigned to this role",
      "items": {
        "type": "string"
      }
    }
  }
}