We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6a465ae commit ff30b3eCopy full SHA for ff30b3e
modules/express/openapi-generator.rc.js
@@ -14,6 +14,7 @@ module.exports = (E) => {
14
NonEmptyString: () => E.right({ type: 'string', minLength: 1 }),
15
DateFromISOString: () => E.right({ type: 'string', format: 'date-time' }),
16
BigIntFromString: () => E.right({ type: 'string' }),
17
+ BooleanFromString: () => E.right({ type: 'string', enum: ['true', 'false'] }),
18
},
19
'io-ts-bigint': {
20
0 commit comments