Shipping information.
{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/Shipping", "title": "Shipping", "description": "Shipping information.", "required": [ "value", "estimatedDate", "address" ], "type": "object", "properties": { "value": { "type": "number", "description": "Shipping value with two decimal places.", "example": 8.41 }, "estimatedDate": { "type": "string", "description": "Estimated shipping date ISO 8601.", "example": "2017-08-02T14:46:47" }, "address": { "$ref": "#/components/schemas/Address" } } }