Figma · Schema

ProjectFile

A file within a project.

CollaborationDesignGraphicsInterfacesPrototypesPrototypingUI/UX

Properties

Name Type Description
key string The file's key.
name string The file's name.
thumbnail_url string The file's thumbnail URL.
last_modified string The UTC ISO 8601 time at which the file was last modified.
View JSON Schema on GitHub

JSON Schema

figma-projects-project-file-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "ProjectFile",
  "type": "object",
  "description": "A file within a project.",
  "properties": {
    "key": {
      "type": "string",
      "description": "The file's key."
    },
    "name": {
      "type": "string",
      "description": "The file's name."
    },
    "thumbnail_url": {
      "type": "string",
      "description": "The file's thumbnail URL."
    },
    "last_modified": {
      "type": "string",
      "description": "The UTC ISO 8601 time at which the file was last modified."
    }
  }
}