Censys · Schema

SearchQueryTagInfo

SearchQueryTagInfo schema from Censys Platform API

SecurityInternet IntelligenceAttack Surface ManagementThreat HuntingCyber Threat IntelligenceOSINTInternet ScanningCertificatesAsset Discovery

Properties

Name Type Description
display_name string Name of the tag.
id string ID of the tag.
View JSON Schema on GitHub

JSON Schema

platform-searchquerytaginfo-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-searchquerytaginfo-schema.json",
  "title": "SearchQueryTagInfo",
  "description": "SearchQueryTagInfo schema from Censys Platform API",
  "type": "object",
  "properties": {
    "display_name": {
      "description": "Name of the tag.",
      "type": "string"
    },
    "id": {
      "description": "ID of the tag.",
      "format": "uuid",
      "type": "string"
    }
  },
  "required": [
    "display_name"
  ],
  "additionalProperties": false
}