{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/productVariant_Put", "title": "productVariant_Put", "description": "The model for a PUT to update variants on a product.", "allOf": [ { "$ref": "#/components/schemas/productVariant_Base" }, { "type": "object", "properties": { "product_id": { "type": "integer", "x-required": [ "post" ] }, "sku": { "maxLength": 255, "minLength": 1, "type": "string", "x-required": [ "post" ] } } } ], "x-internal": false }