Stytch · Schema

pwa_rbac_v3_Role

AuthenticationIdentityPasswordlessSecurityB2BConnected AppsMCPAI AgentsDeveloper Tools

Properties

Name Type Description
role_id string
description string
permissions array
View JSON Schema on GitHub

JSON Schema

stytch-pwa-rbac-v3-role-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/pwa_rbac_v3_Role",
  "title": "pwa_rbac_v3_Role",
  "type": "object",
  "properties": {
    "role_id": {
      "type": "string"
    },
    "description": {
      "type": "string"
    },
    "permissions": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/pwa_rbac_v3_Permission"
      }
    }
  },
  "required": [
    "role_id",
    "description",
    "permissions"
  ]
}