Figma · Schema

Version

A version of a file.

CollaborationDesignGraphicsInterfacesPrototypesPrototypingUI/UX

Properties

Name Type Description
id string Unique identifier for version.
createdAt string The UTC ISO 8601 time at which the version was created.
label ['string', 'null'] The label given to the version in the editor.
description ['string', 'null'] The description of the version as entered in the editor.
View JSON Schema on GitHub

JSON Schema

figma-files-version-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "Version",
  "type": "object",
  "description": "A version of a file.",
  "properties": {
    "id": {
      "type": "string",
      "description": "Unique identifier for version."
    },
    "createdAt": {
      "type": "string",
      "description": "The UTC ISO 8601 time at which the version was created."
    },
    "label": {
      "type": "['string', 'null']",
      "description": "The label given to the version in the editor."
    },
    "description": {
      "type": "['string', 'null']",
      "description": "The description of the version as entered in the editor."
    }
  }
}