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