Merge · Schema

AuthOptionPublic

IntegrationsPlatformUnified APIAgent HandlerLLM Gateway

Properties

Name Type Description
type string
secrets array
View JSON Schema on GitHub

JSON Schema

merge-authoptionpublic-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/AuthOptionPublic",
  "title": "AuthOptionPublic",
  "type": "object",
  "properties": {
    "type": {
      "type": "string"
    },
    "secrets": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/SecretSchemaPublic"
      }
    }
  },
  "required": [
    "type",
    "secrets"
  ]
}