Stytch · Schema

api_organization_v1_CustomRole

AuthenticationIdentityPasswordlessSecurityB2BConnected AppsMCPAI AgentsDeveloper Tools

Properties

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

JSON Schema

stytch-api-organization-v1-customrole-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/api_organization_v1_CustomRole",
  "title": "api_organization_v1_CustomRole",
  "type": "object",
  "properties": {
    "role_id": {
      "type": "string"
    },
    "description": {
      "type": "string"
    },
    "permissions": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/api_organization_v1_CustomRolePermission"
      }
    }
  },
  "required": [
    "role_id",
    "description",
    "permissions"
  ]
}