{
  "$schema": "http://json-schema.org/draft-04/schema#",
  "id": "https://json.schemastore.org/vsconfig.json",
  "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"],
  "title": "JSON schema for Visual Studio component configuration files",
  "type": "object"
}
