Censys · Schema
DistinguishedName
DistinguishedName schema from Censys Platform API
SecurityInternet IntelligenceAttack Surface ManagementThreat HuntingCyber Threat IntelligenceOSINTInternet ScanningCertificatesAsset Discovery
Properties
| Name | Type | Description |
|---|---|---|
| common_name | arraynull | The commonName (CN) elements of the Distinguished Name (OID: 2.5.4.3). |
| country | arraynull | The countryName (C) elements of the Distinguished Name (OID: 2.5.4.6). |
| domain_component | arraynull | The domainComponent (DC) elements of the Distinguished Name (OID: 0.9.2342.19200300.100.1.25). |
| email_address | arraynull | The emailAddress (E) elements of the Distinguished Name (OID: 1.2.840.113549.1.9.1). |
| given_name | arraynull | The givenName (G) elements of the Distinguished Name (OID: 2.5.4.42). |
| jurisdiction_country | arraynull | The jurisdictionCountry elements of the Distinguished Name (OID: 1.3.6.1.4.1.311.60.2.1.3). |
| jurisdiction_locality | arraynull | The jurisdictionLocality elements of the Distinguished Name (OID: 1.3.6.1.4.1.311.60.2.1.1). |
| jurisdiction_province | arraynull | The jurisdictionStateOrProvince elements of the Distinguished Name (OID: 1.3.6.1.4.1.311.60.2.1.2). |
| locality | arraynull | The localityName (L) elements of the Distinguished Name (OID: 2.5.4.7). |
| organization | arraynull | The organizationName (O) elements of the Distinguished Name (OID: 2.5.4.10). |
| organization_id | arraynull | |
| organizational_unit | arraynull | The organizationalUnit (OU) elements of the Distinguished Name (OID: 2.5.4.11). |
| postal_code | arraynull | The postalCode elements of the Distinguished Name (OID: 2.5.4.17). |
| province | arraynull | The stateOrProvinceName (ST) elements of the Distinguished Name (OID: 2.5.4.8). |
| serial_number | arraynull | The serialNumber elements of the Distinguished Name (OID: 2.5.4.5). |
| street_address | arraynull | The streetAddress (STREET) elements of the Distinguished Name (OID: 2.5.4.9). |
| surname | arraynull | The surname (SN) elements of the Distinguished Name (OID: 2.5.4.4). |
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-distinguishedname-schema.json",
"title": "DistinguishedName",
"description": "DistinguishedName schema from Censys Platform API",
"type": "object",
"properties": {
"common_name": {
"description": "The commonName (CN) elements of the Distinguished Name (OID: 2.5.4.3).",
"items": {
"type": "string"
},
"type": [
"array",
"null"
]
},
"country": {
"description": "The countryName (C) elements of the Distinguished Name (OID: 2.5.4.6).",
"items": {
"type": "string"
},
"type": [
"array",
"null"
]
},
"domain_component": {
"description": "The domainComponent (DC) elements of the Distinguished Name (OID: 0.9.2342.19200300.100.1.25).",
"items": {
"type": "string"
},
"type": [
"array",
"null"
]
},
"email_address": {
"description": "The emailAddress (E) elements of the Distinguished Name (OID: 1.2.840.113549.1.9.1).",
"items": {
"type": "string"
},
"type": [
"array",
"null"
]
},
"given_name": {
"description": "The givenName (G) elements of the Distinguished Name (OID: 2.5.4.42).",
"items": {
"type": "string"
},
"type": [
"array",
"null"
]
},
"jurisdiction_country": {
"description": "The jurisdictionCountry elements of the Distinguished Name (OID: 1.3.6.1.4.1.311.60.2.1.3).",
"items": {
"type": "string"
},
"type": [
"array",
"null"
]
},
"jurisdiction_locality": {
"description": "The jurisdictionLocality elements of the Distinguished Name (OID: 1.3.6.1.4.1.311.60.2.1.1).",
"items": {
"type": "string"
},
"type": [
"array",
"null"
]
},
"jurisdiction_province": {
"description": "The jurisdictionStateOrProvince elements of the Distinguished Name (OID: 1.3.6.1.4.1.311.60.2.1.2).",
"items": {
"type": "string"
},
"type": [
"array",
"null"
]
},
"locality": {
"description": "The localityName (L) elements of the Distinguished Name (OID: 2.5.4.7).",
"items": {
"type": "string"
},
"type": [
"array",
"null"
]
},
"organization": {
"description": "The organizationName (O) elements of the Distinguished Name (OID: 2.5.4.10).",
"items": {
"type": "string"
},
"type": [
"array",
"null"
]
},
"organization_id": {
"items": {
"type": "string"
},
"type": [
"array",
"null"
]
},
"organizational_unit": {
"description": "The organizationalUnit (OU) elements of the Distinguished Name (OID: 2.5.4.11).",
"items": {
"type": "string"
},
"type": [
"array",
"null"
]
},
"postal_code": {
"description": "The postalCode elements of the Distinguished Name (OID: 2.5.4.17).",
"items": {
"type": "string"
},
"type": [
"array",
"null"
]
},
"province": {
"description": "The stateOrProvinceName (ST) elements of the Distinguished Name (OID: 2.5.4.8).",
"items": {
"type": "string"
},
"type": [
"array",
"null"
]
},
"serial_number": {
"description": "The serialNumber elements of the Distinguished Name (OID: 2.5.4.5).",
"items": {
"type": "string"
},
"type": [
"array",
"null"
]
},
"street_address": {
"description": "The streetAddress (STREET) elements of the Distinguished Name (OID: 2.5.4.9).",
"items": {
"type": "string"
},
"type": [
"array",
"null"
]
},
"surname": {
"description": "The surname (SN) elements of the Distinguished Name (OID: 2.5.4.4).",
"items": {
"type": "string"
},
"type": [
"array",
"null"
]
}
},
"additionalProperties": false
}