{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://nao1215.github.io/jsonize/schemas/docker/network-ls.json",
  "title": "docker/network-ls",
  "description": "docker network ls",
  "x-jsonize": {
    "definition": "docker/network-ls",
    "version": 1
  },
  "type": "array",
  "items": {
    "type": "object",
    "properties": {
      "network_id": {
        "type": "string"
      },
      "name": {
        "type": "string"
      },
      "driver": {
        "type": "string"
      },
      "scope": {
        "type": "string"
      }
    },
    "required": [
      "network_id",
      "name",
      "driver",
      "scope"
    ]
  }
}
