Figma · Schema

Branch

Information about a branch of the file.

CollaborationDesignGraphicsInterfacesPrototypesPrototypingUI/UX

Properties

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

JSON Schema

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