Censys · JSON Structure

Platform Organizationdetails Structure

OrganizationDetails schema from Censys Platform API

Type: object Properties: 5 Required: 2
SecurityInternet IntelligenceAttack Surface ManagementThreat HuntingCyber Threat IntelligenceOSINTInternet ScanningCertificatesAsset Discovery

OrganizationDetails is a JSON Structure definition published by Censys, describing 5 properties, of which 2 are required. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

created_at member_counts name preferences uid

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/censys/refs/heads/main/json-structure/platform-organizationdetails-structure.json",
  "name": "OrganizationDetails",
  "description": "OrganizationDetails schema from Censys Platform API",
  "type": "object",
  "required": [
    "name",
    "uid"
  ],
  "additionalProperties": false,
  "properties": {
    "created_at": {
      "type": "datetime",
      "description": "The date and time the organization was created."
    },
    "member_counts": {
      "description": "The number of members in the organization, split by role.",
      "$ref": "#/components/schemas/MemberCounts"
    },
    "name": {
      "type": "string",
      "description": "The name of the organization."
    },
    "preferences": {
      "description": "The configured preferences of the organization.",
      "$ref": "#/components/schemas/OrganizationPreferences"
    },
    "uid": {
      "type": "uuid",
      "description": "The ID of a Censys organization."
    }
  }
}