WorkOS · Schema

UpdateOrganizationRoleDto

AuthenticationIdentity ProviderSSOSAMLOIDCSCIMDirectory SyncAuthorizationFGAAudit LogsMFAB2B SaaSAgentsMCP

Properties

Name Type Description
name string A descriptive name for the role.
description stringnull An optional description of the role's purpose.
View JSON Schema on GitHub

JSON Schema

workos-updateorganizationroledto-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/UpdateOrganizationRoleDto",
  "title": "UpdateOrganizationRoleDto",
  "type": "object",
  "properties": {
    "name": {
      "type": "string",
      "maxLength": 48,
      "description": "A descriptive name for the role.",
      "example": "Finance Administrator"
    },
    "description": {
      "type": [
        "string",
        "null"
      ],
      "maxLength": 150,
      "description": "An optional description of the role's purpose.",
      "example": "Can manage all financial operations"
    }
  }
}