Is your feature request related to a problem? Please describe.
OpenApiTypeMapper.MapOpenApiPrimitiveTypeToSimpleType doesn't handle integers or numbers without a format.
Describe the solution you'd like
Add:
("integer", null, false)
("integer", null, true)
("number", null, false)
("number", null, true)
I'm not sure what types these should default to. Perhaps int + double.
Describe alternatives you've considered
copy/paste/update
Additional context
n/a