Adobe Creative Cloud · JSON Structure

Adobe Cc Libraries Api Element Creation Structure

ElementCreation from Adobe API

Type: object Properties: 3 Required: 2
AI/MLCloudCreativeDesignDocumentsPhotographySaaSVideo

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

Properties

name type client_data

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-creative-cloud/refs/heads/main/json-structure/adobe-cc-libraries-api-element-creation-structure.json",
  "name": "ElementCreation",
  "description": "ElementCreation from Adobe API",
  "type": "object",
  "properties": {
    "name": {
      "type": "string",
      "description": "Display name for the element.",
      "example": "Example Asset"
    },
    "type": {
      "type": "string",
      "description": "Element MIME type.",
      "example": "image"
    },
    "client_data": {
      "type": "object",
      "description": "Application-specific metadata.",
      "additionalProperties": true
    }
  },
  "required": [
    "name",
    "type"
  ]
}