{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://catalog.lintel.tools/schemas/schemastore/helm-chart-lock/latest.json",
  "title": "Helm Chart.lock",
  "x-lintel": {
    "source": "https://www.schemastore.org/chart-lock.json",
    "sourceSha256": "7a8c7058e56032591dee687fd1d70cd156ed68bf96b15de8f1cac9e2bb9d0f61",
    "fileMatch": [
      "Chart.lock"
    ]
  },
  "type": "object",
  "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",
        "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": [
          "name",
          "version",
          "repository"
        ],
        "additionalProperties": false
      }
    }
  },
  "required": [
    "generated",
    "digest",
    "dependencies"
  ],
  "additionalProperties": false
}
