{ "$schema": "http://json-schema.org/draft-07/schema#", "title": "RateItem", "x-source-schema": "Coyote.Systems.ExternalApi.Contracts.Models.Spot.RateItem", "type": "object", "properties": { "rateCode": { "$ref": "#/components/schemas/Coyote.Systems.ExternalApi.Contracts.Models.RateCode" }, "description": { "type": "string", "description": "Rate code description", "nullable": true }, "unitRate": { "type": "number", "description": "Unit amount of the rate line item.", "format": "double" }, "units": { "type": "number", "description": "Number of Units", "format": "double" }, "totalRate": { "type": "number", "description": "Total amount of the rate line item.", "format": "double" }, "currency": { "$ref": "#/components/schemas/Coyote.Systems.ExternalApi.Contracts.Models.Enums_Currency" } }, "additionalProperties": false, "description": "Rate line item that make up the quote" }