When I try this,
http://example.com/V3/OData/OData.svc/$metadata&$format=json
I get this error,
"A supported MIME type could not be found that matches the acceptable MIME types for the request. The supported type(s) 'application/xml' do not match any of the acceptable MIME types 'application/json;odata=verbose'."
But when I try to access an entity like below it works,
https://example.com/V3/OData/OData.svc/myExampleEntity?$format=json
Question
Why $format=json work with entities but not with metadata ?