Figma · Schema

ComponentSet

A description of a component set.

CollaborationDesignGraphicsInterfacesPrototypesPrototypingUI/UX

Properties

Name Type Description
key string The key of the component set.
name string Name of the component set.
description string The description of the component set as entered in the editor.
documentationLinks array An array of documentation links attached to this component set.
remote boolean Whether this component set is a remote component set.
View JSON Schema on GitHub

JSON Schema

figma-files-component-set-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "ComponentSet",
  "type": "object",
  "description": "A description of a component set.",
  "properties": {
    "key": {
      "type": "string",
      "description": "The key of the component set."
    },
    "name": {
      "type": "string",
      "description": "Name of the component set."
    },
    "description": {
      "type": "string",
      "description": "The description of the component set as entered in the editor."
    },
    "documentationLinks": {
      "type": "array",
      "description": "An array of documentation links attached to this component set."
    },
    "remote": {
      "type": "boolean",
      "description": "Whether this component set is a remote component set."
    }
  }
}