Bump.sh · Schema

Branch

A named branch of an API documentation (analogous to a source-control branch).

API ChangelogAPI DocumentationAPI HubAPI GovernanceArazzoAsyncAPICI/CDFlowerMCPOpenAPIWorkflows

Properties

Name Type Description
slug string
name string
default boolean Whether this branch is the default-displayed branch.
url string
View JSON Schema on GitHub

JSON Schema

bump-sh-branch-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/bump-sh/main/json-schema/bump-sh-branch-schema.json",
  "title": "Branch",
  "description": "A named branch of an API documentation (analogous to a source-control branch).",
  "type": "object",
  "required": ["slug", "name"],
  "properties": {
    "slug": { "type": "string" },
    "name": { "type": "string" },
    "default": {
      "type": "boolean",
      "description": "Whether this branch is the default-displayed branch."
    },
    "url": { "type": "string", "format": "uri" }
  }
}