Allow Using summary as Example Key When Exporting OpenAPI Examples

In OpenAPI 3.x, the examples object supports named example keys such as:

examples:
Equity:
summary: Equity
value: { … }
Option:
summary: Option
value: { … }

However, when exporting from Apidog, the example keys are being converted into numeric IDs:

examples:
“1”: { … }
“2”: { … }
“3”: { … }

This breaks our naming convention and makes the exported spec harder to read and maintain.

Is there a way to use the example’s summary value as the example key during export (e.g., key = “Equity”, “Option”, etc.)?