{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://catalog.lintel.tools/schemas/schemastore/tsdrc-json/latest.json",
  "title": "JSON schema for .tsdrc files",
  "x-lintel": {
    "source": "https://www.schemastore.org/tsdrc.json",
    "sourceSha256": "e6c477d27b26a3791ae93461907c12c65c5fd6590101d0e288f65a50e0f2bc3c",
    "fileMatch": [
      ".tsdrc"
    ]
  },
  "type": "object",
  "properties": {
    "strictSSL": {
      "type": "boolean",
      "description": "Enabled by default, setting this option to false disables strict SSL. Passed to request package. Useful behind (corporate) proxies that act like man-in-the middle on https connections.",
      "default": true
    },
    "proxy": {
      "type": "string",
      "description": "Any standard http-proxy as supported by the request package.",
      "format": "uri"
    },
    "token": {
      "type": "string",
      "description": "The OAuth token can be used to boost the GitHub API rate-limit from 60 to 5000 (non-cached) requests per hour. The is token needs just 'read-only access to public information' so no additional OAuth scopes are necessary."
    }
  },
  "id": "https://json.schemastore.org/tsdrc.json",
  "additionalProperties": true
}
