Zitadel · Schema

Membership

AuthenticationAuthorizationIdentity ManagementOpen SourceOAuth 2.0OIDC

Properties

Name Type Description
userId string
displayName string
roles array
creationDate string
View JSON Schema on GitHub

JSON Schema

zitadel-membership-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/Membership",
  "title": "Membership",
  "type": "object",
  "properties": {
    "userId": {
      "type": "string"
    },
    "displayName": {
      "type": "string"
    },
    "roles": {
      "type": "array",
      "items": {
        "type": "string"
      }
    },
    "creationDate": {
      "type": "string",
      "format": "date-time"
    }
  }
}