{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/MultiBranchSplitBranch", "title": "MultiBranchSplitBranch", "type": "object", "properties": { "branch_id": { "type": "string" }, "order": { "type": "integer", "nullable": true }, "is_else": { "type": "boolean", "default": false }, "branch_filter": { "type": "object", "nullable": true, "properties": { "condition_groups": { "type": "array", "items": { "type": "object", "properties": { "conditions": { "type": "array", "items": { "oneOf": [ { "$ref": "#/components/schemas/ProfilePropertyCondition" }, { "$ref": "#/components/schemas/ProfileHasGroupMembershipCondition" }, { "$ref": "#/components/schemas/ProfileNoGroupMembershipCondition" }, { "$ref": "#/components/schemas/ProfileRegionCondition" }, { "$ref": "#/components/schemas/ProfilePostalCodeDistanceCondition" }, { "$ref": "#/components/schemas/ProfilePredictiveAnalyticsDateCondition" }, { "$ref": "#/components/schemas/ProfilePredictiveAnalyticsStringCondition" }, { "$ref": "#/components/schemas/ProfilePredictiveAnalyticsNumericCondition" }, { "$ref": "#/components/schemas/ProfileMarketingConsentCondition" }, { "$ref": "#/components/schemas/FlowsProfileMetricCondition" }, { "$ref": "#/components/schemas/ProfileRandomSampleCondition" }, { "$ref": "#/components/schemas/ProfileHasCustomObjectCondition" }, { "$ref": "#/components/schemas/ProfilePermissionsCondition" }, { "$ref": "#/components/schemas/MetricPropertyCondition" }, { "$ref": "#/components/schemas/CustomObjectTriggerCondition" } ] } } }, "required": [ "conditions" ] } } }, "required": [ "condition_groups" ] }, "links": { "$ref": "#/components/schemas/Link", "nullable": true }, "name": { "type": "string", "nullable": true } }, "required": [ "branch_id" ] }