Bump.sh · Schema

Hub

A Bump.sh hub: an organizational container grouping multiple API documentations.

API ChangelogAPI DocumentationAPI HubAPI GovernanceArazzoAsyncAPICI/CDFlowerMCPOpenAPIWorkflows

Properties

Name Type Description
id string
name string
slug string
url string
public boolean
apis array
View JSON Schema on GitHub

JSON Schema

bump-sh-hub-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-hub-schema.json",
  "title": "Hub",
  "description": "A Bump.sh hub: an organizational container grouping multiple API documentations.",
  "type": "object",
  "required": ["id", "name", "slug"],
  "properties": {
    "id":   { "type": "string", "format": "uuid" },
    "name": { "type": "string" },
    "slug": { "type": "string" },
    "url":  { "type": "string", "format": "uri" },
    "public": { "type": "boolean" },
    "apis": {
      "type": "array",
      "items": { "$ref": "#/$defs/Api" }
    }
  },
  "$defs": {
    "Api": {
      "type": "object",
      "required": ["id", "name", "slug"],
      "properties": {
        "id":   { "type": "string", "format": "uuid" },
        "name": { "type": "string" },
        "slug": { "type": "string" },
        "url":  { "type": "string", "format": "uri" }
      }
    }
  }
}