OpenAPI response links allow parameters to use response body runtime expressions with JSON Pointers, for example $response.body#/data/0/id.
The converter currently turns only the first slash into a dot, so nested pointers, array indexes, escaped segments (~1, ~0), and non-identifier property names can generate invalid or incorrect Bruno response scripts.
I am opening a PR that parses the pointer into script-safe property access.
OpenAPI response links allow parameters to use response body runtime expressions with JSON Pointers, for example
$response.body#/data/0/id.The converter currently turns only the first slash into a dot, so nested pointers, array indexes, escaped segments (
~1,~0), and non-identifier property names can generate invalid or incorrect Bruno response scripts.I am opening a PR that parses the pointer into script-safe property access.