{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/ItemReferenceId", "title": "ItemReferenceId", "type": "object", "properties": { "type": { "type": "string", "description": "The reference type.", "enum": [ "ORDER_PRODUCT" ] }, "value": { "type": "string", "description": "The value identifying the returned item." } }, "required": [ "type", "value" ], "x-internal": false }