Properties
| Name | Type | Description |
|---|---|---|
| id | string | Unique identifier of the album |
| type | string | Resource type |
| subtype | string | Album subtype |
| created | string | Album creation timestamp |
| updated | string | Album last updated timestamp |
| payload | object | Album payload data |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"title": "Album",
"type": "object",
"properties": {
"id": {
"type": "string",
"description": "Unique identifier of the album"
},
"type": {
"type": "string",
"description": "Resource type"
},
"subtype": {
"type": "string",
"description": "Album subtype"
},
"created": {
"type": "string",
"description": "Album creation timestamp"
},
"updated": {
"type": "string",
"description": "Album last updated timestamp"
},
"payload": {
"type": "object",
"description": "Album payload data"
}
}
}