ReadMe · Schema

ReadMe Changelog Post

A changelog entry published to a ReadMe hub.

DocumentationDeveloper HubAPI ReferencePortalsAnalyticsAIMCPBi-Directional Sync

Properties

Name Type Description
slug string
title string
body string
type string
hidden boolean
publishedAt string
createdAt string
updatedAt string
View JSON Schema on GitHub

JSON Schema

readme-changelog-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-changelog-schema.json",
  "title": "ReadMe Changelog Post",
  "description": "A changelog entry published to a ReadMe hub.",
  "type": "object",
  "required": ["slug", "title", "body", "type"],
  "properties": {
    "slug": { "type": "string" },
    "title": { "type": "string" },
    "body": { "type": "string" },
    "type": {
      "type": "string",
      "enum": ["added", "fixed", "improved", "deprecated", "removed", "none"]
    },
    "hidden": { "type": "boolean", "default": false },
    "publishedAt": { "type": "string", "format": "date-time" },
    "createdAt": { "type": "string", "format": "date-time" },
    "updatedAt": { "type": "string", "format": "date-time" }
  }
}