Writing contentComponentsEndpoint response snippetCopy pageUse the <EndpointResponseSnippet> component to reference an endpoint response from your API Reference. Usage Response1{2 "turns": [3 {4 "role": "user",5 "content": "string"6 }7 ],8 "citations": [9 "string"10 ]11} Markdown1<EndpointResponseSnippet endpoint="POST /chat/{domain}" /> Reference particular examples 1Set the example name in your specOpenAPIopenapi.yml1paths:2 /pet/{petId}:3 put:4 summary: Get a pet 5 operationId: pets_get6 responses: 7 '200': 8 content:9 application/json:10 schema:11 $ref: '#/components/schemas/Pet'12 examples:13 ExampleWithMarkley:14 summary: This is an example of a Pet15 value: 16 name: Markley17 id: 44Fern Definitionpets.yml1service:2 auth: true3 base-path: ""4 endpoints:5 update:6 docs: Get a pet7 method: GET8 path: /pet/{petId}9 response: Pet10 examples:11 - name: ExampleWithMarkley12 docs: This is an example of a Pet13 response:14 body: 15 name: Markley16 id: 442Directly reference the exampleMarkdown1 <EndpointResponseSnippet 2 endpoint="GET /pet/{petId}" 3 example="ExampleWithMarkley"4 />