Censys · Schema

ThreatsOnHostResponse

ThreatsOnHostResponse schema from Censys Platform API

SecurityInternet IntelligenceAttack Surface ManagementThreat HuntingCyber Threat IntelligenceOSINTInternet ScanningCertificatesAsset Discovery

Properties

Name Type Description
NextPageToken string
Ranges arraynull
View JSON Schema on GitHub

JSON Schema

platform-threatsonhostresponse-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-threatsonhostresponse-schema.json",
  "title": "ThreatsOnHostResponse",
  "description": "ThreatsOnHostResponse schema from Censys Platform API",
  "type": "object",
  "properties": {
    "NextPageToken": {
      "type": "string"
    },
    "Ranges": {
      "items": {
        "$ref": "#/components/schemas/ThreatOnHostRange"
      },
      "type": [
        "array",
        "null"
      ]
    }
  },
  "required": [
    "Ranges",
    "NextPageToken"
  ],
  "additionalProperties": false
}