{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://nao1215.github.io/jsonize/schemas/gh/release-list.json",
  "title": "gh/release-list",
  "description": "gh release list, one release per line when the output is not a terminal",
  "x-jsonize": {
    "definition": "gh/release-list",
    "version": 1
  },
  "type": "array",
  "items": {
    "type": "object",
    "properties": {
      "title": {
        "type": "string"
      },
      "type": {
        "type": [
          "string",
          "null"
        ]
      },
      "tag": {
        "type": "string"
      },
      "published": {
        "type": "string"
      }
    },
    "required": [
      "title",
      "type",
      "tag",
      "published"
    ]
  }
}
