Figma · Schema

Style

A set of properties that can be applied to nodes.

CollaborationDesignGraphicsInterfacesPrototypesPrototypingUI/UX

Properties

Name Type Description
key string The 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.
View JSON Schema on GitHub

JSON Schema

figma-files-style-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "Style",
  "type": "object",
  "description": "A set of properties that can be applied to nodes.",
  "properties": {
    "key": {
      "type": "string",
      "description": "The 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."
    }
  }
}