Figma · Schema

Branch

Information about a branch of a Figma file.

CollaborationDesignGraphicsInterfacesPrototypesPrototypingUI/UX

Properties

Name Type Description
key string The key of the branch file.
name string The name of the branch.
thumbnail_url string A URL to a thumbnail image of the branch.
last_modified string The UTC ISO 8601 time at which the branch was last modified.
View JSON Schema on GitHub

JSON Schema

figma-rest-branch-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "Branch",
  "type": "object",
  "description": "Information about a branch of a Figma file.",
  "properties": {
    "key": {
      "type": "string",
      "description": "The key of the branch file."
    },
    "name": {
      "type": "string",
      "description": "The name of the branch."
    },
    "thumbnail_url": {
      "type": "string",
      "description": "A URL to a thumbnail image of the branch."
    },
    "last_modified": {
      "type": "string",
      "description": "The UTC ISO 8601 time at which the branch was last modified."
    }
  }
}