ReadMe · Schema

ReadMe Branch

A version/branch of a ReadMe project. Branches replace the legacy 'version' concept and back ReadMe's review-and-merge workflow.

DocumentationDeveloper HubAPI ReferencePortalsAnalyticsAIMCPBi-Directional Sync

Properties

Name Type Description
id string
name string
isStable boolean
isBeta boolean
isDeprecated boolean
isHidden boolean
forkedFrom stringnull
createdAt string
View JSON Schema on GitHub

JSON Schema

readme-branch-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-branch-schema.json",
  "title": "ReadMe Branch",
  "description": "A version/branch of a ReadMe project. Branches replace the legacy 'version' concept and back ReadMe's review-and-merge workflow.",
  "type": "object",
  "required": ["id", "name"],
  "properties": {
    "id": { "type": "string" },
    "name": { "type": "string" },
    "isStable": { "type": "boolean" },
    "isBeta": { "type": "boolean" },
    "isDeprecated": { "type": "boolean" },
    "isHidden": { "type": "boolean" },
    "forkedFrom": { "type": ["string", "null"] },
    "createdAt": { "type": "string", "format": "date-time" }
  }
}