fork of hey-api/openapi-ts because I need some additional things
1openapi: 3.1.0
2info:
3 title: OpenAPI 3.1.0 time format example
4 version: '1'
5paths:
6 /search:
7 get:
8 summary: Search with time parameter
9 parameters:
10 - name: start_time
11 in: query
12 description: Start time in HH:MM:SS format
13 schema:
14 type: string
15 format: time
16 - name: end_time
17 in: query
18 description: End time in HH:MM:SS format
19 required: true
20 schema:
21 type: string
22 format: time
23 responses:
24 '200':
25 description: Success
26 content:
27 application/json:
28 schema:
29 type: object
30 properties:
31 result:
32 type: string
33 scheduled_time:
34 type: string
35 format: time