Add structured {valid, issues} JSON contract for app config validate#7128
Open
ryancbahan wants to merge 1 commit intoryan/structured-app-errorsfrom
Open
Add structured {valid, issues} JSON contract for app config validate#7128ryancbahan wants to merge 1 commit intoryan/structured-app-errorsfrom
ryancbahan wants to merge 1 commit intoryan/structured-app-errorsfrom
Conversation
Contributor
|
We detected some changes at Caution DO NOT create changesets for features which you do not wish to be included in the public changelog of the next CLI release. |
Contributor
Author
|
Warning This pull request is not mergeable via GitHub because a downstack PR is open. Once all requirements are satisfied, merge this PR as a stack on Graphite.
This stack of pull requests is managed by Graphite. Learn more about stacking. |
f040fae to
14a803b
Compare
14a803b to
aacac17
Compare
768157b to
3249375
Compare
isaacroldan
approved these changes
Mar 31, 2026
dmerand
approved these changes
Mar 31, 2026
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
aacac17 to
6c8d2ed
Compare
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.

What
Change
app config validate --jsonoutput from flat error strings to structured issue objects.Why
Machine consumers (automation, repair loops, IDE integrations) need file paths, field paths, and error codes — not pre-rendered human-readable strings. This is the public contract that #7090 aimed to deliver.
How
JSON output shape changes from:
{"valid": false, "errors": ["client_id is required", "invalid type \"unknown\""]}to:
{"valid": false, "issues": [ {"file": "shopify.app.toml", "message": "Required", "path": ["client_id"], "code": "invalid_type"}, {"file": "extensions/my-ext/shopify.extension.toml", "message": "invalid type \"unknown\""} ]}valid: truecase:{valid: true, issues: []}(waserrors: [])valid: falsecase: each issue hasfile,message, and optionalpath/codefrom Zod validationDepends on #7126 which provides the structured
ConfigurationErrordata that flows directly into the JSON shape.