Bump.sh · JSON Structure

Bump Sh Diff Structure

Type: object Properties: 6
API ChangelogAPI DocumentationAPI HubAPI GovernanceArazzoAsyncAPICI/CDFlowerMCPOpenAPIWorkflows

Bump Sh Diff Structure is a JSON Structure definition published by Bump.sh, describing 6 properties. It conforms to the https://json-structure.org/draft/2025-09/schema meta-schema.

Properties

id public_url title breaking diff_summary details

Meta-schema: https://json-structure.org/draft/2025-09/schema

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/draft/2025-09/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/bump-sh/main/json-structure/bump-sh-diff-structure.json",
  "title": "Diff",
  "type": "object",
  "properties": {
    "id":           { "type": "string", "format": "uuid" },
    "public_url":   { "type": "string", "format": "uri" },
    "title":        { "type": "string" },
    "breaking":     { "type": "boolean" },
    "diff_summary": { "type": "string" },
    "details": {
      "type": "array",
      "items": {
        "type": "object",
        "properties": {
          "type":     { "type": "string", "enum": ["add", "remove", "update"] },
          "name":     { "type": "string" },
          "breaking": { "type": "boolean" }
        }
      }
    }
  }
}