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