Hello! ``` - description: Checkin date in: query name: checkin_at # todo: required do not work if format: date required: true schema: type: string format: date ``` if i comment `format: date` the generated code will require the field. If I use `format: date` I get: ``` CheckinAt openapi_types.Date `form:"checkin_at" json:"checkin_at"` ``` If I dont: ``` CheckinAt string `form:"checkin_at" json:"checkin_at"` ```