Canva · Schema

CustomDesignType

A custom design type with specific dimensions

AppsAutomationBrand ManagementCollaborationDesignGraphicsMarketingPrintTemplatesVisual Content

Properties

Name Type Description
type string
width integer Width in pixels (40-8000)
height integer Height in pixels (40-8000)
View JSON Schema on GitHub

JSON Schema

canva-connect-custom-design-type-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "CustomDesignType",
  "type": "object",
  "description": "A custom design type with specific dimensions",
  "properties": {
    "type": {
      "type": "string"
    },
    "width": {
      "type": "integer",
      "description": "Width in pixels (40-8000)"
    },
    "height": {
      "type": "integer",
      "description": "Height in pixels (40-8000)"
    }
  }
}