create-topic-tags
Define and organize new topic tags in Confluent Cloud using the Schema Registry REST API to streamline data categorization and management.
Instructions
Create new tag definitions in Confluent Cloud.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
baseUrl | No | The base URL of the Schema Registry REST API. | |
tags | Yes | Array of tag definitions to create |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"baseUrl": {
"default": "",
"description": "The base URL of the Schema Registry REST API.",
"format": "uri",
"type": "string"
},
"tags": {
"description": "Array of tag definitions to create",
"items": {
"additionalProperties": false,
"properties": {
"description": {
"default": "Tag created via API",
"description": "Description for the tag",
"type": "string"
},
"tagName": {
"description": "Name of the tag to create",
"minLength": 1,
"type": "string"
}
},
"required": [
"tagName"
],
"type": "object"
},
"minItems": 1,
"type": "array"
}
},
"required": [
"tags"
],
"type": "object"
}