Figma · Schema

FrameInfo

Information about the containing frame.

CollaborationDesignGraphicsInterfacesPrototypesPrototypingUI/UX

Properties

Name Type Description
nodeId string The ID of the containing frame.
name string The name of the containing frame.
backgroundColor string The background color of the containing frame.
pageId string The ID of the page containing the frame.
pageName string The name of the page containing the frame.
View JSON Schema on GitHub

JSON Schema

figma-files-frame-info-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "FrameInfo",
  "type": "object",
  "description": "Information about the containing frame.",
  "properties": {
    "nodeId": {
      "type": "string",
      "description": "The ID of the containing frame."
    },
    "name": {
      "type": "string",
      "description": "The name of the containing frame."
    },
    "backgroundColor": {
      "type": "string",
      "description": "The background color of the containing frame."
    },
    "pageId": {
      "type": "string",
      "description": "The ID of the page containing the frame."
    },
    "pageName": {
      "type": "string",
      "description": "The name of the page containing the frame."
    }
  }
}