{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://nao1215.github.io/jsonize/schemas/lsblk/permissions.json",
  "title": "lsblk/permissions",
  "description": "lsblk -m, the owner, group and mode of each device node",
  "x-jsonize": {
    "definition": "lsblk/permissions",
    "version": 2
  },
  "type": "array",
  "items": {
    "type": "object",
    "properties": {
      "name": {
        "type": "string"
      },
      "size": {
        "type": "string"
      },
      "owner": {
        "type": [
          "string",
          "null"
        ]
      },
      "group": {
        "type": [
          "string",
          "null"
        ]
      },
      "mode": {
        "type": [
          "string",
          "null"
        ]
      }
    },
    "required": [
      "name",
      "size",
      "owner",
      "group",
      "mode"
    ]
  }
}
