Censys · Schema

TagsList

TagsList 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. Omitted when there are no more results.
tags arraynull The list of tags.
total_size integer Total number of tags visible to the caller in this organization.
View JSON Schema on GitHub

JSON Schema

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