Figma · Schema
LibraryAnalyticsUsagesByComponent
Library analytics usage data broken down by component.
CollaborationDesignGraphicsInterfacesPrototypesPrototypingUI/UX
Properties
| Name | Type | Description |
|---|---|---|
| componentKey | string | Unique, stable id of the component. |
| componentName | string | Name of the component. |
| componentSetKey | string | Unique, stable id of the component set that this component belongs to. |
| componentSetName | string | Name of the component set that this component belongs to. |
| numInstances | number | The number of instances of the component within the organization. |
| numTeamsUsing | number | The number of teams using the component within the organization. |
| numFilesUsing | number | The number of files using the component within the organization. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"title": "LibraryAnalyticsUsagesByComponent",
"type": "object",
"description": "Library analytics usage data broken down by component.",
"properties": {
"componentKey": {
"type": "string",
"description": "Unique, stable id of the component."
},
"componentName": {
"type": "string",
"description": "Name of the component."
},
"componentSetKey": {
"type": "string",
"description": "Unique, stable id of the component set that this component belongs to."
},
"componentSetName": {
"type": "string",
"description": "Name of the component set that this component belongs to."
},
"numInstances": {
"type": "number",
"description": "The number of instances of the component within the organization."
},
"numTeamsUsing": {
"type": "number",
"description": "The number of teams using the component within the organization."
},
"numFilesUsing": {
"type": "number",
"description": "The number of files using the component within the organization."
}
}
}