Censys · Schema

CenseyeResultsResponse

CenseyeResultsResponse schema from Censys Platform API

SecurityInternet IntelligenceAttack Surface ManagementThreat HuntingCyber Threat IntelligenceOSINTInternet ScanningCertificatesAsset Discovery

Properties

Name Type Description
next_page_token string Token to retrieve the next page of results.
results arraynull List of count results.
View JSON Schema on GitHub

JSON Schema

platform-censeyeresultsresponse-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-censeyeresultsresponse-schema.json",
  "title": "CenseyeResultsResponse",
  "description": "CenseyeResultsResponse schema from Censys Platform API",
  "type": "object",
  "properties": {
    "next_page_token": {
      "description": "Token to retrieve the next page of results.",
      "type": "string"
    },
    "results": {
      "description": "List of count results.",
      "items": {
        "$ref": "#/components/schemas/CenseyeResult"
      },
      "type": [
        "array",
        "null"
      ]
    }
  },
  "required": [
    "results"
  ],
  "additionalProperties": false
}