Censys · Schema

CommentsList

CommentsList schema from Censys Platform API

SecurityInternet IntelligenceAttack Surface ManagementThreat HuntingCyber Threat IntelligenceOSINTInternet ScanningCertificatesAsset Discovery

Properties

Name Type Description
comments arraynull The list of comments.
next_page_token string Token to retrieve the next page of results. Omitted when there are no more results.
total_size integer Total number of comments matching the filters.
View JSON Schema on GitHub

JSON Schema

platform-commentslist-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-commentslist-schema.json",
  "title": "CommentsList",
  "description": "CommentsList schema from Censys Platform API",
  "type": "object",
  "properties": {
    "comments": {
      "description": "The list of comments.",
      "items": {
        "$ref": "#/components/schemas/Comment"
      },
      "type": [
        "array",
        "null"
      ]
    },
    "next_page_token": {
      "description": "Token to retrieve the next page of results. Omitted when there are no more results.",
      "type": "string"
    },
    "total_size": {
      "description": "Total number of comments matching the filters.",
      "format": "int64",
      "type": "integer"
    }
  },
  "required": [
    "comments",
    "total_size"
  ],
  "additionalProperties": false
}