In Redocly, how is it possible to reference an external file in an x-codeSamples tag? The Redocly reference guide: https://redoc.ly/docs/api-reference-docs/vendor-extensions/redoc-supported-extensions/#x-codesamples
In the following example, the first case ('Example request') renders properly. The second case ('Schema'), renders only as "[object object]". Does this tag support $ref statements?
x-codeSamples:
- lang: 'Example request'
source: |
PetStore.v1.Pet pet = new PetStore.v1.Pet();
pet.setApiKey("your api key");
- lang: 'Schema'
source:
$ref: ../components/schemas/Test_schema.yaml
See also: Is there a way to import test files into redoc x-codeSamples source field?
The following should do the trick: