Censys · Schema

Kubernetes_Role

Kubernetes_Role schema from Censys Platform API

SecurityInternet IntelligenceAttack Surface ManagementThreat HuntingCyber Threat IntelligenceOSINTInternet ScanningCertificatesAsset Discovery

Properties

Name Type Description
name string
rules arraynull Rules set for this role.
View JSON Schema on GitHub

JSON Schema

platform-kubernetes-role-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-role-schema.json",
  "title": "Kubernetes_Role",
  "description": "Kubernetes_Role schema from Censys Platform API",
  "type": "object",
  "properties": {
    "name": {
      "type": "string"
    },
    "rules": {
      "description": "Rules set for this role.",
      "items": {
        "$ref": "#/components/schemas/Kubernetes_Role_Rule"
      },
      "type": [
        "array",
        "null"
      ]
    }
  },
  "additionalProperties": false
}