If I try ```ruby patch '/:id' do |id| content_type :json param :foo, Boolean, required: true end ``` And try to do a patch passing as body: ```json { "foo": true } ``` It raises 400 error. Am I doing anything wrong?