{ "$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" } } } } } }