Canva · Schema

Asset

A Canva asset (image or video)

AppsAutomationBrand ManagementCollaborationDesignGraphicsMarketingPrintTemplatesVisual Content

Properties

Name Type Description
id string The asset ID
type string The asset type
name string The asset name
tags array User-facing tags for the asset
created_at integer Unix timestamp in seconds when the asset was created
updated_at integer Unix timestamp in seconds when the asset was last updated
View JSON Schema on GitHub

JSON Schema

canva-connect-asset-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "Asset",
  "type": "object",
  "description": "A Canva asset (image or video)",
  "properties": {
    "id": {
      "type": "string",
      "description": "The asset ID"
    },
    "type": {
      "type": "string",
      "description": "The asset type"
    },
    "name": {
      "type": "string",
      "description": "The asset name"
    },
    "tags": {
      "type": "array",
      "description": "User-facing tags for the asset"
    },
    "created_at": {
      "type": "integer",
      "description": "Unix timestamp in seconds when the asset was created"
    },
    "updated_at": {
      "type": "integer",
      "description": "Unix timestamp in seconds when the asset was last updated"
    }
  }
}