Tags
A Tag is a label within a classification that can be applied to data assets for categorization and governance. Tags can be hierarchically nested within a classification.Entity schema follows the OpenMetadata Standard.
Entity Hierarchy
Tags belong to a Classification and can be nested:Fully Qualified Name
The FQN format for a tag is:Certification.Bronze or PII.Sensitive.SSN
API Endpoints
| Method | Endpoint | Description |
|---|---|---|
PUT | /v1/tags | Create or update a tag |
POST | /v1/tags | Create a tag (POST variant) |
GET | /v1/tags | List tags |
GET | /v1/tags/{id} | Get by ID |
GET | /v1/tags/name/{fqn} | Get by FQN |
PATCH | /v1/tags/{id} | Update by ID |
PATCH | /v1/tags/name/{fqn} | Update by name |
DELETE | /v1/tags/{id} | Delete by ID |
DELETE | /v1/tags/name/{fqn} | Delete by name |
PUT | /v1/tags/restore | Restore soft-deleted tag |
GET | /v1/tags/{id}/versions | List versions |
GET | /v1/tags/{id}/versions/{version} | Get specific version |