ElementCreation

ElementCreation from Adobe API

AI/MLCloudCreativeDesignDocumentsPhotographySaaSVideo

Properties

Name Type Description
name string Display name for the element.
type string Element MIME type.
client_data object Application-specific metadata.
View JSON Schema on GitHub

JSON Schema

adobe-cc-libraries-api-element-creation-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/adobe-creative-cloud/refs/heads/main/json-schema/adobe-cc-libraries-api-element-creation-schema.json",
  "title": "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"
  ]
}