Censys · Schema

HostObservationRange

HostObservationRange schema from Censys Platform API

SecurityInternet IntelligenceAttack Surface ManagementThreat HuntingCyber Threat IntelligenceOSINTInternet ScanningCertificatesAsset Discovery

Properties

Name Type Description
end_time string
ip string
port integer
protocols arraynull
start_time string
transport_protocol string
View JSON Schema on GitHub

JSON Schema

platform-hostobservationrange-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-hostobservationrange-schema.json",
  "title": "HostObservationRange",
  "description": "HostObservationRange schema from Censys Platform API",
  "type": "object",
  "properties": {
    "end_time": {
      "format": "date-time",
      "type": "string"
    },
    "ip": {
      "type": "string"
    },
    "port": {
      "format": "int32",
      "type": "integer"
    },
    "protocols": {
      "items": {
        "type": "string"
      },
      "type": [
        "array",
        "null"
      ]
    },
    "start_time": {
      "format": "date-time",
      "type": "string"
    },
    "transport_protocol": {
      "type": "string"
    }
  },
  "required": [
    "ip",
    "port",
    "transport_protocol",
    "protocols",
    "start_time",
    "end_time"
  ],
  "additionalProperties": false
}