Docs API schemas

neoserver 0.1.2

OIDCConsoleConfig

OIDCConsoleConfig schema for the neoserver management API.

← All schemas

object
client_id string required
enabled boolean required
group_claims array of string
issuer string required
redirect_uri string required
scopes array of string required
OpenAPI schema definition
{
  "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"
}

Search documentation

Type to search guides and reference pages.