Censys · Schema
Kubernetes_Node
Kubernetes_Node schema from Asset Graph API
SecurityInternet IntelligenceAttack Surface ManagementThreat HuntingCyber Threat IntelligenceOSINTInternet ScanningCertificatesAsset Discovery
Properties
| Name | Type | Description |
|---|---|---|
| addresses | arraynull | |
| architecture | string | The Architecture reported by the node. |
| container_runtime_version | string | ContainerRuntime Version reported by the node through runtime remote API (e.g. docker://1.5.0). |
| images | arraynull | List of container images on this node |
| kernel_version | string | Kernel Version reported by the node from 'uname -r' (e.g. 3.16.0-0.bpo.4-amd64). |
| kube_proxy_version | string | KubeProxy Version reported by the node. |
| kubelet_version | string | Kubelet Version reported by the node. |
| name | string | |
| operating_system | string | The Operating System reported by the node. |
| os_image | string | OS Image reported by the node from /etc/os-release (e.g. Debian GNU/Linux 7 (wheezy)). |
JSON Schema
{
"$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
}