{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/CatalogVariantDeleteJobCreateQueryResourceObject", "title": "CatalogVariantDeleteJobCreateQueryResourceObject", "type": "object", "properties": { "type": { "$ref": "#/components/schemas/CatalogVariantBulkDeleteJobEnum" }, "attributes": { "type": "object", "properties": { "variants": { "description": "Array of catalog variants to delete.", "type": "object", "properties": { "data": { "type": "array", "items": { "$ref": "#/components/schemas/CatalogVariantDeleteQueryResourceObject" } } }, "required": [ "data" ] } }, "required": [ "variants" ] } }, "required": [ "type", "attributes" ] }