{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://nao1215.github.io/jsonize/schemas/vmstat/linux-partition.json",
  "title": "vmstat/linux-partition",
  "description": "vmstat -p, the read and write counters of one partition per interval",
  "x-jsonize": {
    "definition": "vmstat/linux-partition",
    "version": 1
  },
  "type": "array",
  "items": {
    "type": "object",
    "properties": {
      "reads": {
        "type": "integer"
      },
      "read_sectors": {
        "type": "integer"
      },
      "writes": {
        "type": "integer"
      },
      "requested_writes": {
        "type": "integer"
      }
    },
    "required": [
      "reads",
      "read_sectors",
      "writes",
      "requested_writes"
    ]
  }
}
