Censys · Schema
HashObservationOnHostRange
HashObservationOnHostRange schema from Censys Platform API
SecurityInternet IntelligenceAttack Surface ManagementThreat HuntingCyber Threat IntelligenceOSINTInternet ScanningCertificatesAsset Discovery
Properties
| Name | Type | Description |
|---|---|---|
| end_time | string | When the observation was last seen |
| ip | string | IP address of the host |
| observation_type | string | Observation type selected in the request |
| observation_value | string | Observed value for the selected observation type |
| port | string | Port number |
| start_time | string | When the observation was first seen |
| transport_protocol | string | Transport protocol when present for the selected timeline |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://raw.githubusercontent.com/api-evangelist/censys/refs/heads/main/json-schema/platform-hashobservationonhostrange-schema.json",
"title": "HashObservationOnHostRange",
"description": "HashObservationOnHostRange schema from Censys Platform API",
"type": "object",
"properties": {
"end_time": {
"description": "When the observation was last seen",
"format": "date-time",
"type": "string"
},
"ip": {
"description": "IP address of the host",
"type": "string"
},
"observation_type": {
"description": "Observation type selected in the request",
"type": "string"
},
"observation_value": {
"description": "Observed value for the selected observation type",
"type": "string"
},
"port": {
"description": "Port number",
"type": "string"
},
"start_time": {
"description": "When the observation was first seen",
"format": "date-time",
"type": "string"
},
"transport_protocol": {
"description": "Transport protocol when present for the selected timeline",
"type": "string"
}
},
"required": [
"ip",
"port",
"observation_type",
"observation_value",
"start_time",
"end_time"
],
"additionalProperties": false
}