Zitadel · Schema

CreateMachineUserRequest

AuthenticationAuthorizationIdentity ManagementOpen SourceOAuth 2.0OIDC

Properties

Name Type Description
userName string
name string
description string
accessTokenType string
View JSON Schema on GitHub

JSON Schema

zitadel-createmachineuserrequest-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/CreateMachineUserRequest",
  "title": "CreateMachineUserRequest",
  "type": "object",
  "required": [
    "userName",
    "name"
  ],
  "properties": {
    "userName": {
      "type": "string"
    },
    "name": {
      "type": "string"
    },
    "description": {
      "type": "string"
    },
    "accessTokenType": {
      "type": "string"
    }
  }
}