You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Feb 6, 2026. It is now read-only.
When using --output json with commands that support pagination (like page list), the pagination message "(showing first N results, use --limit to see more)" is appended after the JSON array, making the output invalid JSON.
Description
When using
--output jsonwith commands that support pagination (likepage list), the pagination message "(showing first N results, use --limit to see more)" is appended after the JSON array, making the output invalid JSON.Steps to Reproduce
Expected Result
Pure JSON output that can be parsed by jq:
[ {"id": "123", "status": "current", "title": "Page 1", "version": "v1"}, {"id": "456", "status": "current", "title": "Page 2", "version": "v1"} ]Actual Result
[ {"id": "123", "status": "current", "title": "Page 1", "version": "v1"}, {"id": "456", "status": "current", "title": "Page 2", "version": "v1"} ] (showing first 3 results, use --limit to see more)jq fails to parse with:
parse error: Invalid numeric literalSuggested Fix
The pagination message should:
--output jsonis used, OREnvironment