From 6784dcfb34e829a578edac6ab4a12ff9ab66491d Mon Sep 17 00:00:00 2001 From: CircleCI Date: Tue, 28 Jul 2020 02:34:38 +0000 Subject: [PATCH] JSON Schema Update --- config/v3/new_account_virtual/send.json | 45 +++++++++++++++++++++++++ config/v3/verify_email/send.json | 45 +++++++++++++++++++++++++ 2 files changed, 90 insertions(+) diff --git a/config/v3/new_account_virtual/send.json b/config/v3/new_account_virtual/send.json index f6a6e1300..15d87d99a 100644 --- a/config/v3/new_account_virtual/send.json +++ b/config/v3/new_account_virtual/send.json @@ -53,21 +53,66 @@ "mobile" ] }, + "utm_ad_id": { + "description": "[Optional] Identifier of particular ad", + "type": "string", + "pattern": "^[a-zA-Z0-9\\s\\-\\.\\_]{0,100}$" + }, + "utm_adgroup_id": { + "description": "[Optional] Identifier of ad group in the campaign", + "type": "string", + "pattern": "^[a-zA-Z0-9\\s\\-\\.\\_]{0,100}$" + }, + "utm_adrollclk_id": { + "description": "[Optional] Unique identifier of click on AdRoll ads platform", + "type": "string", + "pattern": "^[a-zA-Z0-9\\s\\-\\.\\_]{0,100}$" + }, "utm_campaign": { "description": "[Optional] Identifies a specific product promotion or strategic campaign such as a spring sale or other promotions.", "type": "string", "pattern": "^[a-zA-Z0-9\\s\\-\\.\\_]{0,100}$" }, + "utm_campaign_id": { + "description": "[Optional] Identifier of paid ad campaign", + "type": "string", + "pattern": "^[a-zA-Z0-9\\s\\-\\.\\_]{0,100}$" + }, + "utm_content": { + "description": "[Optional] Used to differentiate similar content, or links within the same ad", + "type": "string", + "pattern": "^[a-zA-Z0-9\\s\\-\\.\\_]{0,100}$" + }, + "utm_fbcl_id": { + "description": "[Optional] Unique identifier of click on Facebook ads platform", + "type": "string", + "pattern": "^[a-zA-Z0-9\\s\\-\\.\\_]{0,100}$" + }, + "utm_gl_client_id": { + "description": "[Optional] Unique visitor identifier on Google Ads platform.", + "type": "string", + "pattern": "^[a-zA-Z0-9\\s\\-\\.\\_]{0,100}$" + }, "utm_medium": { "description": "[Optional] Identifies the medium the link was used upon such as: email, CPC, or other methods of sharing.", "type": "string", "pattern": "^[a-zA-Z0-9\\s\\-\\.\\_]{0,100}$" }, + "utm_msclk_id": { + "description": "[Optional] Unique click identifier on Microsoft Bing ads platform.", + "type": "string", + "pattern": "^[a-zA-Z0-9\\s\\-\\.\\_]{0,100}$" + }, "utm_source": { "description": "[Optional] Identifies the source of traffic such as: search engine, newsletter, or other referral.", "type": "string", "pattern": "^[a-zA-Z0-9\\s\\-\\.\\_]{0,100}$" }, + "utm_term": { + "description": "[Optional] Used to send information related to the campaign term like paid search keywords", + "type": "string", + "pattern": "^[a-zA-Z0-9\\s\\-\\.\\_]{0,100}$" + }, "verification_code": { "description": "Email verification code (received from a `verify_email` call, which must be done first).", "type": "string", diff --git a/config/v3/verify_email/send.json b/config/v3/verify_email/send.json index e52299ccd..d3e30f9ea 100644 --- a/config/v3/verify_email/send.json +++ b/config/v3/verify_email/send.json @@ -54,20 +54,65 @@ "mobile" ] }, + "utm_ad_id": { + "description": "[Optional] Identifier of particular ad", + "type": "string", + "pattern": "^[a-zA-Z0-9\\s\\-\\.\\_]{0,100}$" + }, + "utm_adgroup_id": { + "description": "[Optional] Identifier of ad group in the campaign", + "type": "string", + "pattern": "^[a-zA-Z0-9\\s\\-\\.\\_]{0,100}$" + }, + "utm_adrollclk_id": { + "description": "[Optional] Unique identifier of click on AdRoll ads platform", + "type": "string", + "pattern": "^[a-zA-Z0-9\\s\\-\\.\\_]{0,100}$" + }, "utm_campaign": { "description": "[Optional] Identifies a specific product promotion or strategic campaign such as a spring sale or other promotions.", "type": "string", "pattern": "^[a-zA-Z0-9\\s\\-\\.\\_]{0,100}$" }, + "utm_campaign_id": { + "description": "[Optional] Identifier of paid ad campaign", + "type": "string", + "pattern": "^[a-zA-Z0-9\\s\\-\\.\\_]{0,100}$" + }, + "utm_content": { + "description": "[Optional] Used to differentiate similar content, or links within the same ad", + "type": "string", + "pattern": "^[a-zA-Z0-9\\s\\-\\.\\_]{0,100}$" + }, + "utm_fbcl_id": { + "description": "[Optional] Unique identifier of click on Facebook ads platform", + "type": "string", + "pattern": "^[a-zA-Z0-9\\s\\-\\.\\_]{0,100}$" + }, + "utm_gl_client_id": { + "description": "[Optional] Unique visitor identifier on Google Ads platform.", + "type": "string", + "pattern": "^[a-zA-Z0-9\\s\\-\\.\\_]{0,100}$" + }, "utm_medium": { "description": "[Optional] Identifies the medium the link was used upon such as: email, CPC, or other methods of sharing.", "type": "string", "pattern": "^[a-zA-Z0-9\\s\\-\\.\\_]{0,100}$" }, + "utm_msclk_id": { + "description": "[Optional] Unique click identifier on Microsoft Bing ads platform.", + "type": "string", + "pattern": "^[a-zA-Z0-9\\s\\-\\.\\_]{0,100}$" + }, "utm_source": { "description": "[Optional] Identifies the source of traffic such as: search engine, newsletter, or other referral.", "type": "string", "pattern": "^[a-zA-Z0-9\\s\\-\\.\\_]{0,100}$" + }, + "utm_term": { + "description": "[Optional] Used to send information related to the campaign term like paid search keywords", + "type": "string", + "pattern": "^[a-zA-Z0-9\\s\\-\\.\\_]{0,100}$" } } },