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