···11+---
22+"@hey-api/openapi-ts": minor
33+---
44+55+feat: add form type option for schemas
+13-1
docs/openapi-ts/configuration.md
···174174}
175175```
176176177177-If you're using OpenAPI v3.1, your schemas are JSON Schema compliant and can be used with any other tools supporting JSON Schema. However, if you don't need schemas at all, you can disable them with
177177+If you're using OpenAPI v3.1, your schemas are JSON Schema compliant and can be used with other tools supporting JSON Schema. However, if you only want to validate form input, you don't want to include string descriptions inside your bundle. Instead, use `form` type.
178178+179179+```js{5}
180180+export default {
181181+ input: 'path/to/openapi.json',
182182+ output: 'src/client',
183183+ schemas: {
184184+ type: 'form'
185185+ },
186186+}
187187+```
188188+189189+If you don't need schemas at all, you can disable them with
178190179191```js{4}
180192export default {