Censys · JSON Structure

Platform Commentslist Structure

CommentsList schema from Censys Platform API

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

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

Properties

comments next_page_token total_size

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