Adobe Premiere Pro · Schema

ElementList

Paginated list of library elements.

AdobeAutomationCreative CloudMediaPremiere ProVideo EditingVideo Production

Properties

Name Type Description
elements array Array of element objects.
total_count integer Total number of elements in the library.
start integer Starting index of current page.
limit integer Maximum results per page.
View JSON Schema on GitHub

JSON Schema

creative-cloud-libraries-element-list-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/adobe-premiere/refs/heads/main/json-schema/creative-cloud-libraries-element-list-schema.json",
  "title": "ElementList",
  "description": "Paginated list of library elements.",
  "type": "object",
  "properties": {
    "elements": {
      "type": "array",
      "description": "Array of element objects.",
      "items": {
        "$ref": "#/components/schemas/Element"
      }
    },
    "total_count": {
      "type": "integer",
      "description": "Total number of elements in the library.",
      "example": 8
    },
    "start": {
      "type": "integer",
      "description": "Starting index of current page.",
      "example": 0
    },
    "limit": {
      "type": "integer",
      "description": "Maximum results per page.",
      "example": 20
    }
  }
}