Curated magazine collection manifest for a site.standard.document. Uses the same record key as the document it extends so both records can be fetched with one predictable pair of GETs.
any
Any valid record key
Properties
colophon
ref
app.standard-reader.collection#colophon
Optional
No description available.
createdAt
string
datetime
Required
When the collection manifest was first published.
document
string
at-uri
Required
AT URI of the site.standard.document record this collection renders.
editorial
ref
app.standard-reader.collection#editorial
Optional
No description available.
items
array
of
ref
app.standard-reader.collection#item
Required
Ordered curated articles plus optional per-item notes.
maxLength: 42 itemsupdatedAt
string
datetime
Optional
When the collection manifest was last edited.
View raw schema
{
"key": "any",
"type": "record",
"record": {
"type": "object",
"required": [
"document",
"items",
"createdAt"
],
"properties": {
"items": {
"type": "array",
"items": {
"ref": "app.standard-reader.collection#item",
"type": "ref"
},
"maxLength": 42,
"description": "Ordered curated articles plus optional per-item notes."
},
"colophon": {
"ref": "app.standard-reader.collection#colophon",
"type": "ref"
},
"document": {
"type": "string",
"format": "at-uri",
"description": "AT URI of the site.standard.document record this collection renders."
},
"createdAt": {
"type": "string",
"format": "datetime",
"description": "When the collection manifest was first published."
},
"editorial": {
"ref": "app.standard-reader.collection#editorial",
"type": "ref"
},
"updatedAt": {
"type": "string",
"format": "datetime",
"description": "When the collection manifest was last edited."
}
}
},
"description": "Curated magazine collection manifest for a site.standard.document. Uses the same record key as the document it extends so both records can be fetched with one predictable pair of GETs."
}