Censys · JSON Structure

Platform Searchaggregateresponse Structure

SearchAggregateResponse schema from Censys Platform API

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

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

Properties

buckets is_more_than_total_hits other_count query_duration_millis total_count

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-searchaggregateresponse-structure.json",
  "name": "SearchAggregateResponse",
  "description": "SearchAggregateResponse schema from Censys Platform API",
  "type": "object",
  "required": [
    "total_count",
    "other_count",
    "query_duration_millis",
    "is_more_than_total_hits",
    "buckets"
  ],
  "additionalProperties": false,
  "properties": {
    "buckets": {
      "type": [
        "array",
        "null"
      ],
      "items": {
        "$ref": "#/components/schemas/SearchAggregateResponseBucket"
      }
    },
    "is_more_than_total_hits": {
      "type": "boolean"
    },
    "other_count": {
      "type": "int64"
    },
    "query_duration_millis": {
      "type": "int64"
    },
    "total_count": {
      "type": "int64"
    }
  }
}