1# Asset_Attr 2 3 4## Overview 5 6Defines an asset attribute, which consists of a tag and a value in the form of a key-value (KV) pair. 7 8**Since**: 11 9 10**Related module**: [AssetType](_asset_type.md) 11 12 13## Summary 14 15 16### Member Variables 17 18| Name| Description| 19| -------- | -------- | 20| uint32_t [tag](#tag) | Name of the asset attribute. The tag (the key in the KV pair) uniquely identifies an attribute. | 21| [Asset_Value](union_asset___value.md) [value](#value) | Value of the asset attribute. | 22 23 24## Member Variable Description 25 26 27### tag 28 29``` 30uint32_t Asset_Attr::tag 31``` 32**Description** 33Defines the name of the asset attribute. 34 35 36### value 37 38``` 39Asset_Value Asset_Attr::value 40``` 41**Description** 42Defines the value of the asset attribute 43