{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "definitions": {
    "McpServerOauthClientRegistration": {
      "enum": [
        "auto",
        "cimd",
        "dcr"
      ],
      "type": "string"
    }
  },
  "properties": {
    "clientRegistration": {
      "anyOf": [
        {
          "$ref": "#/definitions/McpServerOauthClientRegistration"
        },
        {
          "type": "null"
        }
      ],
      "description": "Registration strategy for this login only; omission selects automatic discovery."
    },
    "name": {
      "type": "string"
    },
    "scopes": {
      "items": {
        "type": "string"
      },
      "type": [
        "array",
        "null"
      ]
    },
    "threadId": {
      "type": [
        "string",
        "null"
      ]
    },
    "timeoutSecs": {
      "format": "int64",
      "type": [
        "integer",
        "null"
      ]
    }
  },
  "required": [
    "name"
  ],
  "title": "McpServerOauthLoginParams",
  "type": "object"
}