Zitadel · Schema

ListUsersRequest

AuthenticationAuthorizationIdentity ManagementOpen SourceOAuth 2.0OIDC

Properties

Name Type Description
query object
queries array
View JSON Schema on GitHub

JSON Schema

zitadel-listusersrequest-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ListUsersRequest",
  "title": "ListUsersRequest",
  "type": "object",
  "properties": {
    "query": {
      "$ref": "#/components/schemas/ListQuery"
    },
    "queries": {
      "type": "array",
      "items": {
        "type": "object",
        "properties": {
          "userNameQuery": {
            "type": "object",
            "properties": {
              "userName": {
                "type": "string"
              },
              "method": {
                "type": "string"
              }
            }
          },
          "emailQuery": {
            "type": "object",
            "properties": {
              "emailAddress": {
                "type": "string"
              }
            }
          }
        }
      }
    }
  }
}