Censys · Schema
Organization
Organization schema from Asset Graph API
SecurityInternet IntelligenceAttack Surface ManagementThreat HuntingCyber Threat IntelligenceOSINTInternet ScanningCertificatesAsset Discovery
Properties
| Name | Type | Description |
|---|---|---|
| abuse_contacts | arraynull | |
| address | string | |
| admin_contacts | arraynull | |
| city | string | |
| country | string | |
| handle | string | |
| name | string | |
| postal_code | string | |
| state | string | |
| street | string | |
| tech_contacts | arraynull |
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-organization-schema.json",
"title": "Organization",
"description": "Organization schema from Asset Graph API",
"type": "object",
"properties": {
"abuse_contacts": {
"items": {
"$ref": "#/components/schemas/Contact"
},
"type": [
"array",
"null"
]
},
"address": {
"type": "string"
},
"admin_contacts": {
"items": {
"$ref": "#/components/schemas/Contact"
},
"type": [
"array",
"null"
]
},
"city": {
"type": "string"
},
"country": {
"type": "string"
},
"handle": {
"type": "string"
},
"name": {
"type": "string"
},
"postal_code": {
"type": "string"
},
"state": {
"type": "string"
},
"street": {
"type": "string"
},
"tech_contacts": {
"items": {
"$ref": "#/components/schemas/Contact"
},
"type": [
"array",
"null"
]
}
},
"additionalProperties": false
}