Censys · Schema

OtherName

OtherName schema from Censys Platform API

SecurityInternet IntelligenceAttack Surface ManagementThreat HuntingCyber Threat IntelligenceOSINTInternet ScanningCertificatesAsset Discovery

Properties

Name Type Description
id string The OID identifying the syntax of the otherName value.
value string The raw otherName value.
View JSON Schema on GitHub

JSON Schema

platform-othername-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-othername-schema.json",
  "title": "OtherName",
  "description": "OtherName schema from Censys Platform API",
  "type": "object",
  "properties": {
    "id": {
      "description": "The OID identifying the syntax of the otherName value.",
      "type": "string"
    },
    "value": {
      "description": "The raw otherName value.",
      "format": "base64",
      "type": "string"
    }
  },
  "additionalProperties": false
}