The JSON Schema - https://spec.openapis.org/oas/3.0/schema/2021-09-28#/definitions/Response/required for the OpenAPI specification marks `description` as a required property but then allows it to be an empty string. This is causing some strange use cases in validators where people are just adding `description: ""` to get around the error returned. I would propose either this is removed from being a required property or the property has a min length added (can even just be `minLength: 1`) Thoughts?