Azure Storage Account · Schema
TagProperty
A tag of the LegalHold of a blob container.
AzureBlob StorageCloud StorageFile StorageMicrosoftStorage
Properties
| Name | Type | Description |
|---|---|---|
| objectIdentifier | string | Returns the Object ID of the user who added the tag. |
| tag | string | The tag value. |
| tenantId | string | Returns the Tenant ID that issued the token for the user who added the tag. |
| timestamp | string | Returns the date and time the tag was added. |
| upn | string | Returns the User Principal Name of the user who added the tag. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://raw.githubusercontent.com/api-evangelist/azure-storage-account/refs/heads/main/json-schema/azure-storage-account-tag-property-schema.json",
"title": "TagProperty",
"description": "A tag of the LegalHold of a blob container.",
"properties": {
"objectIdentifier": {
"description": "Returns the Object ID of the user who added the tag.",
"readOnly": true,
"type": "string"
},
"tag": {
"description": "The tag value.",
"readOnly": true,
"type": "string"
},
"tenantId": {
"description": "Returns the Tenant ID that issued the token for the user who added the tag.",
"readOnly": true,
"type": "string"
},
"timestamp": {
"description": "Returns the date and time the tag was added.",
"format": "date-time",
"readOnly": true,
"type": "string"
},
"upn": {
"description": "Returns the User Principal Name of the user who added the tag.",
"readOnly": true,
"type": "string"
}
},
"type": "object"
}