I am working on an integration with FedEx API suite, specifically their rates & quotes endpoint. I have already registered the API endpoint in the API Gateway, but in order to make API calls I need to load the metadata of the calls supported by that endpoint. I have downloaded the official OpenAPI/Swagger schema JSON file from the FedEx developer portal, and it contains the definitions of the API POST call and the various data structures included in API requests and responses:

When I try to load this file from the Documentation tab I get the following error:

Swagger document is invalid -
Data and type mismatch found. #/components/schemas/BaseProcessOutputVO/example/rateReplyDetails/0/ratedShipmentDetails/0/totalDiscounts
Data and type mismatch found. #/components/schemas/BaseProcessOutputVO/example/rateReplyDetails/0/ratedShipmentDetails/0/totalVatCharge
Data and type mismatch found. #/components/schemas/BaseProcessOutputVO/example/rateReplyDetails/0/ratedShipmentDetails/0/totalDutiesAndTaxes
...
Basically, every entity defined in the metadata file is getting rejected.
Has anyone ever worked with FedEx APIs in ION before? Or perhaps has dealt with similar errors and knows how to fix them?
Thank you!