{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/wishlistItem_Post", "title": "wishlistItem_Post", "type": "object", "properties": { "items": { "type": "array", "items": { "type": "object", "properties": { "product_id": { "type": "integer", "example": 12 }, "variant_id": { "type": "integer", "example": 152 } } } } }, "x-examples": { "example-1": { "items": [ { "product_id": 12, "variant_id": 152 } ] } } }