-
Notifications
You must be signed in to change notification settings - Fork 9
Data api resource assets
Yuji Takayama edited this page Jul 10, 2013
·
1 revision
| Property Name | Type | Data Type | Database Column | Private | Read Only | Description |
|---|---|---|---|---|---|---|
| id | value | unsigned integer | mt_asset.asset_id | Y | The ID of this asset. | |
| label | value | string | mt_asset.asset_label | The label of this asset. | ||
| mimeType | value | string | mt_asset.asset_mime_type | Y | The MIME Type of this asset. | |
| url | value | string | mt_asset.asset_url | Y | The permalink URL of this asset. | |
| filename | value | string | mt_asset.asset_filename | Y | The filename of this asset that includes file extension. | |
| description | value | string | mt_asset_asset_description | The desciption of this asset. | ||
| tags | ARRAY | string | A list of tags associated with this asset. |
{
"id" : 1,
"label" : "Sample Image",
"description" : "My family portrait.",
"mimeType" : "image/jpeg",
"tags" : [
"photo",
"portrait"
],
"url" : "http://example.com/images/foo.jpg"
}