interface PageSchema extends FrontMatterSchema
{
public const PAGE_SCHEMA = [
'title' => 'string',
'canonicalUrl' => 'string', // While not present in the page data, it is supported as a front matter key for the accessor data source.
'description' => 'string', // For <meta name='description'>.
'navigation' => NavigationSchema::NAVIGATION_SCHEMA,
];
}