We are facing an issue with OpenAPI examples when exporting from Apidog.
We import our examples using named keys, like this:
examples: Equity: value: status: SUCCESS reason: getting order details success ... Option-single leg: value: status: SUCCESS reason: getting order details success ...
This format is valid in OpenAPI 3.0, and it works correctly inside Apidog.
Problem
When we export the OpenAPI file from Apidog, our named example keys (Equity, Option-single leg) are being replaced with numeric keys:
examples: "1": { ... } "2": { ... }
This breaks our documentation because our system relies on the original keys (Equity, Option-single leg, Fund, etc.).
What We Need
Is there a way to:
Preserve the original example keys when exporting?
Prevent Apidog from renaming them to numeric IDs?