Adobe Creative Cloud · Schema
Library
Library from Adobe API
AI/MLCloudCreativeDesignDocumentsPhotographySaaSVideo
Properties
| Name | Type | Description |
|---|---|---|
| id | string | |
| name | string | |
| created_date | string | |
| modified_date | string | |
| owner | object | |
| element_count | integer |
JSON Schema
{
"$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-library-schema.json",
"title": "Library",
"description": "Library from Adobe API",
"type": "object",
"properties": {
"id": {
"type": "string",
"example": "abc123def456"
},
"name": {
"type": "string",
"example": "Example Asset"
},
"created_date": {
"type": "string",
"format": "date-time",
"example": "2026-04-17T12:00:00Z"
},
"modified_date": {
"type": "string",
"format": "date-time",
"example": "2026-04-17T12:00:00Z"
},
"owner": {
"type": "object",
"properties": {
"user_id": {
"type": "string"
},
"name": {
"type": "string"
}
}
},
"element_count": {
"type": "integer",
"example": 42
}
}
}