{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://nao1215.github.io/jsonize/schemas/docker/buildx-ls.json",
  "title": "docker/buildx-ls",
  "description": "docker buildx ls, builders and their nodes",
  "x-jsonize": {
    "definition": "docker/buildx-ls",
    "version": 1
  },
  "type": "array",
  "items": {
    "$ref": "#/$defs/node"
  },
  "$defs": {
    "node": {
      "type": "object",
      "properties": {
        "name": {
          "type": "string"
        },
        "current": {
          "type": [
            "boolean",
            "null"
          ]
        },
        "driver": {
          "type": [
            "string",
            "null"
          ]
        },
        "endpoint": {
          "type": [
            "string",
            "null"
          ]
        },
        "status": {
          "type": [
            "string",
            "null"
          ]
        },
        "buildkit": {
          "type": [
            "string",
            "null"
          ]
        },
        "platforms": {
          "type": [
            "string",
            "null"
          ]
        },
        "children": {
          "type": "array",
          "items": {
            "$ref": "#/$defs/node"
          }
        }
      },
      "required": [
        "name",
        "current",
        "driver",
        "endpoint",
        "status",
        "buildkit",
        "platforms",
        "children"
      ]
    }
  }
}
