{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/magic_app_config_add_single_request", "title": "magic_app_config_add_single_request", "allOf": [ { "oneOf": [ { "properties": { "account_app_id": { "$ref": "#/components/schemas/magic_account_app_id" } }, "required": [ "account_app_id" ], "title": "Account App" }, { "properties": { "managed_app_id": { "$ref": "#/components/schemas/magic_managed_app_id" } }, "required": [ "managed_app_id" ], "title": "Managed App" } ] }, { "anyOf": [ { "required": [ "breakout" ], "title": "Breakout" }, { "required": [ "priority" ], "title": "Prioritize" } ] }, { "properties": { "breakout": { "$ref": "#/components/schemas/magic_app_breakout" }, "priority": { "$ref": "#/components/schemas/magic_app_priority" } } } ], "type": "object" }