{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://catalog.lintel.tools/schemas/schemastore/rc3-settings/latest.json",
  "title": "rc3 settings",
  "description": "RC settings stored in the users RC_HOME directory",
  "x-lintel": {
    "source": "https://www.schemastore.org/rc3-settings-0.0.3.json",
    "sourceSha256": "b6647f7295b2e9dd019e74d6fd6ad7f22f5e49517df7fed603f61b8dad541abe",
    "fileMatch": [
      "rc-settings.json"
    ],
    "parsers": [
      "json"
    ]
  },
  "type": "object",
  "properties": {
    "$schema": {
      "description": "The JSON schema to use for validation",
      "type": "string"
    },
    "save_responses": {
      "description": "Whether to save .response files in the same dir as the .request file",
      "type": "boolean"
    },
    "request_timeout_seconds": {
      "description": "Timeout for requests in seconds",
      "type": "integer"
    },
    "indent": {
      "description": "Indentation width for JSON output",
      "type": "integer"
    },
    "indent_type": {
      "description": "Indentation type for JSON output",
      "type": "string",
      "enum": [
        "space",
        "tab"
      ]
    },
    "headers_send_nocache": {
      "description": "Whether to send no-cache headers",
      "type": "boolean"
    },
    "follow_redirects": {
      "description": "Whether to follow redirects",
      "type": "boolean"
    },
    "ca_cert_verification": {
      "description": "Whether to verify SSL certificates",
      "type": "boolean"
    },
    "ca_bundle": {
      "description": "Path to Python-like CA truststore file",
      "type": "string"
    },
    "current_collection": {
      "description": "The current collection",
      "type": "string"
    },
    "collections": {
      "description": "The list of collections (each collection should be an absolute path to the collection root directory)",
      "type": "array",
      "items": {
        "$ref": "#/$defs/collection_ref"
      }
    }
  },
  "$defs": {
    "collection_ref": {
      "type": "object",
      "properties": {
        "name": {
          "type": "string"
        },
        "location": {
          "type": "string"
        }
      },
      "additionalProperties": false
    }
  },
  "additionalProperties": false
}
