Magento 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_magento_vendor_config-schema.json", "title": "cart_magento_vendor_config", "type": "object", "definitions": { "required_to_create": { "required": [ "url", "username", "key" ] }, "required_in_response": { "required": [ "url", "username", "key", "shipment_email", "store_ids" ] } }, "description": "Magento configuration information", "properties": { "url": { "type": "string", "format": "uri" }, "username": { "type": "string" }, "key": { "type": "string" }, "shipment_email": { "type": "bool" }, "store_ids": { "type": "array", "items": { "type": "string" } } } }