{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/FlowTrackingSettingDynamicParam", "title": "FlowTrackingSettingDynamicParam", "type": "object", "properties": { "type": { "description": "The type of the tracking parameter", "type": "string", "enum": [ "dynamic" ] }, "value": { "description": "The value of the tracking parameter", "type": "string", "enum": [ "email_subject", "flow_id", "flow_name", "link_alt_text", "message_name", "message_name_id", "message_type", "profile_external_id", "profile_id" ] } }, "required": [ "type", "value" ] }