openapi: 3.1.0 info: title: OpenAPI 3.1.0 const values example version: '1' components: schemas: NumberNoFormat: type: number const: 42.5 IntegerNoFormat: type: integer const: -1 NumberInt8: type: number format: int8 const: 100 NumberInt16: type: number format: int16 const: 1000 NumberInt32: type: number format: int32 const: 100000 NumberInt64: type: number format: int64 const: 1000000000000 NumberUint8: type: number format: uint8 const: 200 NumberUint16: type: number format: uint16 const: 50000 NumberUint32: type: number format: uint32 const: 3000000000 NumberUint64: type: number format: uint64 const: 18000000000000000000 IntegerInt8: type: integer format: int8 const: -100 IntegerInt16: type: integer format: int16 const: -1000 IntegerInt32: type: integer format: int32 const: -100000 IntegerInt64: type: integer format: int64 const: -1000000000000 IntegerUint8: type: integer format: uint8 const: 255 IntegerUint16: type: integer format: uint16 const: 65535 IntegerUint32: type: integer format: uint32 const: 4294967295 IntegerUint64: type: integer format: uint64 const: 1000000000000 StringInt64: type: string format: int64 const: '-9223372036854775808' StringUint64: type: string format: uint64 const: '18446744073709551615' StringInt64n: type: string format: int64 const: '-9223372036854775808n' StringUint64n: type: string format: uint64 const: '18446744073709551615n'