{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/SplitConfiguration", "title": "SplitConfiguration", "properties": { "description": { "description": "Your description for the split configuration.", "maxLength": 300, "type": "string" }, "rules": { "description": "Array of rules that define the split configuration behavior.", "items": { "$ref": "#/components/schemas/SplitConfigurationRule" }, "type": "array" }, "splitConfigurationId": { "description": "Unique identifier of the split configuration.", "readOnly": true, "type": "string" }, "stores": { "description": "List of stores to which the split configuration applies.", "items": { "type": "string" }, "readOnly": true, "type": "array" } }, "required": [ "description", "rules" ], "type": "object" }