Docs API schemas

neoserver 0.1.2

LoginRequest

LoginRequest schema for the neoserver management API.

← All schemas

object
id_token string
method string required
Allowed values
["password","token","oidc"]
password string
token string
username string
OpenAPI schema definition
{
  "properties": {
    "id_token": {
      "type": "string"
    },
    "method": {
      "enum": [
        "password",
        "token",
        "oidc"
      ],
      "type": "string"
    },
    "password": {
      "type": "string"
    },
    "token": {
      "type": "string"
    },
    "username": {
      "type": "string"
    }
  },
  "required": [
    "method"
  ],
  "type": "object"
}

Search documentation

Type to search guides and reference pages.