The stable public identity and active snapshot pointer for a published album.
Record Key
any
Any valid record key
Properties
coverMembership
string
at-uri
Optional
Published membership used as the cover.
createdAt
string
datetime
Required
An RFC 3339 formatted timestamp.
currentSnapshot
string
at-uri
Required
The active immutable album snapshot.
description
string
Optional
No description available.
maxGraphemes: 5000 graphemesformatVersion
integer
Required
No description available.
title
string
Required
No description available.
maxGraphemes: 200 graphemesminGraphemes: 1 graphemesupdatedAt
string
datetime
Required
An RFC 3339 formatted timestamp.
View raw schema
{
"key": "any",
"type": "record",
"record": {
"type": "object",
"required": [
"formatVersion",
"title",
"currentSnapshot",
"createdAt",
"updatedAt"
],
"properties": {
"title": {
"type": "string",
"maxGraphemes": 200,
"minGraphemes": 1
},
"createdAt": {
"type": "string",
"format": "datetime"
},
"updatedAt": {
"type": "string",
"format": "datetime"
},
"description": {
"type": "string",
"maxGraphemes": 5000
},
"formatVersion": {
"type": "integer",
"const": 1
},
"coverMembership": {
"type": "string",
"format": "at-uri",
"description": "Published membership used as the cover."
},
"currentSnapshot": {
"type": "string",
"format": "at-uri",
"description": "The active immutable album snapshot."
}
}
},
"description": "The stable public identity and active snapshot pointer for a published album."
}