Censys · Schema

Kubernetes

Kubernetes schema from Censys Platform API

SecurityInternet IntelligenceAttack Surface ManagementThreat HuntingCyber Threat IntelligenceOSINTInternet ScanningCertificatesAsset Discovery

Properties

Name Type Description
endpoints arraynull
kubernetes_dashboard_found boolean True if the dashboard is running and accessible
nodes arraynull
pod_names arraynull
roles arraynull
version_info object
View JSON Schema on GitHub

JSON Schema

platform-kubernetes-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/censys/refs/heads/main/json-schema/platform-kubernetes-schema.json",
  "title": "Kubernetes",
  "description": "Kubernetes schema from Censys Platform API",
  "type": "object",
  "properties": {
    "endpoints": {
      "items": {
        "$ref": "#/components/schemas/Kubernetes_Endpoint"
      },
      "type": [
        "array",
        "null"
      ]
    },
    "kubernetes_dashboard_found": {
      "description": "True if the dashboard is running and accessible",
      "type": "boolean"
    },
    "nodes": {
      "items": {
        "$ref": "#/components/schemas/Kubernetes_Node"
      },
      "type": [
        "array",
        "null"
      ]
    },
    "pod_names": {
      "items": {
        "type": "string"
      },
      "type": [
        "array",
        "null"
      ]
    },
    "roles": {
      "items": {
        "$ref": "#/components/schemas/Kubernetes_Role"
      },
      "type": [
        "array",
        "null"
      ]
    },
    "version_info": {
      "$ref": "#/components/schemas/Kubernetes_VersionInfo"
    }
  },
  "additionalProperties": false
}