{ "$schema": "http://json-schema.org/draft-07/schema#", "title": "strategy_response", "type": "object", "properties": { "data": { "allOf": [ { "type": "object", "properties": { "inherited_mfa_avoidance": { "type": "string", "description": "available if mfa_avoidance = INHERIT", "enum": [ "INHERIT", "ALLOW_ALL", "EXCLUDE_MFA" ] }, "inherited_mfa_from": { "type": "string", "description": "available if mfa_avoidance = INHERIT", "enum": [ "Organization", "Agency", "Advertiser", "Campaign", "Strategy" ] } } }, { "$ref": "#/components/schemas/strategy_campaign_info" }, { "$ref": "#/components/schemas/strategy_full_response" } ] }, "meta": { "$ref": "#/components/schemas/single_metadata" } } }