Censys · Schema

Ldap_Attribute

Ldap_Attribute schema from Censys Platform API

SecurityInternet IntelligenceAttack Surface ManagementThreat HuntingCyber Threat IntelligenceOSINTInternet ScanningCertificatesAsset Discovery

Properties

Name Type Description
name string Name of the LDAP attribute in the root DN
values arraynull Values for the respective LDAP attribute
View JSON Schema on GitHub

JSON Schema

platform-ldap-attribute-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-ldap-attribute-schema.json",
  "title": "Ldap_Attribute",
  "description": "Ldap_Attribute schema from Censys Platform API",
  "type": "object",
  "properties": {
    "name": {
      "description": "Name of the LDAP attribute in the root DN",
      "type": "string"
    },
    "values": {
      "description": "Values for the respective LDAP attribute",
      "format": "utf8",
      "items": {
        "type": "string"
      },
      "type": [
        "array",
        "null"
      ]
    }
  },
  "additionalProperties": false
}