{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/ShippingRateRate", "title": "ShippingRateRate", "properties": { "amount": { "type": "number" }, "base_amount": { "type": "number" }, "currency": { "type": "string" }, "delivery_days": { "type": "number" }, "delivery_terms": { "type": "string" }, "description": { "type": "string" }, "discount_amount": { "type": "number" }, "estimated_days": { "type": "number" }, "estimated_delivery_end_at": { "format": "date-time", "type": "string" }, "estimated_delivery_start_at": { "format": "date-time", "type": "string" }, "is_active": { "type": "boolean" }, "is_guaranteed": { "type": "boolean" }, "is_negotiated_rate": { "type": "boolean" }, "is_trackable": { "type": "boolean" }, "package_type": { "type": "string" }, "rate_source": { "type": "string" }, "surcharges": { "$ref": "#/components/schemas/property_ShippingRateRate_surcharges" }, "tax_amount": { "type": "number" }, "title": { "type": "string" }, "transit_hours": { "type": "number" } }, "required": [ "title" ], "type": "object" }