Censys · Schema

SearchAggregateResponse

SearchAggregateResponse schema from Censys Platform API

SecurityInternet IntelligenceAttack Surface ManagementThreat HuntingCyber Threat IntelligenceOSINTInternet ScanningCertificatesAsset Discovery

Properties

Name Type Description
buckets arraynull
is_more_than_total_hits boolean
other_count integer
query_duration_millis integer
total_count integer
View JSON Schema on GitHub

JSON Schema

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