{ "$schema": "https://json-structure.org/meta/core/v0/#", "$id": "https://raw.githubusercontent.com/api-evangelist/otter/refs/heads/main/json-structure/public-api-order-item-information-structure.json", "name": "OrderItemInformation", "description": "OrderItemInformation schema from Public API (Otter Public API).", "type": "object", "properties": { "id": { "type": "string", "description": "Regular item identifier.", "example": "store_123" }, "name": { "type": "string", "nullable": true, "description": "Item name", "example": "Sample Name" }, "issues": { "type": "array", "nullable": true, "description": "Order issues that relate to this item.", "items": { "$ref": "https://raw.githubusercontent.com/api-evangelist/otter/refs/heads/main/json-schema/public-api-order-issue-schema.json" } } }, "required": [ "id" ] }