{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://catalog.lintel.tools/schemas/schemastore/rc3-collection/_shared/latest--rc3-auth-0.0.3.json",
  "title": "rc3 auth",
  "description": "RC auth that can be stored at Collection, Folder, or Request levels",
  "x-lintel": {
    "source": "https://json.schemastore.org/rc3-auth-0.0.3.json",
    "sourceSha256": "f01552dae9f7cbd4535d8df586bf75f6b976ff14e10c7176681d07f5e7ddeb0e"
  },
  "type": "object",
  "properties": {
    "type": {
      "description": "The type of authentication",
      "type": "string",
      "enum": [
        "none",
        "token",
        "bearer",
        "basic",
        "inherit"
      ]
    },
    "token_header": {
      "description": "The HTTP Header name (for token auth type)",
      "type": "string"
    },
    "token_value": {
      "description": "The HTTP Header value (for token auth type)",
      "type": "string"
    },
    "bearer_token": {
      "description": "The bearer token (for bearer auth type)",
      "type": "string"
    },
    "username": {
      "description": "The basic auth username",
      "type": "string"
    },
    "password": {
      "description": "The basic auth password",
      "type": "string"
    }
  },
  "additionalProperties": false
}
