A private many-to-many placement of one media item in one album.
Record Key
tid
Timestamp-based ID
Properties
addedAt
string
datetime
Required
An RFC 3339 formatted timestamp.
album
string
at-uri
Required
Private Library album record.
altTextOverride
string
Optional
No description available.
maxGraphemes: 2000 graphemescaptionOverride
string
Optional
No description available.
maxGraphemes: 5000 graphemesdecorativeOverride
boolean
Optional
No description available.
formatVersion
integer
Required
No description available.
media
string
at-uri
Required
Private Library media record.
position
integer
Required
No description available.
minimum: 0View raw schema
{
"key": "tid",
"type": "record",
"record": {
"type": "object",
"required": [
"formatVersion",
"album",
"media",
"position",
"addedAt"
],
"properties": {
"album": {
"type": "string",
"format": "at-uri",
"description": "Private Library album record."
},
"media": {
"type": "string",
"format": "at-uri",
"description": "Private Library media record."
},
"addedAt": {
"type": "string",
"format": "datetime"
},
"position": {
"type": "integer",
"minimum": 0
},
"formatVersion": {
"type": "integer",
"const": 1
},
"altTextOverride": {
"type": "string",
"maxGraphemes": 2000
},
"captionOverride": {
"type": "string",
"maxGraphemes": 5000
},
"decorativeOverride": {
"type": "boolean"
}
}
},
"description": "A private many-to-many placement of one media item in one album."
}