Figma · Schema

Style

A published style that can be applied to nodes in Figma.

CollaborationDesignGraphicsInterfacesPrototypesPrototypingUI/UX

Properties

Name Type Description
key string The globally unique key of the style.
name string Name of the style.
description string Description of the style.
remote boolean Whether this style is a remote style from an external library.
style_type string The type of style.
View JSON Schema on GitHub

JSON Schema

figma-rest-style-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "Style",
  "type": "object",
  "description": "A published style that can be applied to nodes in Figma.",
  "properties": {
    "key": {
      "type": "string",
      "description": "The globally unique key of the style."
    },
    "name": {
      "type": "string",
      "description": "Name of the style."
    },
    "description": {
      "type": "string",
      "description": "Description of the style."
    },
    "remote": {
      "type": "boolean",
      "description": "Whether this style is a remote style from an external library."
    },
    "style_type": {
      "type": "string",
      "description": "The type of style."
    }
  }
}