Adobe Premiere Pro · Schema

LibraryList

Paginated list of Creative Cloud Libraries.

AdobeAutomationCreative CloudMediaPremiere ProVideo EditingVideo Production

Properties

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

JSON Schema

creative-cloud-libraries-library-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-library-list-schema.json",
  "title": "LibraryList",
  "description": "Paginated list of Creative Cloud Libraries.",
  "type": "object",
  "properties": {
    "libraries": {
      "type": "array",
      "description": "Array of library objects.",
      "items": {
        "$ref": "#/components/schemas/Library"
      }
    },
    "total_count": {
      "type": "integer",
      "description": "Total number of libraries available.",
      "example": 15
    },
    "start": {
      "type": "integer",
      "description": "Starting index of the current page.",
      "example": 0
    },
    "limit": {
      "type": "integer",
      "description": "Maximum results per page.",
      "example": 20
    }
  }
}