Censys · Schema

HostObservationResponse

HostObservationResponse schema from Censys Platform API

SecurityInternet IntelligenceAttack Surface ManagementThreat HuntingCyber Threat IntelligenceOSINTInternet ScanningCertificatesAsset Discovery

Properties

Name Type Description
next_page_token string
ranges arraynull
total_results integer
View JSON Schema on GitHub

JSON Schema

platform-hostobservationresponse-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-hostobservationresponse-schema.json",
  "title": "HostObservationResponse",
  "description": "HostObservationResponse schema from Censys Platform API",
  "type": "object",
  "properties": {
    "next_page_token": {
      "type": "string"
    },
    "ranges": {
      "items": {
        "$ref": "#/components/schemas/HostObservationRange"
      },
      "type": [
        "array",
        "null"
      ]
    },
    "total_results": {
      "format": "int64",
      "type": "integer"
    }
  },
  "required": [
    "ranges",
    "total_results"
  ],
  "additionalProperties": false
}