No description available.
Record Key
any
Any valid record key
Properties
content
ref
app.offprint.content
Required
Page body. Same block format as documents.
coverImage
blob
Optional
Optional hero / cover image.
maxSize: 1.0 MBdescription
string
Optional
Brief description / meta description for SEO.
maxGraphemes: 3000 graphemespath
string
Required
Root-relative path the page is served at, with a leading slash (e.g. "/about" or "/p/colophon").
publication
string
at-uri
Required
Required AT-URI to the `site.standard.publication` this page belongs to.
publishedAt
string
datetime
Optional
Publish timestamp.
title
string
Required
Page title.
maxGraphemes: 500 graphemesupdatedAt
string
datetime
Optional
Last edit timestamp.
View raw schema
{
"key": "any",
"type": "record",
"record": {
"type": "object",
"required": [
"publication",
"path",
"title",
"content"
],
"properties": {
"path": {
"type": "string",
"description": "Root-relative path the page is served at, with a leading slash (e.g. \"/about\" or \"/p/colophon\")."
},
"title": {
"type": "string",
"description": "Page title.",
"maxGraphemes": 500
},
"content": {
"ref": "app.offprint.content",
"type": "ref",
"description": "Page body. Same block format as documents."
},
"updatedAt": {
"type": "string",
"format": "datetime",
"description": "Last edit timestamp."
},
"coverImage": {
"type": "blob",
"accept": [
"image/png",
"image/jpeg",
"image/webp"
],
"maxSize": 1000000,
"description": "Optional hero / cover image."
},
"description": {
"type": "string",
"description": "Brief description / meta description for SEO.",
"maxGraphemes": 3000
},
"publication": {
"type": "string",
"format": "at-uri",
"description": "Required AT-URI to the `site.standard.publication` this page belongs to."
},
"publishedAt": {
"type": "string",
"format": "datetime",
"description": "Publish timestamp."
}
}
}
}