Review duplicate resources, broken relative links, and stale timestamps before publishing.
Missing simple frontmatter
OKF files need metadata at the top of the Markdown file. If the file starts directly with a heading, the validator cannot read fields such as type, title, tags, or resource.
Frontmatter repair
---
type: Website Page
title: Contact Page
description: Summarizes the public contact options and support boundaries.
resource: https://openknowledgeformat.online/sample/contact/
tags: [website, support, contact]
timestamp: 2026-06-21T00:00:00Z
---
# Contact Page
Write the reviewed page summary here.
Missing type
The type field tells readers and tools what kind of concept the file describes. Without it, a website page, API endpoint, metric, support playbook, or agent context file all look the same.
Use short human-readable labels.
Do not use a file name as the type.
Keep similar files consistent across the bundle.
Invalid frontmatter
This guide profile uses a simple frontmatter subset. Each normal field should fit the field: value pattern so the browser validator can read it.
Tags are easier to scan and filter when they use a predictable list shape. This site expects inline arrays for the guide profile.
Tag fix
tags: [okf, validator, markdown]
Missing resource
The resource field should point to the page, API reference, data asset, or stable identifier the OKF file describes. This makes source review and stale-content checks possible.
Use canonical public URLs when possible.
Use stable internal identifiers for private assets.
Do not point every file to the homepage.
Broken internal link
Relative Markdown links are useful inside bundles, but single-file paste validation cannot prove that the target file exists. Use folder validation for this check.