Dataiku · Schema

Role

AnalyticsArtificial IntelligenceData PlatformData ScienceMachine Learning

Properties

Name Type Description
id string Role identifier
name string Role display name
description string Role description
permissions array Permissions granted by this role
View JSON Schema on GitHub

JSON Schema

dataiku-role-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/Role",
  "title": "Role",
  "type": "object",
  "properties": {
    "id": {
      "type": "string",
      "description": "Role identifier"
    },
    "name": {
      "type": "string",
      "description": "Role display name"
    },
    "description": {
      "type": "string",
      "description": "Role description"
    },
    "permissions": {
      "type": "array",
      "items": {
        "type": "string"
      },
      "description": "Permissions granted by this role"
    }
  }
}