{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/ProductOption", "title": "Product Option", "type": "object", "x-internal": false, "properties": { "name": { "type": "string", "description": "The product option name; for example, Color or Size." }, "nameId": { "type": "number", "description": "The product option identifier." }, "value": { "type": "string", "description": "The product option value; for example, Red or Medium." }, "valueId": { "type": "number", "description": "The product option value identifier in number format.", "example": 128 } } }