fork of hey-api/openapi-ts because I need some additional things
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

at feat/use-query-options 28 lines 802 B view raw
1openapi: 3.0.0 2info: 3 title: Redfish-like API 4 version: '1.0.0' 5 description: Test API simulating Redfish structure with versioned schemas 6paths: 7 /redfish/v1/Systems: 8 get: 9 summary: Get Systems 10 responses: 11 '200': 12 description: Success 13 content: 14 application/json: 15 schema: 16 $ref: 'ResolutionStep.v1_0_1.yaml#/components/schemas/ResolutionStep_v1_0_1_ResolutionStep' 17 default: 18 description: Error 19 /redfish/v1/Actions: 20 post: 21 summary: Submit Action 22 responses: 23 '200': 24 description: Success 25 content: 26 application/json: 27 schema: 28 $ref: 'ResolutionStep.v1_0_1.yaml#/components/schemas/ResolutionStep_v1_0_1_ActionParameters'