Request body Content is declared as
IDictionary<string, OpenApiMediaType>?
I believe it should be
IDictionary<string, OpenApiMediaType?>?
Reasoning: in the spec none of the properties of media type are required, so you could perfectly have the request body be simply
content:
- application/octet-stream:
Validated with @darrelmiller on an internal conversation.