Adobe Creative Cloud · JSON Structure

Adobe Cc Libraries Api Element Structure

Element from Adobe API

Type: object Properties: 7
AI/MLCloudCreativeDesignDocumentsPhotographySaaSVideo

Element is a JSON Structure definition published by Adobe Creative Cloud, describing 7 properties. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

id name type created_date modified_date thumbnail representations

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-structure.json",
  "name": "Element",
  "description": "Element from Adobe API",
  "type": "object",
  "properties": {
    "id": {
      "type": "string",
      "example": "abc123def456"
    },
    "name": {
      "type": "string",
      "example": "Example Asset"
    },
    "type": {
      "type": "string",
      "description": "Element MIME type (e.g., application/vnd.adobe.element.color+dcx).",
      "example": "image"
    },
    "created_date": {
      "type": "datetime",
      "example": "2026-04-17T12:00:00Z"
    },
    "modified_date": {
      "type": "datetime",
      "example": "2026-04-17T12:00:00Z"
    },
    "thumbnail": {
      "type": "object",
      "properties": {
        "url": {
          "type": "uri"
        },
        "width": {
          "type": "int32"
        },
        "height": {
          "type": "int32"
        },
        "type": {
          "type": "string"
        }
      }
    },
    "representations": {
      "type": "array",
      "description": "Available representations of the element.",
      "items": {
        "type": "object",
        "properties": {
          "id": {
            "type": "string"
          },
          "type": {
            "type": "string"
          },
          "storage_href": {
            "type": "uri"
          },
          "content_length": {
            "type": "int32"
          }
        }
      }
    }
  }
}