Adobe Premiere Pro · JSON Structure

Creative Cloud Libraries Element Input Structure

Request body for creating a library element.

Type: object Properties: 2 Required: 2
AdobeAutomationCreative CloudMediaPremiere ProVideo EditingVideo Production

ElementInput is a JSON Structure definition published by Adobe Premiere Pro, describing 2 properties, of which 2 are required. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

name type

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/adobe-premiere/refs/heads/main/json-structure/creative-cloud-libraries-element-input-structure.json",
  "name": "ElementInput",
  "description": "Request body for creating a library element.",
  "type": "object",
  "properties": {
    "name": {
      "type": "string",
      "description": "Name of the element.",
      "example": "Brand Red"
    },
    "type": {
      "type": "string",
      "description": "Type of the element.",
      "enum": [
        "color",
        "characterstyle",
        "brushstyle",
        "graphic",
        "pattern",
        "video"
      ]
    }
  },
  "required": [
    "name",
    "type"
  ]
}