{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://nao1215.github.io/jsonize/schemas/lsof/tasks.json",
  "title": "lsof/tasks",
  "description": "lsof task-level listing, with thread columns",
  "x-jsonize": {
    "definition": "lsof/tasks",
    "version": 1
  },
  "type": "array",
  "items": {
    "type": "object",
    "properties": {
      "command": {
        "type": "string"
      },
      "name": {
        "type": "string"
      },
      "pid": {
        "type": "integer"
      },
      "tid": {
        "type": [
          "integer",
          "null"
        ]
      }
    },
    "additionalProperties": {
      "type": [
        "string",
        "null"
      ]
    }
  }
}
