Censys · Schema

RiskMetadata

RiskMetadata schema from Asset Graph API

SecurityInternet IntelligenceAttack Surface ManagementThreat HuntingCyber Threat IntelligenceOSINTInternet ScanningCertificatesAsset Discovery

Properties

Name Type Description
$schema string A URL to the JSON Schema for this object.
added_at string Time data was ingested
description string Description of the risk
name string Name of the risk
references arraynull Reference information for data returned
View JSON Schema on GitHub

JSON Schema

asset-graph-riskmetadata-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-riskmetadata-schema.json",
  "title": "RiskMetadata",
  "description": "RiskMetadata schema from Asset Graph API",
  "type": "object",
  "properties": {
    "$schema": {
      "description": "A URL to the JSON Schema for this object.",
      "examples": [
        "https://graph.data.censys.io/schemas/RiskMetadata.json"
      ],
      "format": "uri",
      "readOnly": true,
      "type": "string"
    },
    "added_at": {
      "description": "Time data was ingested",
      "format": "date-time",
      "type": "string"
    },
    "description": {
      "description": "Description of the risk",
      "type": "string"
    },
    "name": {
      "description": "Name of the risk",
      "type": "string"
    },
    "references": {
      "description": "Reference information for data returned",
      "items": {
        "$ref": "#/components/schemas/Reference"
      },
      "type": [
        "array",
        "null"
      ]
    }
  },
  "required": [
    "description",
    "references",
    "name",
    "added_at"
  ],
  "additionalProperties": false
}