{
  "description": "ZFSNode records information about all zfs pools available\nin a node. In general, the openebs node-agent creates the ZFSNode\nobject \u0026 periodically synchronizing the zfs pools available in the node.\nZFSNode has an owner reference pointing to the corresponding node object.",
  "properties": {
    "apiVersion": {
      "description": "APIVersion defines the versioned schema of this representation of an object.\nServers should convert recognized schemas to the latest internal value, and\nmay reject unrecognized values.\nMore info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
      "type": [
        "string",
        "null"
      ]
    },
    "kind": {
      "description": "Kind is a string value representing the REST resource this object represents.\nServers may infer this from the endpoint the client submits requests to.\nCannot be updated.\nIn CamelCase.\nMore info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
      "type": [
        "string",
        "null"
      ]
    },
    "metadata": {
      "type": [
        "object",
        "null"
      ]
    },
    "pools": {
      "items": {
        "additionalProperties": false,
        "description": "Pool specifies attributes of a given zfs pool that exists on the node.",
        "properties": {
          "free": {
            "anyOf": [
              {
                "type": "integer"
              },
              {
                "type": "string"
              }
            ],
            "description": "Free specifies the available capacity of zfs pool.",
            "pattern": "^(\\+|-)?(([0-9]+(\\.[0-9]*)?)|(\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\+|-)?(([0-9]+(\\.[0-9]*)?)|(\\.[0-9]+))))?$",
            "x-kubernetes-int-or-string": true
          },
          "name": {
            "description": "Name of the zfs pool.",
            "minLength": 1,
            "type": "string"
          },
          "used": {
            "anyOf": [
              {
                "type": "integer"
              },
              {
                "type": "string"
              }
            ],
            "description": "Used specifies the used capacity of zfs pool.",
            "pattern": "^(\\+|-)?(([0-9]+(\\.[0-9]*)?)|(\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\+|-)?(([0-9]+(\\.[0-9]*)?)|(\\.[0-9]+))))?$",
            "x-kubernetes-int-or-string": true
          },
          "uuid": {
            "description": "UUID denotes a unique identity of a zfs pool.",
            "minLength": 1,
            "type": "string"
          }
        },
        "required": [
          "free",
          "name",
          "used",
          "uuid"
        ],
        "type": "object"
      },
      "type": "array"
    }
  },
  "required": [
    "pools"
  ],
  "type": "object"
}