{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "$id": "https://json.schemastore.org/rc3-auth-0.0.3.json",
  "title": "rc3 auth",
  "description": "RC auth that can be stored at Collection, Folder, or Request levels",
  "additionalProperties": false,
  "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"
    }
  },
  "type": "object"
}
