{
  "$schema": "http://json-schema.org/draft-04/schema#",
  "id": "https://json.schemastore.org/vsext.json",
  "properties": {
    "id": {
      "description": "A unique identifier for the extension pack. This is to uniquely identify the extension pack and will not be shown to the user.",
      "type": "string",
      "minLength": 1
    },
    "name": {
      "description": "The name of the extension pack.",
      "type": "string",
      "minLength": 1
    },
    "description": {
      "description": "A short description of the extension pack.",
      "type": "string",
      "minLength": 1
    },
    "version": {
      "description": "The version of the extension pack.",
      "type": "string",
      "pattern": "^(\\d+\\.)?(\\d+\\.)?(\\d+\\.)?(\\d+)$"
    },
    "extensions": {
      "description": "A list of extension objects.",
      "type": "array",
      "items": {
        "required": ["vsixId"],
        "properties": {
          "name": {
            "description": "The name of the extension.",
            "type": "string",
            "minLength": 1
          },
          "vsixId": {
            "description": "The unique ID of the extension.",
            "type": "string",
            "minLength": 1
          }
        }
      }
    }
  },
  "required": ["version"],
  "title": "JSON schema for Visual Studio extension pack manifests",
  "type": "object"
}
