Censys · Schema

RipplePeerResults

RipplePeerResults schema from Asset Graph API

SecurityInternet IntelligenceAttack Surface ManagementThreat HuntingCyber Threat IntelligenceOSINTInternet ScanningCertificatesAsset Discovery

Properties

Name Type Description
build_version string
peer_crawler_response_version integer
peers arraynull
pubkey_node string
publisher_list arraynull
server_state string
validator_sites arraynull
View JSON Schema on GitHub

JSON Schema

asset-graph-ripplepeerresults-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-ripplepeerresults-schema.json",
  "title": "RipplePeerResults",
  "description": "RipplePeerResults schema from Asset Graph API",
  "type": "object",
  "properties": {
    "build_version": {
      "type": "string"
    },
    "peer_crawler_response_version": {
      "format": "int64",
      "type": "integer"
    },
    "peers": {
      "items": {
        "$ref": "#/components/schemas/Peer"
      },
      "type": [
        "array",
        "null"
      ]
    },
    "pubkey_node": {
      "type": "string"
    },
    "publisher_list": {
      "items": {
        "type": "string"
      },
      "type": [
        "array",
        "null"
      ]
    },
    "server_state": {
      "type": "string"
    },
    "validator_sites": {
      "items": {
        "type": "string"
      },
      "type": [
        "array",
        "null"
      ]
    }
  },
  "additionalProperties": false
}