{
  "type": "object",
  "properties": {
    "canisters": {
      "type": "object",
      "additionalProperties": {
        "type": "object",
        "properties": {
          "type": {
            "type": "string"
          },
          "parts": {
            "type": "array",
            "items": {
              "type": "object",
              "properties": {
                "path": { "type": "string" },
                "package": { "type": "string" },
                "version": { "type": "string" },
                "features": {
                  "type": "array",
                  "items": { "type": "string" }
                }
              },
              "required": ["package"]
            }
          }
        },
        "required": ["type", "parts"]
      }
    },
    "git": {
      "type": "boolean"
    },
    "verbose": {
      "type": "boolean"
    }
  }
}
