{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://catalog.lintel.tools/schemas/schemastore/vsconfig/latest.json",
  "title": "JSON schema for Visual Studio component configuration files",
  "x-lintel": {
    "source": "https://www.schemastore.org/vsconfig.json",
    "sourceSha256": "30e4060eab1231345e794eb0b1dc1bd2468eed1632ae91f874b74be431a9b308",
    "fileMatch": [
      "*.vsconfig"
    ]
  },
  "type": "object",
  "properties": {
    "version": {
      "description": "The version of the component configuration file format.",
      "type": "string",
      "pattern": "^(\\d+\\.)?(\\d+\\.)?(\\d+\\.)?(\\d+)$"
    },
    "components": {
      "type": "array",
      "description": "An array of Visual Studio component names.",
      "items": {
        "type": "string",
        "minLength": 1
      }
    },
    "extensions": {
      "type": "array",
      "description": "An array of Visual Studio extensions. These can be URLs to marketplace extensions or paths to private VSIX files.",
      "items": {
        "type": "string",
        "minLength": 1
      }
    }
  },
  "required": [
    "components"
  ],
  "id": "https://json.schemastore.org/vsconfig.json"
}
