{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://nao1215.github.io/jsonize/schemas/pw-cli/list-objects.json",
  "title": "pw-cli/list-objects",
  "description": "pw-cli ls, one object per block with its id, type, version and properties",
  "x-jsonize": {
    "definition": "pw-cli/list-objects",
    "version": 1
  },
  "type": "array",
  "items": {
    "type": "object",
    "properties": {
      "object": {
        "type": "object",
        "properties": {
          "id": {
            "type": "integer"
          },
          "type": {
            "type": "string"
          },
          "version": {
            "type": "integer"
          }
        },
        "required": [
          "id",
          "type",
          "version"
        ]
      },
      "properties": {
        "type": "object",
        "properties": {},
        "additionalProperties": {
          "type": "string"
        }
      }
    },
    "required": [
      "object",
      "properties"
    ]
  }
}
