{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://nao1215.github.io/jsonize/schemas/cargo/verbose-version.json",
  "title": "cargo/verbose-version",
  "description": "cargo -vV, the version, commit, host and libraries of cargo",
  "x-jsonize": {
    "definition": "cargo/verbose-version",
    "version": 1
  },
  "type": "object",
  "properties": {
    "version": {
      "type": "object",
      "properties": {
        "version": {
          "type": "string"
        },
        "commit": {
          "type": "string"
        },
        "date": {
          "type": "string"
        }
      },
      "required": [
        "version",
        "commit",
        "date"
      ]
    },
    "details": {
      "type": "object",
      "properties": {},
      "additionalProperties": {
        "type": "string"
      }
    }
  },
  "required": [
    "version",
    "details"
  ]
}
