ReadMe · Schema

ReadMe Guide

A knowledge base guide page rendered in a ReadMe developer hub.

DocumentationDeveloper HubAPI ReferencePortalsAnalyticsAIMCPBi-Directional Sync

Properties

Name Type Description
slug string
title string
body string ReadMe-flavored Markdown / MDX body content.
category string
parentDoc stringnull
hidden boolean
order integer
branch string
metadata object
createdAt string
updatedAt string
View JSON Schema on GitHub

JSON Schema

readme-guide-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/readme/refs/heads/main/json-schema/readme-guide-schema.json",
  "title": "ReadMe Guide",
  "description": "A knowledge base guide page rendered in a ReadMe developer hub.",
  "type": "object",
  "required": ["slug", "title", "body"],
  "properties": {
    "slug": { "type": "string" },
    "title": { "type": "string" },
    "body": {
      "type": "string",
      "description": "ReadMe-flavored Markdown / MDX body content."
    },
    "category": { "type": "string" },
    "parentDoc": { "type": ["string", "null"] },
    "hidden": { "type": "boolean", "default": false },
    "order": { "type": "integer" },
    "branch": { "type": "string" },
    "metadata": {
      "type": "object",
      "properties": {
        "title": { "type": "string" },
        "description": { "type": "string" },
        "image": { "type": "string" }
      }
    },
    "createdAt": { "type": "string", "format": "date-time" },
    "updatedAt": { "type": "string", "format": "date-time" }
  }
}