format=concise is sent as a request body, so it never takes effect - #2
Merged
Merged
Conversation
The "Read a Data Entity (concise)" request uses
curl -L -X GET ... -d 'format=concise'
Without `-G`, curl puts `-d` data in the request BODY. `-X GET` overrides the
method, so what goes out is a GET with an empty query string and `format=concise`
in a body that the broker does not read. The response is therefore normalized,
while the block below it shows concise.
Visible in a captured run of this page against a broker: the same entity, the
same nominal parameter, `-L` returned normalized and `-G` returned concise.
The rest of the page already uses `curl -G -X GET` for parameterised GETs; this
one request was missed.
Co-Authored-By: Claude Opus 5 (1M context) <noreply@anthropic.com>
jason-fox
approved these changes
Sep 21, 2026
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.
Step 6️⃣, "Read a Data Entity (concise)":
Without
-G, curl puts-ddata in the request body.-X GEToverrides the method, so what goes out is aGETwith an empty query string andformat=concisein a body no broker reads. The response is therefore normalized, while the block below it shows concise.Visible in a captured run of this page: the same entity, the same nominal parameter — the
-Lform returned normalized, the-Gform further down the page returned concise.The rest of the page already uses
curl -G -X GETfor parameterised GETs; this one request was missed. Same class as FIWARE/tutorials.Context-Providers#23.🤖 Generated with Claude Code