Wayfair configuration information
{ "$schema": "http://json-schema.org/draft-07/schema#", "$id": "https://raw.githubusercontent.com/api-evangelist/ordoro/refs/heads/main/json-schema/ordoro-cart_wayfair_vendor_config-schema.json", "title": "cart_wayfair_vendor_config", "type": "object", "definitions": { "required_to_create": { "required": [ "client_id", "client_secret" ] }, "required_in_response": { "required": [ "client_id", "client_secret", "locations", "dry_run" ] } }, "description": "Wayfair configuration information", "properties": { "client_id": { "type": "string" }, "client_secret": { "type": "string" }, "locations": { "type": "array", "items": { "type": "object", "properties": { "id": { "type": "int" }, "name": { "type": "string" } }, "required": [ "id", "name" ] } }, "dry_run": { "type": "boolean" } } }