Command Reference > entity > createClassifications
Add classifications to an existing entity represented by a GUID.
pv entity createClassifications --guid=<val> --payloadFile=<val>
--guid
(string)
The globally unique identifier of the entity.
--payloadFile
(string)
File path to a valid JSON document.
None
Catalog Data Plane > Entity > Add Classifications
POST https://{accountName}.purview.azure.com/catalog/api/atlas/v2/entity/guid/{guid}/classifications
Associate an entity to multiple classifications.
pv entity createClassifications --guid "04f2bb30-91db-404b-a8e1-d65e45338929" --payloadFile "/path/to/file.json"
Example payload.
[
{
"typeName": "MICROSOFT.FINANCIAL.US.ABA_ROUTING_NUMBER"
},
{
"typeName": "MICROSOFT.FINANCIAL.CREDIT_CARD_NUMBER"
}
]