ElementCreation from Adobe API
{ "$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" ] }