Auth0 · Schema

CreateOrganizationMemberRequestContent

AI AgentsAuthenticationAuthorizationFGAIdentity ManagementMCPOAuthOktaOpenID ConnectSAMLSecuritySCIM

Properties

Name Type Description
members array List of user IDs to add to the organization as members.
View JSON Schema on GitHub

JSON Schema

auth0-createorganizationmemberrequestcontent-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/CreateOrganizationMemberRequestContent",
  "title": "CreateOrganizationMemberRequestContent",
  "type": "object",
  "additionalProperties": true,
  "required": [
    "members"
  ],
  "properties": {
    "members": {
      "type": "array",
      "description": "List of user IDs to add to the organization as members.",
      "minItems": 1,
      "items": {
        "type": "string",
        "format": "user-id-with-max-length"
      }
    }
  }
}