{
  "type": "object",
  "properties": {
    "tag": {
      "type": "string",
      "description": "The tag's name. This is typically a version (e.g., \"v0.0.1\")."
    },
    "message": {
      "type": "string",
      "description": "The tag message."
    },
    "object": {
      "type": "string",
      "description": "The SHA of the git object this is tagging."
    },
    "type": {
      "type": "string",
      "description": "The type of the object we're tagging. Normally this is a `commit` but it can also be a `tree` or a `blob`.",
      "enum": [
        "commit",
        "tree",
        "blob"
      ]
    },
    "tagger": {
      "type": "object",
      "description": "An object with information about the individual creating the tag.",
      "properties": {
        "name": {
          "type": "string",
          "description": "The name of the author of the tag"
        },
        "email": {
          "type": "string",
          "description": "The email of the author of the tag"
        },
        "date": {
          "type": "string",
          "format": "date-time",
          "description": "When this object was tagged. This is a timestamp in [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) format: `YYYY-MM-DDTHH:MM:SSZ`."
        }
      },
      "required": [
        "name",
        "email"
      ]
    }
  },
  "required": [
    "tag",
    "message",
    "object",
    "type"
  ],
  "$schema": "https://json-schema.org/draft/2019-09/schema"
}