Add docs-only JSON schema with version annotations#4414
Merged
Conversation
4 tasks
pietern
approved these changes
Feb 5, 2026
Collaborator
|
Commit: eadca40
60 interesting tests: 30 flaky, 13 FAIL, 7 KNOWN, 5 SKIP, 5 RECOVERED
Top 50 slowest tests (at least 2 minutes):
|
denik
pushed a commit
that referenced
this pull request
May 20, 2026
## Summary This PR adds a documentation-optimized JSON schema (`jsonschema_for_docs.json`) that: - Removes variable interpolation patterns for easier parsing - Adds `x-since-version` annotations by analyzing git history to track when fields were introduced - Provides a cleaner schema for documentation generation ## Changes - Add `since_version.go` to compute version annotations from git tags - Generate `jsonschema_for_docs.json` with `--docs` flag - Update Makefile with `schema-for-docs` target ## Test plan - [x] Unit tests pass - [x] Schema generates correctly with version annotations 🤖 Generated with [Claude Code](https://claude.com/claude-code)
artchen-db
pushed a commit
to artchen-db/cli
that referenced
this pull request
Jun 18, 2026
…5568) `bundle/docsgen` (added in databricks#2033) generated the DABs configuration reference markdown. It has been superseded by the docs-only JSON schema added in databricks#4414 (`bundle/schema/jsonschema_for_docs.json`), which is now the source of truth for the published documentation; docsgen's output is no longer consumed anywhere. This removes the package along with its call sites and references across the repository. This pull request and its description were written by Isaac.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
This PR adds a documentation-optimized JSON schema (
jsonschema_for_docs.json) that:x-since-versionannotations by analyzing git history to track when fields were introducedChanges
since_version.goto compute version annotations from git tagsjsonschema_for_docs.jsonwith--docsflagschema-for-docstargetTest plan
🤖 Generated with Claude Code