Figma · Schema
Component
A description of a main component.
CollaborationDesignGraphicsInterfacesPrototypesPrototypingUI/UX
Properties
| Name | Type | Description |
|---|---|---|
| key | string | The key of the component. |
| name | string | Name of the component. |
| description | string | The description of the component as entered in the editor. |
| componentSetId | string | The ID of the component set if the component belongs to one. |
| documentationLinks | array | An array of documentation links attached to this component. |
| remote | boolean | Whether this component is a remote component. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"title": "Component",
"type": "object",
"description": "A description of a main component.",
"properties": {
"key": {
"type": "string",
"description": "The key of the component."
},
"name": {
"type": "string",
"description": "Name of the component."
},
"description": {
"type": "string",
"description": "The description of the component as entered in the editor."
},
"componentSetId": {
"type": "string",
"description": "The ID of the component set if the component belongs to one."
},
"documentationLinks": {
"type": "array",
"description": "An array of documentation links attached to this component."
},
"remote": {
"type": "boolean",
"description": "Whether this component is a remote component."
}
}
}