Traffic decision configuration for an app.
{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/magic_app_config", "title": "magic_app_config", "allOf": [ { "properties": { "breakout": { "$ref": "#/components/schemas/magic_app_breakout" }, "id": { "$ref": "#/components/schemas/magic_identifier" }, "priority": { "$ref": "#/components/schemas/magic_app_priority" }, "site_id": { "$ref": "#/components/schemas/magic_identifier" } }, "required": [ "id", "site_id" ] }, { "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" } ] } ], "description": "Traffic decision configuration for an app.", "type": "object" }