Canva · Schema

PdfExportFormat

PDF export format options

AppsAutomationBrand ManagementCollaborationDesignGraphicsMarketingPrintTemplatesVisual Content

Properties

Name Type Description
type string
export_quality string
size string Paper size for the PDF
pages array Page indices to export (exports all pages if omitted)
View JSON Schema on GitHub

JSON Schema

canva-connect-pdf-export-format-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "PdfExportFormat",
  "type": "object",
  "description": "PDF export format options",
  "properties": {
    "type": {
      "type": "string"
    },
    "export_quality": {
      "type": "string"
    },
    "size": {
      "type": "string",
      "description": "Paper size for the PDF"
    },
    "pages": {
      "type": "array",
      "description": "Page indices to export (exports all pages if omitted)"
    }
  }
}