{ "$schema": "https://json-structure.org/meta/core/v0/#", "$id": "https://raw.githubusercontent.com/api-evangelist/otter/refs/heads/main/json-structure/public-api-create-shipment-request-structure.json", "name": "CreateShipmentRequest", "description": "CreateShipmentRequest schema from Public API (Otter Public API).", "type": "object", "properties": { "deliveryInfo": { "$ref": "https://raw.githubusercontent.com/api-evangelist/otter/refs/heads/main/json-schema/public-api-shipment-delivery-info-schema.json" }, "lineItems": { "type": "array", "description": "A list of the shipment line items.", "items": { "$ref": "https://raw.githubusercontent.com/api-evangelist/otter/refs/heads/main/json-schema/public-api-create-shipment-line-item-schema.json" } } }, "required": [ "deliveryInfo", "lineItems" ] }