{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://nao1215.github.io/jsonize/schemas/journalctl/boots.json",
  "title": "journalctl/boots",
  "description": "journalctl --list-boots table",
  "x-jsonize": {
    "definition": "journalctl/boots",
    "version": 1
  },
  "type": "array",
  "items": {
    "type": "object",
    "properties": {
      "idx": {
        "type": "integer"
      },
      "boot_id": {
        "type": "string"
      },
      "first_entry": {
        "type": "string"
      },
      "last_entry": {
        "type": "string"
      }
    },
    "required": [
      "idx",
      "boot_id",
      "first_entry",
      "last_entry"
    ]
  }
}
