{ "$schema": "https://json-structure.org/meta/core/v0/#", "$id": "https://raw.githubusercontent.com/api-evangelist/3m/refs/heads/main/json-structure/3m-partner-supplier-api-order-item-structure.json", "name": "OrderItem", "description": "A line item within an order", "type": "object", "properties": { "productId": { "type": "string", "description": "Product identifier", "example": "PROD-12345" }, "quantity": { "type": "int32", "description": "Quantity ordered", "example": 20 }, "unitPrice": { "type": "double", "description": "Unit price at time of order", "example": 24.99 } } }