Censys · Schema

Label

Label schema from Asset Graph API

SecurityInternet IntelligenceAttack Surface ManagementThreat HuntingCyber Threat IntelligenceOSINTInternet ScanningCertificatesAsset Discovery

Properties

Name Type Description
confidence number
evidence arraynull
source string
value string
View JSON Schema on GitHub

JSON Schema

asset-graph-label-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/asset-graph-label-schema.json",
  "title": "Label",
  "description": "Label schema from Asset Graph API",
  "type": "object",
  "properties": {
    "confidence": {
      "format": "double",
      "type": "number"
    },
    "evidence": {
      "items": {
        "$ref": "#/components/schemas/Evidence"
      },
      "type": [
        "array",
        "null"
      ]
    },
    "source": {
      "enum": [
        "",
        "censys",
        "recog",
        "wappalyzer",
        "third_party",
        "html_meta_extractor"
      ],
      "type": "string"
    },
    "value": {
      "type": "string"
    }
  },
  "additionalProperties": false
}