Figma · Schema

ErrorResponsePayload

A response indicating an error occurred.

CollaborationDesignGraphicsInterfacesPrototypesPrototypingUI/UX

Properties

Name Type Description
status number Status code
err string A string describing the error
View JSON Schema on GitHub

JSON Schema

figma-teams-error-response-payload-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "ErrorResponsePayload",
  "type": "object",
  "description": "A response indicating an error occurred.",
  "properties": {
    "status": {
      "type": "number",
      "description": "Status code"
    },
    "err": {
      "type": "string",
      "description": "A string describing the error"
    }
  }
}