{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/alliance-data-systems/main/json-schema/bread-classic-shipping-schema.json", "title": "BreadClassicShipping", "description": "Carrier and tracking-number fulfillment details attached to a Bread Classic transaction.", "type": "object", "required": ["carrier", "trackingNumber"], "properties": { "carrier": { "type": "string" }, "trackingNumber": { "type": "string" }, "shippedAt": { "type": "string", "format": "date-time" } } }