Properties
| Name | Type | Description |
|---|---|---|
| tags | array | List of tags to add to the alert. |
| user | string | Display name of the request owner. |
| source | string | Source of the action. |
| note | string | Additional note to add with the tags. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/AddTagsRequest",
"title": "AddTagsRequest",
"type": "object",
"required": [
"tags"
],
"properties": {
"tags": {
"type": "array",
"description": "List of tags to add to the alert.",
"items": {
"type": "string"
}
},
"user": {
"type": "string",
"description": "Display name of the request owner."
},
"source": {
"type": "string",
"description": "Source of the action."
},
"note": {
"type": "string",
"description": "Additional note to add with the tags."
}
}
}