Adobe Lightroom · Schema
CatalogResponse
Cloud StorageImage EditingMetadataPhoto ManagementPhotography
Properties
| Name | Type | Description |
|---|---|---|
| base | string | Base URL for the API |
| id | string | Unique identifier of the catalog |
| type | string | Resource type |
| created | string | Catalog creation timestamp |
| updated | string | Catalog last updated timestamp |
| payload | object | Catalog payload data |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"title": "CatalogResponse",
"type": "object",
"properties": {
"base": {
"type": "string",
"description": "Base URL for the API"
},
"id": {
"type": "string",
"description": "Unique identifier of the catalog"
},
"type": {
"type": "string",
"description": "Resource type"
},
"created": {
"type": "string",
"description": "Catalog creation timestamp"
},
"updated": {
"type": "string",
"description": "Catalog last updated timestamp"
},
"payload": {
"type": "object",
"description": "Catalog payload data"
}
}
}