docs(rest/python): align discovery response example - #212
Open
FanouZeng-TT wants to merge 1 commit into
Open
Conversation
niranjanmanjunath
approved these changes
Aug 26, 2026
niranjanmanjunath
left a comment
There was a problem hiding this comment.
(nit) While not strictly blocking, adding "use": "sig" and "alg": "ES256" to the README example would make it an exact 1:1 match with the server's actual HTTP output.
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.
Description
The Discovery section of
rest/python/server/README.mdlabels its JSON blockas the response returned by
/.well-known/ucp, but the example still uses theold profile layout:
services.dev.ucp.shoppingis an object instead of a transport-entry array;capabilitiesis an array instead of a capability-name map;ucpunderpayment.handlers.The route now serves
routes/discovery_profile.json, with dynamicsigning_keysanducp.keysadded at request time. Its response uses thecurrent
ucp.services,ucp.capabilities, anducp.payment_handlersshapes.Fix: update the documented response to match the live endpoint, using
explicit placeholders for runtime-generated shop and signing-key values.
Category (Required)
Related Issues
N/A
Checklist
Screenshots / Logs (if applicable)
GET /.well-known/ucpthrough the FastAPI test client returned 200 withpublic, max-age=3600; verified its services, capabilities, payment handlers,and signing-key container shapes.
endpoint, and runtime-generated-value placeholders.
git diff --checkpass.