Figma · Schema

GetImagesResponseBody

Successful response containing rendered image URLs.

CollaborationDesignGraphicsInterfacesPrototypesPrototypingUI/UX

Properties

Name Type Description
err null For successful requests, this value is always `null`.
images object A map from node IDs to URLs of the rendered images.
View JSON Schema on GitHub

JSON Schema

figma-images-get-images-response-body-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "GetImagesResponseBody",
  "type": "object",
  "description": "Successful response containing rendered image URLs.",
  "properties": {
    "err": {
      "type": "null",
      "description": "For successful requests, this value is always `null`."
    },
    "images": {
      "type": "object",
      "description": "A map from node IDs to URLs of the rendered images."
    }
  }
}