Censys · Schema

CreateTagInputBody

CreateTagInputBody schema from Censys Platform API

SecurityInternet IntelligenceAttack Surface ManagementThreat HuntingCyber Threat IntelligenceOSINTInternet ScanningCertificatesAsset Discovery

Properties

Name Type Description
description string A human-readable description of the tag.
name string The display name of the tag. Must be unique within the organization.
privacy string Tag visibility and management settings. `private` tags are only visible to and editable by organization admins. `shared` tags are visible to and editable by all organization members.
View JSON Schema on GitHub

JSON Schema

platform-createtaginputbody-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-createtaginputbody-schema.json",
  "title": "CreateTagInputBody",
  "description": "CreateTagInputBody schema from Censys Platform API",
  "type": "object",
  "properties": {
    "description": {
      "description": "A human-readable description of the tag.",
      "maxLength": 1000,
      "type": "string"
    },
    "name": {
      "description": "The display name of the tag. Must be unique within the organization.",
      "maxLength": 255,
      "minLength": 1,
      "type": "string"
    },
    "privacy": {
      "description": "Tag visibility and management settings. `private` tags are only visible to and editable by organization admins. `shared` tags are visible to and editable by all organization members.",
      "enum": [
        "private",
        "shared"
      ],
      "type": "string"
    }
  },
  "required": [
    "name",
    "privacy"
  ],
  "additionalProperties": false
}