Adobe Creative Cloud · Schema
StockAsset
StockAsset from Adobe API
AI/MLCloudCreativeDesignDocumentsPhotographySaaSVideo
Properties
| Name | Type | Description |
|---|---|---|
| id | integer | Unique asset identifier. |
| title | string | |
| creator_name | string | |
| creator_id | integer | |
| content_type | string | Asset type (photo, illustration, vector, video, template, 3d). |
| width | integer | |
| height | integer | |
| thumbnail_url | string | |
| thumbnail_width | integer | |
| thumbnail_height | integer | |
| comp_url | string | URL to the watermarked comp/preview. |
| category | object | |
| keywords | array | |
| is_licensed | string | License type if already licensed, empty string if not. |
| premium_level_id | integer | 0 = Core, 1 = Free, 2 = Premium Collection 1, 3 = Premium Collection 2. |
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-stock-api-stock-asset-schema.json",
"title": "StockAsset",
"description": "StockAsset from Adobe API",
"type": "object",
"properties": {
"id": {
"type": "integer",
"description": "Unique asset identifier.",
"example": 42
},
"title": {
"type": "string",
"example": "example_value"
},
"creator_name": {
"type": "string",
"example": "Example Asset"
},
"creator_id": {
"type": "integer",
"example": 42
},
"content_type": {
"type": "string",
"description": "Asset type (photo, illustration, vector, video, template, 3d).",
"example": "image"
},
"width": {
"type": "integer",
"example": 42
},
"height": {
"type": "integer",
"example": 42
},
"thumbnail_url": {
"type": "string",
"format": "uri",
"example": "https://example.adobe.com/asset"
},
"thumbnail_width": {
"type": "integer",
"example": 42
},
"thumbnail_height": {
"type": "integer",
"example": 42
},
"comp_url": {
"type": "string",
"format": "uri",
"description": "URL to the watermarked comp/preview.",
"example": "https://example.adobe.com/asset"
},
"category": {
"type": "object",
"properties": {
"id": {
"type": "integer"
},
"name": {
"type": "string"
}
}
},
"keywords": {
"type": "array",
"items": {
"type": "object",
"properties": {
"name": {
"type": "string"
}
}
}
},
"is_licensed": {
"type": "string",
"enum": [
"Standard",
"Extended",
"Video_HD",
"Video_4K",
""
],
"description": "License type if already licensed, empty string if not.",
"example": "Standard"
},
"premium_level_id": {
"type": "integer",
"description": "0 = Core, 1 = Free, 2 = Premium Collection 1, 3 = Premium Collection 2.",
"example": 42
}
}
}