Docs API schemas

neoserver 0.1.2

AuthConsoleConfig

AuthConsoleConfig schema for the neoserver management API.

← All schemas

object
enabled boolean required
method string required
oidc object required
client_id string required
enabled boolean required
group_claims array of string
issuer string required
redirect_uri string required
scopes array of string required
password_login boolean required
token_login boolean required
OpenAPI schema definition
{
  "properties": {
    "enabled": {
      "type": "boolean"
    },
    "method": {
      "type": "string"
    },
    "oidc": {
      "properties": {
        "client_id": {
          "type": "string"
        },
        "enabled": {
          "type": "boolean"
        },
        "group_claims": {
          "items": {
            "type": "string"
          },
          "type": "array"
        },
        "issuer": {
          "type": "string"
        },
        "redirect_uri": {
          "type": "string"
        },
        "scopes": {
          "items": {
            "type": "string"
          },
          "type": "array"
        }
      },
      "required": [
        "enabled",
        "issuer",
        "client_id",
        "scopes",
        "redirect_uri"
      ],
      "type": "object"
    },
    "password_login": {
      "type": "boolean"
    },
    "token_login": {
      "type": "boolean"
    }
  },
  "required": [
    "enabled",
    "method",
    "password_login",
    "token_login",
    "oidc"
  ],
  "type": "object"
}

Search documentation

Type to search guides and reference pages.