Censys · Schema
Host
Host schema from Asset Graph API
SecurityInternet IntelligenceAttack Surface ManagementThreat HuntingCyber Threat IntelligenceOSINTInternet ScanningCertificatesAsset Discovery
Properties
| Name | Type | Description |
|---|---|---|
| autonomous_system | object | |
| dns | object | |
| greynoise | object | |
| hardware | object | |
| ip | string | |
| labels | arraynull | |
| location | object | |
| network | arraynull | Information about what type of network the host belongs to. |
| operating_system | object | |
| privacy | arraynull | Information about privacy services used by the IP, such as VPNs, Proxies, or Tor. |
| reputation | object | |
| service_count | integer | |
| services | arraynull | |
| whois | object |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://raw.githubusercontent.com/api-evangelist/censys/refs/heads/main/json-schema/asset-graph-host-schema.json",
"title": "Host",
"description": "Host schema from Asset Graph API",
"type": "object",
"properties": {
"autonomous_system": {
"$ref": "#/components/schemas/Routing"
},
"dns": {
"$ref": "#/components/schemas/HostDns"
},
"greynoise": {
"$ref": "#/components/schemas/Greynoise"
},
"hardware": {
"$ref": "#/components/schemas/Attribute"
},
"ip": {
"type": "string"
},
"labels": {
"items": {
"$ref": "#/components/schemas/Label"
},
"type": [
"array",
"null"
]
},
"location": {
"$ref": "#/components/schemas/Location"
},
"network": {
"description": "Information about what type of network the host belongs to.",
"items": {
"$ref": "#/components/schemas/NetworkClassification"
},
"type": [
"array",
"null"
]
},
"operating_system": {
"$ref": "#/components/schemas/Attribute"
},
"privacy": {
"description": "Information about privacy services used by the IP, such as VPNs, Proxies, or Tor.",
"items": {
"$ref": "#/components/schemas/Privacy"
},
"type": [
"array",
"null"
]
},
"reputation": {
"$ref": "#/components/schemas/Reputation"
},
"service_count": {
"format": "int32",
"type": "integer"
},
"services": {
"items": {
"$ref": "#/components/schemas/Service"
},
"type": [
"array",
"null"
]
},
"whois": {
"$ref": "#/components/schemas/Whois"
}
},
"additionalProperties": false
}