{ "$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 }