A content page for the PL R&D website. Used for the landing page, about page, areas listing, focus area hero pages, and other static pages.
any
Any valid record key
Properties
advisors
array
of
string
Optional
Author slugs for focus area advisors
iconType
string
Optional
Icon type for focus area pages
maxLength: 64 bytesshield, neural, brain, hexagonleads
array
of
string
Optional
Author slugs for focus area leads
pageId
string
Required
Unique identifier for the page (e.g. 'landing', 'about', 'areas', 'area-ai-robotics', 'area-neurotech', 'area-digital-human-rights', 'area-economies-governance', 'area-eg-subareas', 'area-eg-impact', 'collaborate')
maxLength: 128 bytessections
array
of
ref
#section
Required
Ordered content sections for the page
updatedAt
string
datetime
Required
ISO 8601 datetime of last content update
View raw schema
{
"key": "any",
"type": "record",
"record": {
"type": "object",
"required": [
"pageId",
"sections",
"updatedAt"
],
"properties": {
"leads": {
"type": "array",
"items": {
"type": "string",
"maxLength": 128
},
"description": "Author slugs for focus area leads"
},
"pageId": {
"type": "string",
"maxLength": 128,
"description": "Unique identifier for the page (e.g. 'landing', 'about', 'areas', 'area-ai-robotics', 'area-neurotech', 'area-digital-human-rights', 'area-economies-governance', 'area-eg-subareas', 'area-eg-impact', 'collaborate')"
},
"advisors": {
"type": "array",
"items": {
"type": "string",
"maxLength": 128
},
"description": "Author slugs for focus area advisors"
},
"iconType": {
"type": "string",
"maxLength": 64,
"description": "Icon type for focus area pages",
"knownValues": [
"shield",
"neural",
"brain",
"hexagon"
]
},
"sections": {
"type": "array",
"items": {
"ref": "#section",
"type": "ref"
},
"description": "Ordered content sections for the page"
},
"updatedAt": {
"type": "string",
"format": "datetime",
"description": "ISO 8601 datetime of last content update"
}
}
},
"description": "A content page for the PL R&D website. Used for the landing page, about page, areas listing, focus area hero pages, and other static pages."
}