Figma · Schema

GetImagesResponse

Response from the Get Images endpoint.

CollaborationDesignGraphicsInterfacesPrototypesPrototypingUI/UX

Properties

Name Type Description
err ['string', 'null'] If present, indicates an error rendering the images.
images object A mapping from node IDs to URLs of the rendered images. Image URLs expire after 14 days.
View JSON Schema on GitHub

JSON Schema

figma-rest-get-images-response-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "GetImagesResponse",
  "type": "object",
  "description": "Response from the Get Images endpoint.",
  "properties": {
    "err": {
      "type": "['string', 'null']",
      "description": "If present, indicates an error rendering the images."
    },
    "images": {
      "type": "object",
      "description": "A mapping from node IDs to URLs of the rendered images. Image URLs expire after 14 days."
    }
  }
}