{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://nao1215.github.io/jsonize/schemas/journalctl/short-monotonic.json",
  "title": "journalctl/short-monotonic",
  "description": "journalctl -o short-monotonic, entries timed from the boot",
  "x-jsonize": {
    "definition": "journalctl/short-monotonic",
    "version": 1
  },
  "type": "array",
  "items": {
    "type": "object",
    "properties": {
      "monotonic": {
        "type": "number"
      },
      "hostname": {
        "type": "string"
      },
      "identifier": {
        "type": "string"
      },
      "pid": {
        "type": "integer"
      },
      "message": {
        "type": "string"
      }
    },
    "required": [
      "monotonic",
      "hostname",
      "identifier",
      "message"
    ]
  }
}
