{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/Rate", "title": "Rate", "type": "object", "properties": { "additionalOptions": { "type": "array", "description": "Contains service and pricing information for one or more shipping options that are offered by the carrier and can be purchased in addition to the base shipping service provided by this rate. Shipping options can include items such as INSURANCE and SIGNATURE.", "items": { "$ref": "#/components/schemas/AdditionalOption" } }, "baseShippingCost": { "description": "A live quote for the cost that the carrier (identified by shippingCarrierCode) is charging for the shipping service being offered (identified by shippingServiceCode), excluding any additional shipping options.", "$ref": "#/components/schemas/Amount" }, "destinationTimeZone": { "type": "string", "description": "The name of the time zone region, as defined in the IANA Time Zone Database, to which the package is being shipped.

Delivery dates are calculated relative to this time zone.

Note: This is different from a Coordinated Universal Time (UTC) offset. For example, the America/Los_Angeles time zone identifies a region with the UTC standard time offset of -08:00, but so do several other time zones, including America/Tijuana,America/Dawson, and Pacific/Pitcairn." }, "maxEstimatedDeliveryDate": { "type": "string", "description": "The latest stated date and time the shipment will be delivered at this rate.

The time stamp is formatted as an ISO 8601 string, which is based on the 24-hour Coordinated Universal Time (UTC) clock.

Format: [YYYY]-[MM]-[DD]T[hh]:[mm]:[ss].[sss]Z
Example: 2018-08-20T07:09:00.000Z" }, "minEstimatedDeliveryDate": { "type": "string", "description": "The estimated earliest date and time the shipment will be delivered at this rate. The time stamp is formatted as an ISO 8601 UTC string." }, "pickupNetworks": { "type": "array", "description": "A list of pickup networks compatible with the shipping service.", "items": { "type": "string" } }, "pickupSlots": { "type": "array", "description": "A list of available pickup slots for the package.", "items": { "$ref": "#/components/schemas/PickupSlot" } }, "pickupType": { "type": "string", "description": "The type of pickup or drop-off service associated with the pickupSlots time frames. For implementation help, refer to eBay API documentation" }, "rateId": { "type": "string", "description": "The unique eBay-assigned ID for this shipping rate." }, "rateRecommendation": { "type": "array", "description": "A list of reasons this rate is recommended. Available values are: ", "items": { "type": "string", "description": " For implementation help, refer to eBay API documentation" } }, "shippingCarrierCode": { "type": "string", "description": "The code name of the shipping carrier who will provide the service identified by shippingServiceCode." }, "shippingCarrierName": { "type": "string", "description": "The common name of the shipping carrier." }, "shippingServiceCode": { "type": "string", "description": "The code name of the shipping service to be provided by the carrier identified by shippingCarrierCode." }, "shippingServiceName": { "type": "string", "description": "The common name of the shipping service." } }, "description": "This complex type contains live quote information about a shipping service that's available for a given shipping quote request, including the shipping carrier and service, delivery window, shipping cost, and additional shipping options." }