Figma · Schema
LibraryAnalyticsStyleUsagesByAsset
Library analytics style usage data broken down by asset.
CollaborationDesignGraphicsInterfacesPrototypesPrototypingUI/UX
Properties
| Name | Type | Description |
|---|---|---|
| styleKey | string | Unique, stable id of the style. |
| styleName | string | The name of the style. |
| styleType | string | The type of the style. |
| usages | number | The number of usages of the style within the organization. |
| teamsUsing | number | The number of teams using the style within the organization. |
| filesUsing | number | The number of files using the style within the organization. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"title": "LibraryAnalyticsStyleUsagesByAsset",
"type": "object",
"description": "Library analytics style usage data broken down by asset.",
"properties": {
"styleKey": {
"type": "string",
"description": "Unique, stable id of the style."
},
"styleName": {
"type": "string",
"description": "The name of the style."
},
"styleType": {
"type": "string",
"description": "The type of the style."
},
"usages": {
"type": "number",
"description": "The number of usages of the style within the organization."
},
"teamsUsing": {
"type": "number",
"description": "The number of teams using the style within the organization."
},
"filesUsing": {
"type": "number",
"description": "The number of files using the style within the organization."
}
}
}