Bump.sh · Schema
Version
A documentation version published to Bump.sh.
API ChangelogAPI DocumentationAPI HubAPI GovernanceArazzoAsyncAPICI/CDFlowerMCPOpenAPIWorkflows
Properties
| Name | Type | Description |
|---|---|---|
| id | string | |
| doc_id | string | Identifier of the documentation this version belongs to. |
| doc_public_url | string | Public URL of the rendered documentation. |
| diff_summary | string | Short summary of changes vs. previous version. |
| diff_url | string | URL of the full diff. |
| diff_breaking | boolean | Whether the new version introduces breaking changes. |
| deployed_at | string |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://raw.githubusercontent.com/api-evangelist/bump-sh/main/json-schema/bump-sh-version-schema.json",
"title": "Version",
"description": "A documentation version published to Bump.sh.",
"type": "object",
"required": ["id"],
"properties": {
"id": {
"type": "string",
"format": "uuid"
},
"doc_id": {
"type": "string",
"format": "uuid",
"description": "Identifier of the documentation this version belongs to."
},
"doc_public_url": {
"type": "string",
"format": "uri",
"description": "Public URL of the rendered documentation."
},
"diff_summary": {
"type": "string",
"description": "Short summary of changes vs. previous version."
},
"diff_url": {
"type": "string",
"format": "uri",
"description": "URL of the full diff."
},
"diff_breaking": {
"type": "boolean",
"description": "Whether the new version introduces breaking changes."
},
"deployed_at": {
"type": "string",
"format": "date-time"
}
}
}