fork of hey-api/openapi-ts because I need some additional things
1openapi: 3.1.0
2info:
3 title: OpenAPI 3.1.0 const values example
4 version: '1'
5components:
6 schemas:
7 NumberNoFormat:
8 type: number
9 const: 42.5
10 IntegerNoFormat:
11 type: integer
12 const: -1
13 NumberInt8:
14 type: number
15 format: int8
16 const: 100
17 NumberInt16:
18 type: number
19 format: int16
20 const: 1000
21 NumberInt32:
22 type: number
23 format: int32
24 const: 100000
25 NumberInt64:
26 type: number
27 format: int64
28 const: 1000000000000
29 NumberUint8:
30 type: number
31 format: uint8
32 const: 200
33 NumberUint16:
34 type: number
35 format: uint16
36 const: 50000
37 NumberUint32:
38 type: number
39 format: uint32
40 const: 3000000000
41 NumberUint64:
42 type: number
43 format: uint64
44 const: 18000000000000000000
45 IntegerInt8:
46 type: integer
47 format: int8
48 const: -100
49 IntegerInt16:
50 type: integer
51 format: int16
52 const: -1000
53 IntegerInt32:
54 type: integer
55 format: int32
56 const: -100000
57 IntegerInt64:
58 type: integer
59 format: int64
60 const: -1000000000000
61 IntegerUint8:
62 type: integer
63 format: uint8
64 const: 255
65 IntegerUint16:
66 type: integer
67 format: uint16
68 const: 65535
69 IntegerUint32:
70 type: integer
71 format: uint32
72 const: 4294967295
73 IntegerUint64:
74 type: integer
75 format: uint64
76 const: 1000000000000
77 StringInt64:
78 type: string
79 format: int64
80 const: '-9223372036854775808'
81 StringUint64:
82 type: string
83 format: uint64
84 const: '18446744073709551615'
85 StringInt64n:
86 type: string
87 format: int64
88 const: '-9223372036854775808n'
89 StringUint64n:
90 type: string
91 format: uint64
92 const: '18446744073709551615n'