OKF Validator
Check whether frontmatter parses correctly.
Open pageFrontmatter guide
YAML frontmatter is the metadata block that lets an OKF Markdown file describe what concept it contains before the body is read.
Frontmatter gives readers, reviewers, and tools a small structured summary before they load the Markdown body. In OKF files, this metadata helps identify the concept type, readable title, summary, source resource, tags, and freshness signal.
type names the concept category. This is the field this site treats as required from the public draft direction.Website Page, API Endpoint, Documentation Topic, Data Table, or Agent Context.title gives the file a readable display name.description summarizes the concept in one sentence.resource points to the canonical URL, URN, or stable asset identifier.tags groups the file with related concepts.timestamp records the last meaningful update when your workflow has a real date.---
type: Documentation Topic
title: API rate limits
description: Explains public API rate limit rules and retry behavior.
resource: https://openknowledgeformat.online/sample/api-rate-limits/
tags: [api, okf, limits]
timestamp: 2026-06-21T00:00:00Z
--- The bad example below has no valid type field, an empty description, and tags that are not an inline array.
---
title API rate limits
description:
tags: api, okf
---
# API rate limits
This file has broken frontmatter and missing type. ---
type: Documentation Topic
title: API rate limits
description: Explains public API rate limit rules and retry behavior.
resource: https://openknowledgeformat.online/sample/api-rate-limits/
tags: [api, okf, limits]
timestamp: 2026-06-21T00:00:00Z
---
# API rate limits
Write the reviewed rate limit explanation here. --- before the first heading?type present and specific?title and description readable without opening the body?resource point to a stable source?tags written as an inline array?FAQ
No. Frontmatter is metadata at the top of the file; the Markdown body contains the explanation and source context.
Add type first, then fill title, description, resource, and tags for clearer previews and validation.
This site's validator expects an inline array such as [okf, api, limits].
Use the OKF file example guide for a full Markdown file.
Paste one Markdown file and fix the metadata before adding the file to a bundle.
Open OKF Validator