No description available.
Record Key
tid
Timestamp-based ID
Properties
coverImage
blob
Optional
Image to used for cover image. Less than 2MB is size, 5:1 aspect ratio is recommended
maxSize: 2.0 MBcoverImageAspectRatio
ref
#aspectRatio
Optional
No description available.
finishedAt
string
datetime
Optional
Timestamp when the logue was marked as finished.
publication
string
at-uri
Required
Weak reference to a `site.standard.publication` compatible record.
startedAt
string
datetime
Optional
Timestamp when the logue was started.
tags
array
of
string
Optional
Array of strings used to tag or categorize the document. Avoid prepending tags with hashtags.
View raw schema
{
"key": "tid",
"type": "record",
"record": {
"type": "object",
"required": [
"publication"
],
"properties": {
"tags": {
"type": "array",
"items": {
"type": "string",
"maxLength": 1280,
"maxGraphemes": 128
},
"description": "Array of strings used to tag or categorize the document. Avoid prepending tags with hashtags."
},
"startedAt": {
"type": "string",
"format": "datetime",
"description": "Timestamp when the logue was started."
},
"coverImage": {
"type": "blob",
"accept": [
"image/*"
],
"maxSize": 2000000,
"description": "Image to used for cover image. Less than 2MB is size, 5:1 aspect ratio is recommended"
},
"finishedAt": {
"type": "string",
"format": "datetime",
"description": "Timestamp when the logue was marked as finished."
},
"publication": {
"type": "string",
"format": "at-uri",
"required": true,
"description": "Weak reference to a `site.standard.publication` compatible record."
},
"coverImageAspectRatio": {
"ref": "#aspectRatio",
"type": "ref"
}
}
}
}