{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "$id": "https://json.schemastore.org/chart-lock.json",
  "additionalProperties": false,
  "properties": {
    "generated": {
      "description": "Generated is the date the lock file was last generated.",
      "type": "string",
      "format": "date-time"
    },
    "digest": {
      "description": "Digest is a hash of the dependencies in Chart.yaml.",
      "type": "string"
    },
    "dependencies": {
      "type": "array",
      "description": "In Helm, one chart may depend on any number of other charts. These dependencies can be dynamically linked using the dependencies field in Chart.yaml or brought in to the charts/ directory and managed manually.\nThe charts required by the current chart are defined as a list in the dependencies field.",
      "items": {
        "type": "object",
        "additionalProperties": false,
        "required": ["name", "version", "repository"],
        "properties": {
          "name": {
            "description": "The name of the chart",
            "type": "string"
          },
          "version": {
            "description": "The version of the chart",
            "type": "string"
          },
          "repository": {
            "description": "The repository URL or alias",
            "type": "string",
            "format": "uri"
          }
        }
      }
    }
  },
  "required": ["generated", "digest", "dependencies"],
  "title": "Helm Chart.lock",
  "type": "object"
}
