{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/censys/refs/heads/main/json-schema/asset-graph-kubernetes-node-schema.json", "title": "Kubernetes_Node", "description": "Kubernetes_Node schema from Asset Graph API", "type": "object", "properties": { "addresses": { "items": { "$ref": "#/components/schemas/Kubernetes_Node_NodeAddress" }, "type": [ "array", "null" ] }, "architecture": { "description": "The Architecture reported by the node.", "type": "string" }, "container_runtime_version": { "description": "ContainerRuntime Version reported by the node through runtime remote API (e.g. docker://1.5.0).", "type": "string" }, "images": { "description": "List of container images on this node", "items": { "type": "string" }, "type": [ "array", "null" ] }, "kernel_version": { "description": "Kernel Version reported by the node from 'uname -r' (e.g. 3.16.0-0.bpo.4-amd64).", "type": "string" }, "kube_proxy_version": { "description": "KubeProxy Version reported by the node.", "type": "string" }, "kubelet_version": { "description": "Kubelet Version reported by the node.", "type": "string" }, "name": { "type": "string" }, "operating_system": { "description": "The Operating System reported by the node.", "type": "string" }, "os_image": { "description": "OS Image reported by the node from /etc/os-release (e.g. Debian GNU/Linux 7 (wheezy)).", "type": "string" } }, "additionalProperties": false }