@devrev-computer/skills 1.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +37 -0
- package/bin/install.mjs +158 -0
- package/package.json +33 -0
- package/skills/account-evaluation/account-evaluation.md +64 -0
- package/skills/account-research/account-research.md +323 -0
- package/skills/account-research/references/signals-guide.md +52 -0
- package/skills/create-workflow-template/create-workflow-template.md +1091 -0
- package/skills/create-workflow-template/examples/3592-Generate rca from pia-template.json +1 -0
- package/skills/create-workflow-template/examples/4392-Async opportunity review agent-template.json +1 -0
- package/skills/create-workflow-template/examples/4441-Ticket escalator from customer message-template.json +1 -0
- package/skills/create-workflow-template/examples/4505-Auto-update issue tcd as end of sprint date-template.json +1 -0
- package/skills/create-workflow-template/examples/5040-Devrevu - enablement journey - poc emails-template.json +1 -0
- package/skills/create-workflow-template/examples/5158-Devrevu - enablement journey - mailing for non enablement journey users-template.json +1 -0
- package/skills/create-workflow-template/examples/5216-Account segment missing notification-template.json +1 -0
- package/skills/create-workflow-template/examples/working-csat-score-on-ticket-resolved.json +1 -0
- package/skills/create-workflow-template/examples/working-enhancement-replace-agent.json +1 -0
- package/skills/create-workflow-template/examples/working-invoke-code-sample.json +1 -0
- package/skills/create-workflow-template/examples/working-loop-variable-sample.json +1 -0
- package/skills/create-workflow-template/operations/actions.md +2919 -0
- package/skills/create-workflow-template/operations/blockings.md +38 -0
- package/skills/create-workflow-template/operations/controls.md +108 -0
- package/skills/create-workflow-template/operations/schema-index.md +166 -0
- package/skills/create-workflow-template/operations/schemas/account_created.md +58 -0
- package/skills/create-workflow-template/operations/schemas/account_updated.md +73 -0
- package/skills/create-workflow-template/operations/schemas/add_comment.md +29 -0
- package/skills/create-workflow-template/operations/schemas/airdrop_sync_run_started.md +33 -0
- package/skills/create-workflow-template/operations/schemas/airdrop_sync_run_status_updated.md +35 -0
- package/skills/create-workflow-template/operations/schemas/article_created.md +96 -0
- package/skills/create-workflow-template/operations/schemas/article_updated.md +135 -0
- package/skills/create-workflow-template/operations/schemas/ask_ai.md +11 -0
- package/skills/create-workflow-template/operations/schemas/classify_object.md +22 -0
- package/skills/create-workflow-template/operations/schemas/contact_created.md +43 -0
- package/skills/create-workflow-template/operations/schemas/contact_updated.md +65 -0
- package/skills/create-workflow-template/operations/schemas/conversation_created.md +108 -0
- package/skills/create-workflow-template/operations/schemas/conversation_sla_tracker_updated.md +46 -0
- package/skills/create-workflow-template/operations/schemas/conversation_updated.md +130 -0
- package/skills/create-workflow-template/operations/schemas/convert_conversation_to_ticket.md +13 -0
- package/skills/create-workflow-template/operations/schemas/create_account.md +62 -0
- package/skills/create-workflow-template/operations/schemas/create_article.md +79 -0
- package/skills/create-workflow-template/operations/schemas/create_brand.md +42 -0
- package/skills/create-workflow-template/operations/schemas/create_contact.md +65 -0
- package/skills/create-workflow-template/operations/schemas/create_dm.md +53 -0
- package/skills/create-workflow-template/operations/schemas/create_enhancement.md +63 -0
- package/skills/create-workflow-template/operations/schemas/create_incident.md +136 -0
- package/skills/create-workflow-template/operations/schemas/create_issue.md +150 -0
- package/skills/create-workflow-template/operations/schemas/create_meeting.md +105 -0
- package/skills/create-workflow-template/operations/schemas/create_opportunity.md +123 -0
- package/skills/create-workflow-template/operations/schemas/create_ticket.md +184 -0
- package/skills/create-workflow-template/operations/schemas/csat_response_received.md +73 -0
- package/skills/create-workflow-template/operations/schemas/dev_user_created.md +54 -0
- package/skills/create-workflow-template/operations/schemas/dev_user_updated.md +99 -0
- package/skills/create-workflow-template/operations/schemas/enhancement_created.md +46 -0
- package/skills/create-workflow-template/operations/schemas/enhancement_updated.md +89 -0
- package/skills/create-workflow-template/operations/schemas/evaluate_sentiment.md +14 -0
- package/skills/create-workflow-template/operations/schemas/execute_metric_action.md +11 -0
- package/skills/create-workflow-template/operations/schemas/feature_created.md +40 -0
- package/skills/create-workflow-template/operations/schemas/for_each.md +45 -0
- package/skills/create-workflow-template/operations/schemas/get_account.md +59 -0
- package/skills/create-workflow-template/operations/schemas/get_airdrop_sync_unit.md +32 -0
- package/skills/create-workflow-template/operations/schemas/get_brand.md +40 -0
- package/skills/create-workflow-template/operations/schemas/get_complete_enhancement_details.md +13 -0
- package/skills/create-workflow-template/operations/schemas/get_conversation.md +120 -0
- package/skills/create-workflow-template/operations/schemas/get_customer.md +60 -0
- package/skills/create-workflow-template/operations/schemas/get_enhancement.md +66 -0
- package/skills/create-workflow-template/operations/schemas/get_feature.md +56 -0
- package/skills/create-workflow-template/operations/schemas/get_incident.md +85 -0
- package/skills/create-workflow-template/operations/schemas/get_issue.md +117 -0
- package/skills/create-workflow-template/operations/schemas/get_kg_schema.md +23 -0
- package/skills/create-workflow-template/operations/schemas/get_meeting.md +87 -0
- package/skills/create-workflow-template/operations/schemas/get_metric_trackers.md +20 -0
- package/skills/create-workflow-template/operations/schemas/get_node_schema.md +29 -0
- package/skills/create-workflow-template/operations/schemas/get_opportunity.md +93 -0
- package/skills/create-workflow-template/operations/schemas/get_org_user.md +57 -0
- package/skills/create-workflow-template/operations/schemas/get_org_user_preference.md +40 -0
- package/skills/create-workflow-template/operations/schemas/get_part.md +55 -0
- package/skills/create-workflow-template/operations/schemas/get_self.md +54 -0
- package/skills/create-workflow-template/operations/schemas/get_session_details.md +45 -0
- package/skills/create-workflow-template/operations/schemas/get_sprint_board.md +103 -0
- package/skills/create-workflow-template/operations/schemas/get_ticket.md +136 -0
- package/skills/create-workflow-template/operations/schemas/get_workspace.md +21 -0
- package/skills/create-workflow-template/operations/schemas/go_back.md +13 -0
- package/skills/create-workflow-template/operations/schemas/http.md +38 -0
- package/skills/create-workflow-template/operations/schemas/hybrid_search.md +144 -0
- package/skills/create-workflow-template/operations/schemas/if_else.md +16 -0
- package/skills/create-workflow-template/operations/schemas/incident_created.md +88 -0
- package/skills/create-workflow-template/operations/schemas/incident_updated.md +126 -0
- package/skills/create-workflow-template/operations/schemas/init_variable.md +67 -0
- package/skills/create-workflow-template/operations/schemas/invoice_created.md +21 -0
- package/skills/create-workflow-template/operations/schemas/invoice_updated.md +41 -0
- package/skills/create-workflow-template/operations/schemas/invoke_code.md +132 -0
- package/skills/create-workflow-template/operations/schemas/issue_created.md +105 -0
- package/skills/create-workflow-template/operations/schemas/issue_sla_tracker_updated.md +46 -0
- package/skills/create-workflow-template/operations/schemas/issue_updated.md +172 -0
- package/skills/create-workflow-template/operations/schemas/link_incident_with_issue.md +14 -0
- package/skills/create-workflow-template/operations/schemas/link_ticket_with_issue.md +14 -0
- package/skills/create-workflow-template/operations/schemas/list_enhancements.md +74 -0
- package/skills/create-workflow-template/operations/schemas/list_issues.md +108 -0
- package/skills/create-workflow-template/operations/schemas/list_sessions.md +79 -0
- package/skills/create-workflow-template/operations/schemas/list_sprint.md +29 -0
- package/skills/create-workflow-template/operations/schemas/list_web_sessions.md +87 -0
- package/skills/create-workflow-template/operations/schemas/loop_over_accounts.md +106 -0
- package/skills/create-workflow-template/operations/schemas/loop_over_articles.md +126 -0
- package/skills/create-workflow-template/operations/schemas/loop_over_customers.md +88 -0
- package/skills/create-workflow-template/operations/schemas/loop_over_dev_users.md +75 -0
- package/skills/create-workflow-template/operations/schemas/loop_over_enhancements.md +112 -0
- package/skills/create-workflow-template/operations/schemas/loop_over_incidents.md +113 -0
- package/skills/create-workflow-template/operations/schemas/loop_over_issues.md +217 -0
- package/skills/create-workflow-template/operations/schemas/loop_over_meetings.md +150 -0
- package/skills/create-workflow-template/operations/schemas/loop_over_opportunity.md +161 -0
- package/skills/create-workflow-template/operations/schemas/loop_over_sprints.md +50 -0
- package/skills/create-workflow-template/operations/schemas/loop_over_tickets.md +203 -0
- package/skills/create-workflow-template/operations/schemas/manual_trigger.md +11 -0
- package/skills/create-workflow-template/operations/schemas/meeting_created.md +116 -0
- package/skills/create-workflow-template/operations/schemas/meeting_updated.md +152 -0
- package/skills/create-workflow-template/operations/schemas/oasis_sql_execute.md +11 -0
- package/skills/create-workflow-template/operations/schemas/opportunity_created.md +92 -0
- package/skills/create-workflow-template/operations/schemas/opportunity_updated.md +124 -0
- package/skills/create-workflow-template/operations/schemas/pick_user.md +16 -0
- package/skills/create-workflow-template/operations/schemas/question_answer_created.md +44 -0
- package/skills/create-workflow-template/operations/schemas/question_answer_updated.md +75 -0
- package/skills/create-workflow-template/operations/schemas/recall_chats.md +13 -0
- package/skills/create-workflow-template/operations/schemas/router.md +15 -0
- package/skills/create-workflow-template/operations/schemas/send_notification.md +19 -0
- package/skills/create-workflow-template/operations/schemas/set_variable.md +67 -0
- package/skills/create-workflow-template/operations/schemas/sleep_for.md +12 -0
- package/skills/create-workflow-template/operations/schemas/sleep_until.md +17 -0
- package/skills/create-workflow-template/operations/schemas/sprint_updated.md +37 -0
- package/skills/create-workflow-template/operations/schemas/suggest_part.md +14 -0
- package/skills/create-workflow-template/operations/schemas/task_updated.md +79 -0
- package/skills/create-workflow-template/operations/schemas/test_example.md +16 -0
- package/skills/create-workflow-template/operations/schemas/ticket_created.md +136 -0
- package/skills/create-workflow-template/operations/schemas/ticket_sla_tracker_updated.md +46 -0
- package/skills/create-workflow-template/operations/schemas/ticket_updated.md +198 -0
- package/skills/create-workflow-template/operations/schemas/timeline_comment_created.md +70 -0
- package/skills/create-workflow-template/operations/schemas/update_account.md +68 -0
- package/skills/create-workflow-template/operations/schemas/update_article.md +95 -0
- package/skills/create-workflow-template/operations/schemas/update_brand.md +44 -0
- package/skills/create-workflow-template/operations/schemas/update_contact.md +53 -0
- package/skills/create-workflow-template/operations/schemas/update_conversation.md +149 -0
- package/skills/create-workflow-template/operations/schemas/update_enhancement.md +64 -0
- package/skills/create-workflow-template/operations/schemas/update_incident.md +156 -0
- package/skills/create-workflow-template/operations/schemas/update_issue.md +173 -0
- package/skills/create-workflow-template/operations/schemas/update_meeting.md +114 -0
- package/skills/create-workflow-template/operations/schemas/update_opportunity.md +137 -0
- package/skills/create-workflow-template/operations/schemas/update_question_answer.md +60 -0
- package/skills/create-workflow-template/operations/schemas/update_ticket.md +188 -0
- package/skills/create-workflow-template/operations/schemas/watch_ticket_for_updates.md +225 -0
- package/skills/create-workflow-template/operations/schemas/web_search.md +17 -0
- package/skills/create-workflow-template/operations/schemas/while.md +24 -0
- package/skills/create-workflow-template/operations/schemas/widget_created.md +75 -0
- package/skills/create-workflow-template/operations/schemas/widget_updated.md +98 -0
- package/skills/create-workflow-template/operations/schemas/workspace_created.md +20 -0
- package/skills/create-workflow-template/operations/triggers.md +1583 -0
- package/skills/customer-brief/customer-brief.md +66 -0
- package/skills/deal-review-meddpicc/deal-review-meddpicc.md +58 -0
- package/skills/next-step-for-opportunity/next-step-for-opportunity.md +55 -0
- package/skills/opportunity-feature-prioritizer/SKILL.md +183 -0
- package/skills/sales-call-plan-coach/sales-call-plan-coach.md +73 -0
- package/skills/sales-context/sales-context.md +44 -0
- package/skills/sales-search-and-lookup/sales-search-and-lookup.md +58 -0
- package/skills/skill-creator/SKILL.md +570 -0
- package/skills/skill-creator/agents/analyzer.md +274 -0
- package/skills/skill-creator/agents/comparator.md +202 -0
- package/skills/skill-creator/agents/grader.md +223 -0
- package/skills/skill-creator/assets/eval_review.html +146 -0
- package/skills/skill-creator/eval-viewer/generate_review.py +471 -0
- package/skills/skill-creator/eval-viewer/viewer.html +1325 -0
- package/skills/skill-creator/references/schemas.md +430 -0
- package/skills/skill-creator/references/tool-patterns.md +290 -0
- package/skills/skill-creator/scripts/__init__.py +0 -0
- package/skills/skill-creator/scripts/aggregate_benchmark.py +401 -0
- package/skills/skill-creator/scripts/generate_report.py +326 -0
- package/skills/skill-creator/scripts/improve_description.py +247 -0
- package/skills/skill-creator/scripts/package_skill.py +136 -0
- package/skills/skill-creator/scripts/quick_validate.py +103 -0
- package/skills/skill-creator/scripts/run_eval.py +310 -0
- package/skills/skill-creator/scripts/run_loop.py +328 -0
- package/skills/skill-creator/scripts/utils.py +47 -0
- package/skills/trace-diagnosis/trace-diagnosis.md +186 -0
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"data":"{\"description\":\"\",\"serialization_version\":{\"major\":2,\"minor\":0,\"patch\":0},\"steps\":[{\"description\":\"Triggers when a contact is updated\",\"input_ports\":[{\"name\":\"input\",\"schema\":{\"field_descriptors\":[{\"field_type\":\"array\",\"base_type\":\"uenum\",\"allowed_values\":[{\"id\":0,\"label\":\"Description\",\"ordinal\":0,\"value\":\"description\"},{\"id\":1,\"label\":\"Display Name\",\"ordinal\":1,\"value\":\"display_name\"},{\"id\":2,\"label\":\"Email\",\"ordinal\":2,\"value\":\"email\"},{\"id\":3,\"label\":\"Phone Numbers\",\"ordinal\":3,\"value\":\"phone_numbers\"},{\"id\":4,\"label\":\"External Refs\",\"ordinal\":4,\"value\":\"external_refs\"},{\"id\":5,\"label\":\"Tags\",\"ordinal\":5,\"value\":\"tags\"},{\"id\":6,\"label\":\"Anonymous ID\",\"ordinal\":6,\"value\":\"tnt__anonymous_id\"},{\"id\":7,\"label\":\"Beta stage\",\"ordinal\":7,\"value\":\"tnt__beta_stage\"},{\"id\":8,\"label\":\"Call Prep\",\"ordinal\":8,\"value\":\"tnt__call_prep\"},{\"id\":9,\"label\":\"City\",\"ordinal\":9,\"value\":\"tnt__city\"},{\"id\":10,\"label\":\"Closed Reasons\",\"ordinal\":10,\"value\":\"tnt__closed_reasons\"},{\"id\":11,\"label\":\"Continent\",\"ordinal\":11,\"value\":\"tnt__continent\"},{\"id\":12,\"label\":\"Country\",\"ordinal\":12,\"value\":\"tnt__country\"},{\"id\":13,\"label\":\"Customer Of UE\",\"ordinal\":13,\"value\":\"tnt__customer_of_ue\"},{\"id\":14,\"label\":\"Days\",\"ordinal\":14,\"value\":\"tnt__days\"},{\"id\":15,\"label\":\"Department\",\"ordinal\":15,\"value\":\"tnt__department\"},{\"id\":16,\"label\":\"Discord\",\"ordinal\":16,\"value\":\"tnt__discord_handle\"},{\"id\":17,\"label\":\"Do Not Contact\",\"ordinal\":17,\"value\":\"tnt__do_not_contact\"},{\"id\":18,\"label\":\"Do Not Contact Reasons\",\"ordinal\":18,\"value\":\"tnt__do_not_contact_reasons\"},{\"id\":19,\"label\":\"Email Prep\",\"ordinal\":19,\"value\":\"tnt__email_prep\"},{\"id\":20,\"label\":\"Event Contact Status\",\"ordinal\":20,\"value\":\"tnt__event_contact_status\"},{\"id\":21,\"label\":\"First Name\",\"ordinal\":21,\"value\":\"tnt__first_name\"},{\"id\":22,\"label\":\"First UTM Campaign\",\"ordinal\":22,\"value\":\"tnt__first_utm_campaign\"},{\"id\":23,\"label\":\"First UTM Content\",\"ordinal\":23,\"value\":\"tnt__first_utm_content\"},{\"id\":24,\"label\":\"First UTM Medium\",\"ordinal\":24,\"value\":\"tnt__first_utm_medium\"},{\"id\":25,\"label\":\"First UTM Source\",\"ordinal\":25,\"value\":\"tnt__first_utm_source\"},{\"id\":26,\"label\":\"First UTM Term\",\"ordinal\":26,\"value\":\"tnt__first_utm_term\"},{\"id\":27,\"label\":\"First Visit Device\",\"ordinal\":27,\"value\":\"tnt__first_visit_device\"},{\"id\":28,\"label\":\"First Visit Source\",\"ordinal\":28,\"value\":\"tnt__first_visit_source\"},{\"id\":29,\"label\":\"First Visit Timestamp\",\"ordinal\":29,\"value\":\"tnt__first_visit_timestamp\"},{\"id\":30,\"label\":\"Github\",\"ordinal\":30,\"value\":\"tnt__github_handle\"},{\"id\":31,\"label\":\"Google Ads\",\"ordinal\":31,\"value\":\"tnt__google_ads\"},{\"id\":32,\"label\":\"Implementation Enablement Level\",\"ordinal\":32,\"value\":\"tnt__implementation_enablement_level\"},{\"id\":33,\"label\":\"intent\",\"ordinal\":33,\"value\":\"tnt__intent\"},{\"id\":34,\"label\":\"Is California\",\"ordinal\":34,\"value\":\"tnt__is_california\"},{\"id\":35,\"label\":\"Is Canada\",\"ordinal\":35,\"value\":\"tnt__is_canada\"},{\"id\":36,\"label\":\"Job Level\",\"ordinal\":36,\"value\":\"tnt__job_level\"},{\"id\":37,\"label\":\"Job title\",\"ordinal\":37,\"value\":\"tnt__job_title\"},{\"id\":38,\"label\":\"Key Contact\",\"ordinal\":38,\"value\":\"tnt__key_contact\"},{\"id\":39,\"label\":\"Last Name\",\"ordinal\":39,\"value\":\"tnt__last_name\"},{\"id\":40,\"label\":\"Lead Score\",\"ordinal\":40,\"value\":\"tnt__lead_score\"},{\"id\":41,\"label\":\"Lifetime Secs\",\"ordinal\":41,\"value\":\"tnt__lifetime_secs\"},{\"id\":42,\"label\":\"LinkedIn Ads\",\"ordinal\":42,\"value\":\"tnt__linkedin_ads\"},{\"id\":43,\"label\":\"LinkedIn Enrich\",\"ordinal\":43,\"value\":\"tnt__linkedin_enrich\"},{\"id\":44,\"label\":\"LinkedIn Profile\",\"ordinal\":44,\"value\":\"tnt__linkedin_profile\"},{\"id\":45,\"label\":\"MQL\",\"ordinal\":45,\"value\":\"tnt__marketing_qualified_lead\"},{\"id\":46,\"label\":\"Most Recent Timestamp\",\"ordinal\":46,\"value\":\"tnt__most_recent_timestamp\"},{\"id\":47,\"label\":\"Outreach Account\",\"ordinal\":47,\"value\":\"tnt__outreach_account_id\"},{\"id\":48,\"label\":\"Outreach Prospect ID\",\"ordinal\":48,\"value\":\"tnt__outreach_prospect_id\"},{\"id\":49,\"label\":\"Owner\",\"ordinal\":49,\"value\":\"tnt__owner\"},{\"id\":50,\"label\":\"Page Visits\",\"ordinal\":50,\"value\":\"tnt__page_visits\"},{\"id\":51,\"label\":\"Plans\",\"ordinal\":51,\"value\":\"tnt__plans\"},{\"id\":52,\"label\":\"PQL Score\",\"ordinal\":52,\"value\":\"tnt__pql_score\"},{\"id\":53,\"label\":\"Pre-Sales Enablement Level\",\"ordinal\":53,\"value\":\"tnt__pre_sales_enablement_level\"},{\"id\":54,\"label\":\"Primary Partner Contact\",\"ordinal\":54,\"value\":\"tnt__primary_partner_contact\"},{\"id\":55,\"label\":\"Role\",\"ordinal\":55,\"value\":\"tnt__role\"},{\"id\":56,\"label\":\"SQL\",\"ordinal\":56,\"value\":\"tnt__sales_qualified_lead\"},{\"id\":57,\"label\":\"Session Exit Page URL\",\"ordinal\":57,\"value\":\"tnt__session_exit_page_url\"},{\"id\":58,\"label\":\"Session Landing Page URL\",\"ordinal\":58,\"value\":\"tnt__session_landing_page_url\"},{\"id\":59,\"label\":\"Last Session TimeStamp\",\"ordinal\":59,\"value\":\"tnt__session_last_timestamp\"},{\"id\":60,\"label\":\"Signed-up date\",\"ordinal\":60,\"value\":\"tnt__signed_up_date\"},{\"id\":61,\"label\":\"Source\",\"ordinal\":61,\"value\":\"tnt__source\"},{\"id\":62,\"label\":\"State\",\"ordinal\":62,\"value\":\"tnt__state\"},{\"id\":63,\"label\":\"Status\",\"ordinal\":63,\"value\":\"tnt__status\"},{\"id\":64,\"label\":\"Street\",\"ordinal\":64,\"value\":\"tnt__street\"},{\"id\":65,\"label\":\"Sub-Source\",\"ordinal\":65,\"value\":\"tnt__sub_source\"},{\"id\":66,\"label\":\"Sync to Outreach\",\"ordinal\":66,\"value\":\"tnt__sync_to_outreach\"},{\"id\":67,\"label\":\"Team\",\"ordinal\":67,\"value\":\"tnt__team\"},{\"id\":68,\"label\":\"Territory\",\"ordinal\":68,\"value\":\"tnt__territory\"},{\"id\":69,\"label\":\"Total sessions\",\"ordinal\":69,\"value\":\"tnt__total_sessions\"},{\"id\":70,\"label\":\"Twitter\",\"ordinal\":70,\"value\":\"tnt__twitter_handle\"},{\"id\":71,\"label\":\"Type\",\"ordinal\":71,\"value\":\"tnt__type\"},{\"id\":72,\"label\":\"Sent Welcome Series\",\"ordinal\":72,\"value\":\"tnt__welcome_series\"},{\"id\":73,\"label\":\"Within California\",\"ordinal\":73,\"value\":\"tnt__within_california\"},{\"id\":74,\"label\":\"Within Canada\",\"ordinal\":74,\"value\":\"tnt__within_canada\"},{\"id\":75,\"label\":\"Within Eu\",\"ordinal\":75,\"value\":\"tnt__within_eu\"},{\"id\":76,\"label\":\"Zip Code\",\"ordinal\":76,\"value\":\"tnt__zip_code\"},{\"id\":77,\"label\":\"ZoomInfo Enrichment Date\",\"ordinal\":77,\"value\":\"tnt__zoominfo_enriched_date\"},{\"id\":78,\"label\":\"ZoomInfo ID\",\"ordinal\":78,\"value\":\"tnt__zoominfo_id\"},{\"id\":79,\"label\":\"Zoom Info IP Enrich\",\"ordinal\":79,\"value\":\"tnt__zoominfo_ip_enrich\"}],\"data_name\":\"fields_to_watch\",\"db_name\":\"fields_to_watch\",\"description\":\"Fields to watch for changes. The trigger will only be fired if any of these fields are updated.\",\"is_required\":true,\"name\":\"fields_to_watch\",\"oasis\":{\"name\":\"fields_to_watch\"},\"ui\":{\"display_name\":\"Fields to watch\"}},{\"field_type\":\"array\",\"base_type\":\"enum\",\"allowed_values\":[\"slack\"],\"data_name\":\"apps\",\"db_name\":\"apps\",\"description\":\"List of Integrations whose fields are needed in this workflow\",\"name\":\"apps\",\"oasis\":{\"name\":\"apps\"},\"ui\":{\"display_name\":\"List of Integrations\"}},{\"field_type\":\"struct\",\"data_name\":\"_filter\",\"db_name\":\"_filter\",\"description\":\"Filter for the trigger event\",\"name\":\"_filter\",\"oasis\":{\"name\":\"_filter\"},\"ui\":{\"display_name\":\"Filter\"}}],\"invalidate_on_field_update\":[\"apps\"],\"type\":\"field_descriptor\"},\"type\":\"default\"}],\"input_values\":[{\"fields\":[{\"name\":\"fields_to_watch\",\"value\":{\"type\":\"list_value\",\"value\":{\"items\":[{\"type\":\"literal\",\"value\":[\"tags\"]}]}}},{\"name\":\"_filter\",\"value\":{\"type\":\"literal\",\"value\":{\"conditions\":[{\"conditions\":[{\"operands\":[{\"type\":\"jsonata_expression\",\"value\":\"$get('contact_updated_1', 'output').tags[].tag[].id[]\"},{\"type\":\"literal\",\"value\":\"don:core:dvrv-us-1:devo/0:tag/99893\"}],\"operator\":\"contains\",\"type\":\"rule\",\"ui_reference_key\":\"3e59d8ed-2b25-4ef0-8534-b3003f804add\"}],\"logical_operator\":\"and\",\"negate\":false,\"type\":\"group\",\"ui_reference_key\":\"8d4d1c9d-c3da-4076-a60c-80cb354f2f4e\"}],\"logical_operator\":\"and\",\"negate\":false,\"type\":\"group\",\"ui_reference_key\":\"6a53c99c-a77b-40d3-8d15-b20d612b9e85\"}}}],\"port_name\":\"input\"}],\"name\":\"Contact updated\",\"next_steps\":[{\"next_port_name\":\"input\",\"next_step_reference_key\":\"sleep_for_1\",\"port_name\":\"output\"}],\"operation\":{\"namespace\":\"devrev\",\"slug\":\"contact_updated\"},\"output_ports\":[{\"name\":\"output\",\"schema\":{\"composite_schemas\":[{\"fields\":[{\"field_type\":\"text\",\"data_name\":\"display_id\",\"db_name\":\"display_id\",\"description\":\"Human-readable object ID unique to the Dev organization.\",\"name\":\"display_id\",\"oasis\":{\"name\":\"display_id\"}},{\"field_type\":\"text\",\"data_name\":\"display_name\",\"db_name\":\"display_name\",\"description\":\"The user's display name. The name is non-unique and mutable.\\n\",\"name\":\"display_name\",\"oasis\":{\"name\":\"display_name\"}},{\"field_type\":\"text\",\"data_name\":\"email\",\"db_name\":\"email\",\"description\":\"Email address of the user.\",\"name\":\"email\",\"oasis\":{\"name\":\"email\"}},{\"field_type\":\"text\",\"data_name\":\"full_name\",\"db_name\":\"full_name\",\"description\":\"Full name of the user.\",\"name\":\"full_name\",\"oasis\":{\"name\":\"full_name\"}},{\"field_type\":\"id\",\"data_name\":\"id\",\"db_name\":\"id\",\"description\":\"Globally unique object ID.\",\"id_type\":[\"devu\",\"sysu\",\"svcacc\"],\"is_required\":true,\"name\":\"id\",\"oasis\":{\"name\":\"id\"}},{\"field_type\":\"enum\",\"allowed_values\":[\"dev_user\",\"service_account\",\"sys_user\"],\"data_name\":\"type\",\"db_name\":\"type\",\"description\":\"User type\",\"is_required\":true,\"name\":\"type\",\"oasis\":{\"name\":\"type\"}}],\"name\":\"_gen:created_by\"},{\"fields\":[{\"field_type\":\"text\",\"data_name\":\"display_id\",\"db_name\":\"display_id\",\"description\":\"Human-readable object ID unique to the Dev organization.\",\"name\":\"display_id\",\"oasis\":{\"name\":\"display_id\"}},{\"field_type\":\"text\",\"data_name\":\"display_name\",\"db_name\":\"display_name\",\"description\":\"The user's display name. The name is non-unique and mutable.\\n\",\"name\":\"display_name\",\"oasis\":{\"name\":\"display_name\"}},{\"field_type\":\"text\",\"data_name\":\"email\",\"db_name\":\"email\",\"description\":\"Email address of the user.\",\"name\":\"email\",\"oasis\":{\"name\":\"email\"}},{\"field_type\":\"text\",\"data_name\":\"full_name\",\"db_name\":\"full_name\",\"description\":\"Full name of the user.\",\"name\":\"full_name\",\"oasis\":{\"name\":\"full_name\"}},{\"field_type\":\"id\",\"data_name\":\"id\",\"db_name\":\"id\",\"description\":\"Globally unique object ID.\",\"id_type\":[\"devu\",\"sysu\",\"svcacc\"],\"is_required\":true,\"name\":\"id\",\"oasis\":{\"name\":\"id\"}},{\"field_type\":\"enum\",\"allowed_values\":[\"dev_user\",\"service_account\",\"sys_user\"],\"data_name\":\"type\",\"db_name\":\"type\",\"description\":\"User type\",\"is_required\":true,\"name\":\"type\",\"oasis\":{\"name\":\"type\"}}],\"name\":\"_gen:modified_by\"},{\"fields\":[{\"field_type\":\"text\",\"data_name\":\"display_id\",\"db_name\":\"display_id\",\"description\":\"Human-readable object ID unique to the Dev organization.\",\"name\":\"display_id\",\"oasis\":{\"name\":\"display_id\"}},{\"field_type\":\"id\",\"data_name\":\"id\",\"db_name\":\"id\",\"description\":\"Globally unique contact tag ID.\",\"id_type\":[\"tag\"],\"is_required\":true,\"name\":\"id\",\"oasis\":{\"name\":\"id\"}}],\"name\":\"_gen:tag\"},{\"fields\":[{\"field_type\":\"composite\",\"composite_type\":\"_gen:tag\",\"data_name\":\"tag\",\"db_name\":\"tag\",\"name\":\"tag\",\"oasis\":{\"name\":\"tag\"}}],\"name\":\"_gen:tags\"},{\"fields\":[{\"field_type\":\"composite\",\"composite_type\":\"_gen:created_by\",\"data_name\":\"created_by\",\"db_name\":\"created_by\",\"name\":\"created_by\",\"oasis\":{\"name\":\"created_by\"}},{\"field_type\":\"timestamp\",\"data_name\":\"created_date\",\"db_name\":\"created_date\",\"description\":\"Timestamp when the object was created.\",\"name\":\"created_date\",\"oasis\":{\"name\":\"created_date\"}},{\"field_type\":\"text\",\"data_name\":\"description\",\"db_name\":\"description\",\"description\":\"Description of the Rev user.\",\"name\":\"description\",\"oasis\":{\"name\":\"description\"}},{\"field_type\":\"text\",\"data_name\":\"display_id\",\"db_name\":\"display_id\",\"description\":\"Human-readable object ID unique to the Dev organization.\",\"name\":\"display_id\",\"oasis\":{\"name\":\"display_id\"}},{\"field_type\":\"text\",\"data_name\":\"display_name\",\"db_name\":\"display_name\",\"description\":\"The user's display name. The name is non-unique and mutable.\\n\",\"name\":\"display_name\",\"oasis\":{\"name\":\"display_name\"}},{\"field_type\":\"text\",\"data_name\":\"email\",\"db_name\":\"email\",\"description\":\"Email address of the user.\",\"name\":\"email\",\"oasis\":{\"name\":\"email\"}},{\"field_type\":\"text\",\"data_name\":\"full_name\",\"db_name\":\"full_name\",\"description\":\"Full name of the user.\",\"name\":\"full_name\",\"oasis\":{\"name\":\"full_name\"}},{\"field_type\":\"bool\",\"data_name\":\"is_verified\",\"db_name\":\"is_verified\",\"description\":\"Whether the Rev user is verified or not.\",\"name\":\"is_verified\",\"oasis\":{\"name\":\"is_verified\"}},{\"field_type\":\"composite\",\"composite_type\":\"_gen:modified_by\",\"data_name\":\"modified_by\",\"db_name\":\"modified_by\",\"name\":\"modified_by\",\"oasis\":{\"name\":\"modified_by\"}},{\"field_type\":\"timestamp\",\"data_name\":\"modified_date\",\"db_name\":\"modified_date\",\"description\":\"Timestamp when the object was last modified.\",\"name\":\"modified_date\",\"oasis\":{\"name\":\"modified_date\"}},{\"field_type\":\"array\",\"base_type\":\"text\",\"data_name\":\"phone_numbers\",\"db_name\":\"phone_numbers\",\"description\":\"Phone numbers of the user.\",\"name\":\"phone_numbers\",\"oasis\":{\"name\":\"phone_numbers\"}},{\"field_type\":\"array\",\"base_type\":\"composite\",\"composite_type\":\"_gen:tags\",\"data_name\":\"tags\",\"db_name\":\"tags\",\"description\":\"Tags associated with the object.\",\"name\":\"tags\",\"oasis\":{\"name\":\"tags\"}},{\"field_type\":\"id\",\"data_name\":\"id\",\"db_name\":\"id\",\"description\":\"Globally unique object ID.\",\"id_type\":[\"revu\"],\"is_required\":true,\"name\":\"id\",\"oasis\":{\"name\":\"id\"}},{\"field_type\":\"tokens\",\"data_name\":\"tnt__anonymous_id\",\"db_name\":\"tnt__anonymous_id\",\"description\":\"Anonymous ID pre signup\",\"name\":\"tnt__anonymous_id\",\"oasis\":{\"name\":\"tnt__anonymous_id\"},\"ui\":{\"display_name\":\"Anonymous ID\",\"placeholder\":\"Add Anonymous ID\"}},{\"supported_filter_ops\":[\"any\",\"not_any\",\"empty\",\"not_empty\"],\"field_type\":\"text\",\"data_name\":\"tnt__beta_stage\",\"db_name\":\"tnt__beta_stage\",\"description\":\"Beta stage\",\"is_filterable\":true,\"name\":\"tnt__beta_stage\",\"oasis\":{\"name\":\"tnt__beta_stage\"},\"ui\":{\"display_name\":\"Beta stage\",\"placeholder\":\"Add Beta stage\"}},{\"supported_filter_ops\":[\"any\",\"not_any\",\"empty\",\"not_empty\"],\"field_type\":\"rich_text\",\"data_name\":\"tnt__call_prep\",\"db_name\":\"tnt__call_prep\",\"description\":\"Add Call Prep Notes\",\"is_filterable\":true,\"name\":\"tnt__call_prep\",\"oasis\":{\"name\":\"tnt__call_prep\"},\"ui\":{\"display_name\":\"Call Prep\",\"placeholder\":\"Call Prep notes\",\"tooltip\":\"Add Call Prep Notes\"}},{\"supported_filter_ops\":[\"any\",\"not_any\",\"empty\",\"not_empty\"],\"field_type\":\"text\",\"data_name\":\"tnt__city\",\"db_name\":\"tnt__city\",\"description\":\"City\",\"is_filterable\":true,\"name\":\"tnt__city\",\"oasis\":{\"name\":\"tnt__city\"},\"ui\":{\"display_name\":\"City\",\"placeholder\":\"Add City\"}},{\"supported_filter_ops\":[\"all\",\"any\",\"not_any\",\"empty\",\"not_empty\"],\"field_type\":\"array\",\"base_type\":\"enum\",\"allowed_values\":[\"Bad Data\",\"Budget Constraints\",\"Change in Business Priorities\",\"Competitive offerings\",\"Concerns about Security or Compliance\",\"Decision Delays\",\"Duplicate\",\"Lack of Features or Functionality\",\"Unresponsive\",\"Unsatisfactory Trial or Demo Experience\"],\"data_name\":\"tnt__closed_reasons\",\"db_name\":\"tnt__closed_reasons\",\"description\":\"Closed Reasons\",\"is_filterable\":true,\"name\":\"tnt__closed_reasons\",\"oasis\":{\"name\":\"tnt__closed_reasons\"},\"ui\":{\"display_name\":\"Closed Reasons\",\"placeholder\":\"Add Closed Reasons\"}},{\"supported_filter_ops\":[\"any\",\"not_any\",\"empty\",\"not_empty\"],\"field_type\":\"enum\",\"allowed_values\":[\"Africa\",\"Asia\",\"Europe\",\"North America\",\"Oceania\",\"South America\"],\"data_name\":\"tnt__continent\",\"db_name\":\"tnt__continent\",\"description\":\"Continent\",\"is_filterable\":true,\"name\":\"tnt__continent\",\"oasis\":{\"name\":\"tnt__continent\"},\"ui\":{\"display_name\":\"Continent\",\"placeholder\":\"Add Continent\"}},{\"supported_filter_ops\":[\"any\",\"not_any\",\"empty\",\"not_empty\"],\"field_type\":\"enum\",\"allowed_values\":[\"Afghanistan\",\"Albania\",\"Algeria\",\"Andorra\",\"Angola\",\"Antigua and Barbuda\",\"Argentina\",\"Armenia\",\"Australia\",\"Austria\",\"Azerbaijan\",\"Bahamas\",\"Bahrain\",\"Bangladesh\",\"Barbados\",\"Belarus\",\"Belgium\",\"Belize\",\"Benin\",\"Bermuda\",\"Bhutan\",\"Bolivia\",\"Bosnia Herzegovina\",\"Bosnia and Herzegovina\",\"Botswana\",\"Brazil\",\"Brunei\",\"Brunei Darussalam\",\"Bulgaria\",\"Burkina Faso\",\"Burundi\",\"Cabo Verde\",\"Cambodia\",\"Cameroon\",\"Canada\",\"Canadian Provinces\",\"Cape Verde\",\"Cayman Islands\",\"Central African Republic\",\"Chad\",\"Channel Islands\",\"Chile\",\"China\",\"Colombia\",\"Comoros\",\"Congo (Congo-Brazzaville)\",\"Congo (DRC)\",\"Congo (Republic)\",\"Cook Islands\",\"Costa Rica\",\"Cote d'Ivoire\",\"Croatia\",\"Cuba\",\"Cyprus\",\"Czech Republic\",\"Czechia\",\"Czechia (Czech Republic)\",\"Côte d'Ivoire\",\"Democratic Republic of the Congo\",\"Denmark\",\"Djibouti\",\"Dominica\",\"Dominican Republic\",\"Ecuador\",\"Egypt\",\"El Salvador\",\"England\",\"Equatorial Guinea\",\"Eritrea\",\"Estonia\",\"Eswatini (fmr. Swaziland)\",\"Ethiopia\",\"Faeroe Islands\",\"Falkland Islands\",\"Fiji\",\"Finland\",\"France\",\"French Guiana\",\"French Polynesia\",\"Gabon\",\"Gambia\",\"Georgia\",\"Germany\",\"Ghana\",\"Gibraltar\",\"Greece\",\"Greenland\",\"Grenada\",\"Guadeloupe\",\"Guam\",\"Guatemala\",\"Guinea\",\"Guinea-Bissau\",\"Guyana\",\"Haiti\",\"Holy See\",\"Honduras\",\"Hong Kong\",\"Hungary\",\"Iceland\",\"India\",\"Indonesia\",\"Iran\",\"Iraq\",\"Ireland\",\"Isle of Man\",\"Israel\",\"Italy\",\"Jamaica\",\"Japan\",\"Jordan\",\"Kazakhstan\",\"Kenya\",\"Kiribati\",\"Kuwait\",\"Kyrgyzstan\",\"Laos\",\"Latvia\",\"Lebanon\",\"Lesotho\",\"Liberia\",\"Libya\",\"Liechtenstein\",\"Lithuania\",\"Luxembourg\",\"Macau\",\"Macedonia\",\"Madagascar\",\"Malawi\",\"Malaysia\",\"Maldives\",\"Mali\",\"Malta\",\"Marshall Islands\",\"Martinique\",\"Mauritania\",\"Mauritius\",\"Mexico\",\"Micronesia\",\"Moldova\",\"Monaco\",\"Mongolia\",\"Montenegro\",\"Montserrat\",\"Morocco\",\"Mozambique\",\"Myanmar\",\"Myanmar (formerly Burma)\",\"Namibia\",\"Nauru\",\"Nepal\",\"Netherlands\",\"New Caledonia\",\"New Zealand\",\"Nicaragua\",\"Niger\",\"Nigeria\",\"North Korea\",\"North Macedonia\",\"Norway\",\"Oman\",\"Others\",\"Pakistan\",\"Palau\",\"Palestine State\",\"Panama\",\"Papua New Guinea\",\"Paraguay\",\"Peru\",\"Philippines\",\"Pitcairn\",\"Poland\",\"Portugal\",\"Puerto Rico\",\"Qatar\",\"Romania\",\"Russia\",\"Rwanda\",\"Saint Kitts and Nevis\",\"Saint Lucia\",\"Saint Pierre Miquelon\",\"Saint Vincent and the Grenadines\",\"Samoa\",\"San Marino\",\"Sao Tome and Principe\",\"Saudi Arabia\",\"Senegal\",\"Serbia\",\"Seychelles\",\"Sierra Leone\",\"Singapore\",\"Slovakia\",\"Slovenia\",\"Solomon Islands\",\"Somalia\",\"South Africa\",\"South Korea\",\"South Sudan\",\"Spain\",\"Sri Lanka\",\"Sudan\",\"Suriname\",\"Swaziland\",\"Sweden\",\"Switzerland\",\"Syria\",\"Taiwan\",\"Tajikistan\",\"Tanzania\",\"Thailand\",\"Tibet\",\"Timor-Leste\",\"Togo\",\"Tonga\",\"Trinidad and Tobago\",\"Tunisia\",\"Turkey\",\"Turkmenistan\",\"Turks Caicos\",\"Tuvalu\",\"Uganda\",\"Ukraine\",\"United Arab Emirates\",\"United Kingdom\",\"United States\",\"Uruguay\",\"Uzbekistan\",\"Vanuatu\",\"Venezuela\",\"Vietnam\",\"Western Sahara\",\"Yemen\",\"Zambia\",\"Zimbabwe\"],\"data_name\":\"tnt__country\",\"db_name\":\"tnt__country\",\"description\":\"Country\",\"is_filterable\":true,\"name\":\"tnt__country\",\"oasis\":{\"name\":\"tnt__country\"},\"ui\":{\"display_name\":\"Country\",\"placeholder\":\"Add Country\"}},{\"field_type\":\"bool\",\"data_name\":\"tnt__customer_of_ue\",\"db_name\":\"tnt__customer_of_ue\",\"default_value\":false,\"description\":\"Specifies whether the rev-user is a customer of UE\",\"is_filterable\":true,\"name\":\"tnt__customer_of_ue\",\"oasis\":{\"name\":\"tnt__customer_of_ue\"},\"ui\":{\"display_name\":\"Customer Of UE\",\"placeholder\":\"Add Customer Of UE\"}},{\"supported_filter_ops\":[\"any\",\"not_any\",\"empty\",\"not_empty\"],\"field_type\":\"int\",\"data_name\":\"tnt__days\",\"db_name\":\"tnt__days\",\"description\":\"The number of unique calendar days a given user spent on the website/app.\",\"is_filterable\":true,\"name\":\"tnt__days\",\"oasis\":{\"name\":\"tnt__days\"},\"ui\":{\"display_name\":\"Days\",\"placeholder\":\"Add Days\"}},{\"supported_filter_ops\":[\"any\",\"not_any\",\"empty\",\"not_empty\"],\"field_type\":\"enum\",\"allowed_values\":[\"CXO\",\"Customer Success\",\"Data & Analytics\",\"Design\",\"Engineering\",\"Finance\",\"HR\",\"IT\",\"Operations\",\"Others\",\"Product\",\"Sales\",\"Support\"],\"data_name\":\"tnt__department\",\"db_name\":\"tnt__department\",\"description\":\"Specifies the department of the contact\",\"is_filterable\":true,\"name\":\"tnt__department\",\"oasis\":{\"name\":\"tnt__department\"},\"ui\":{\"display_name\":\"Department\",\"placeholder\":\"Add department\"}},{\"supported_filter_ops\":[\"any\",\"not_any\",\"empty\",\"not_empty\"],\"field_type\":\"text\",\"data_name\":\"tnt__discord_handle\",\"db_name\":\"tnt__discord_handle\",\"description\":\"discord handle\",\"is_filterable\":true,\"name\":\"tnt__discord_handle\",\"oasis\":{\"name\":\"tnt__discord_handle\"},\"ui\":{\"display_name\":\"Discord\",\"placeholder\":\"Add Discord\"}},{\"field_type\":\"bool\",\"data_name\":\"tnt__do_not_contact\",\"db_name\":\"tnt__do_not_contact\",\"default_value\":false,\"description\":\"Do Not Contact\",\"is_filterable\":true,\"name\":\"tnt__do_not_contact\",\"oasis\":{\"name\":\"tnt__do_not_contact\"},\"ui\":{\"display_name\":\"Do Not Contact\",\"placeholder\":\"Add Do Not Contact\"}},{\"supported_filter_ops\":[\"any\",\"not_any\",\"empty\",\"not_empty\"],\"field_type\":\"text\",\"data_name\":\"tnt__do_not_contact_reasons\",\"db_name\":\"tnt__do_not_contact_reasons\",\"description\":\"Do Not Contact Reasons\",\"is_filterable\":true,\"name\":\"tnt__do_not_contact_reasons\",\"oasis\":{\"name\":\"tnt__do_not_contact_reasons\"},\"ui\":{\"display_name\":\"Do Not Contact Reasons\",\"placeholder\":\"Add Do Not Contact Reasons\"}},{\"supported_filter_ops\":[\"any\",\"not_any\",\"empty\",\"not_empty\"],\"field_type\":\"text\",\"data_name\":\"tnt__email_prep\",\"db_name\":\"tnt__email_prep\",\"description\":\"Email Prep for sales \",\"is_filterable\":true,\"name\":\"tnt__email_prep\",\"oasis\":{\"name\":\"tnt__email_prep\"},\"ui\":{\"display_name\":\"Email Prep\",\"placeholder\":\"Email Prep for sales\",\"tooltip\":\"Email Prep for sales \"}},{\"supported_filter_ops\":[\"any\",\"not_any\",\"empty\",\"not_empty\"],\"field_type\":\"enum\",\"allowed_values\":[\"Attended\",\"Invited\",\"Not Attended\",\"Registered\",\"Responded\"],\"data_name\":\"tnt__event_contact_status\",\"db_name\":\"tnt__event_contact_status\",\"description\":\"Shows the status of the contact as Invited, Registered, Attended and Not-Attended\",\"is_filterable\":true,\"name\":\"tnt__event_contact_status\",\"oasis\":{\"name\":\"tnt__event_contact_status\"},\"ui\":{\"display_name\":\"Event Contact Status\",\"placeholder\":\"Leads/contacts event status to track \",\"tooltip\":\"Add Contact Event Status\"}},{\"field_type\":\"text\",\"data_name\":\"tnt__first_name\",\"db_name\":\"tnt__first_name\",\"description\":\"First Name\",\"is_filterable\":false,\"name\":\"tnt__first_name\",\"oasis\":{\"name\":\"tnt__first_name\"},\"ui\":{\"display_name\":\"First Name\",\"placeholder\":\"Add First Name\"}},{\"supported_filter_ops\":[\"any\",\"not_any\",\"empty\",\"not_empty\"],\"field_type\":\"text\",\"data_name\":\"tnt__first_utm_campaign\",\"db_name\":\"tnt__first_utm_campaign\",\"description\":\"\",\"is_filterable\":true,\"name\":\"tnt__first_utm_campaign\",\"oasis\":{\"name\":\"tnt__first_utm_campaign\"},\"ui\":{\"display_name\":\"First UTM Campaign\",\"placeholder\":\"Add First UTM Campaign\"}},{\"supported_filter_ops\":[\"any\",\"not_any\",\"empty\",\"not_empty\"],\"field_type\":\"text\",\"data_name\":\"tnt__first_utm_content\",\"db_name\":\"tnt__first_utm_content\",\"description\":\"\",\"is_filterable\":true,\"name\":\"tnt__first_utm_content\",\"oasis\":{\"name\":\"tnt__first_utm_content\"},\"ui\":{\"display_name\":\"First UTM Content\",\"placeholder\":\"Add First UTM Content\"}},{\"supported_filter_ops\":[\"any\",\"not_any\",\"empty\",\"not_empty\"],\"field_type\":\"text\",\"data_name\":\"tnt__first_utm_medium\",\"db_name\":\"tnt__first_utm_medium\",\"description\":\"\",\"is_filterable\":true,\"name\":\"tnt__first_utm_medium\",\"oasis\":{\"name\":\"tnt__first_utm_medium\"},\"ui\":{\"display_name\":\"First UTM Medium\",\"placeholder\":\"Add First UTM Medium\"}},{\"supported_filter_ops\":[\"any\",\"not_any\",\"empty\",\"not_empty\"],\"field_type\":\"text\",\"data_name\":\"tnt__first_utm_source\",\"db_name\":\"tnt__first_utm_source\",\"description\":\"\",\"is_filterable\":true,\"name\":\"tnt__first_utm_source\",\"oasis\":{\"name\":\"tnt__first_utm_source\"},\"ui\":{\"display_name\":\"First UTM Source\",\"placeholder\":\"Add First UTM Source\"}},{\"supported_filter_ops\":[\"any\",\"not_any\",\"empty\",\"not_empty\"],\"field_type\":\"text\",\"data_name\":\"tnt__first_utm_term\",\"db_name\":\"tnt__first_utm_term\",\"description\":\"\",\"is_filterable\":true,\"name\":\"tnt__first_utm_term\",\"oasis\":{\"name\":\"tnt__first_utm_term\"},\"ui\":{\"display_name\":\"First UTM Term\",\"placeholder\":\"Add First UTM Term\"}},{\"supported_filter_ops\":[\"any\",\"not_any\",\"empty\",\"not_empty\"],\"field_type\":\"text\",\"data_name\":\"tnt__first_visit_device\",\"db_name\":\"tnt__first_visit_device\",\"description\":\"The device used by a user in their first interaction or touchpoint with the website/app.\",\"is_filterable\":true,\"name\":\"tnt__first_visit_device\",\"oasis\":{\"name\":\"tnt__first_visit_device\"},\"ui\":{\"display_name\":\"First Visit Device\",\"placeholder\":\"Add First Visit Device\"}},{\"supported_filter_ops\":[\"any\",\"not_any\",\"empty\",\"not_empty\"],\"field_type\":\"text\",\"data_name\":\"tnt__first_visit_source\",\"db_name\":\"tnt__first_visit_source\",\"description\":\"The source or referring channel (digital/physical) through which a user came into the website/app.\",\"is_filterable\":true,\"name\":\"tnt__first_visit_source\",\"oasis\":{\"name\":\"tnt__first_visit_source\"},\"ui\":{\"display_name\":\"First Visit Source\",\"placeholder\":\"Add First Visit Source\"}},{\"field_type\":\"timestamp\",\"data_name\":\"tnt__first_visit_timestamp\",\"db_name\":\"tnt__first_visit_timestamp\",\"description\":\"The timestamp indicating the timestamp of the initial interaction or touchpoint of a user with the website/app.\",\"is_filterable\":true,\"name\":\"tnt__first_visit_timestamp\",\"oasis\":{\"name\":\"tnt__first_visit_timestamp\"},\"ui\":{\"display_name\":\"First Visit Timestamp\",\"placeholder\":\"Add First Visit Timestamp\"}},{\"supported_filter_ops\":[\"any\",\"not_any\",\"empty\",\"not_empty\"],\"field_type\":\"text\",\"data_name\":\"tnt__github_handle\",\"db_name\":\"tnt__github_handle\",\"description\":\"github handle\",\"is_filterable\":true,\"name\":\"tnt__github_handle\",\"oasis\":{\"name\":\"tnt__github_handle\"},\"ui\":{\"display_name\":\"Github\",\"placeholder\":\"Add Github\"}},{\"field_type\":\"text\",\"data_name\":\"tnt__google_ads\",\"db_name\":\"tnt__google_ads\",\"description\":\"Google Ads\",\"is_filterable\":false,\"name\":\"tnt__google_ads\",\"oasis\":{\"name\":\"tnt__google_ads\"},\"ui\":{\"display_name\":\"Google Ads\",\"placeholder\":\"Add Google Ads\"}},{\"supported_filter_ops\":[\"any\",\"not_any\",\"empty\",\"not_empty\"],\"field_type\":\"enum\",\"allowed_values\":[\"AAI-1\",\"AAI-2\",\"AAI-3\",\"AAI-4\"],\"data_name\":\"tnt__implementation_enablement_level\",\"db_name\":\"tnt__implementation_enablement_level\",\"description\":\"Proficiency level\",\"is_filterable\":true,\"name\":\"tnt__implementation_enablement_level\",\"oasis\":{\"name\":\"tnt__implementation_enablement_level\"},\"ui\":{\"display_name\":\"Implementation Enablement Level\",\"placeholder\":\"Add proficiency level\"}},{\"field_type\":\"text\",\"data_name\":\"tnt__intent\",\"db_name\":\"tnt__intent\",\"description\":\"DO NOT REMOVE !!! This field is used to capture the intent for devorg creation/usage by the corresponding contact.\",\"is_filterable\":false,\"name\":\"tnt__intent\",\"oasis\":{\"name\":\"tnt__intent\"},\"ui\":{\"display_name\":\"intent\",\"placeholder\":\"Field capturing the user's devorg usage intent\",\"tooltip\":\"Field capturing the user's devorg usage intent\"}},{\"field_type\":\"bool\",\"data_name\":\"tnt__is_california\",\"db_name\":\"tnt__is_california\",\"default_value\":false,\"description\":\"Specifies whether the rev-user is in California or not\",\"is_filterable\":true,\"name\":\"tnt__is_california\",\"oasis\":{\"name\":\"tnt__is_california\"},\"ui\":{\"display_name\":\"Is California\",\"placeholder\":\"Add Is California\"}},{\"field_type\":\"bool\",\"data_name\":\"tnt__is_canada\",\"db_name\":\"tnt__is_canada\",\"default_value\":false,\"description\":\"Specifies whether the rev-user is in Canada or not\",\"is_filterable\":true,\"name\":\"tnt__is_canada\",\"oasis\":{\"name\":\"tnt__is_canada\"},\"ui\":{\"display_name\":\"Is Canada\",\"placeholder\":\"Add Is Canada\"}},{\"supported_filter_ops\":[\"any\",\"not_any\",\"empty\",\"not_empty\"],\"field_type\":\"enum\",\"allowed_values\":[\"C-Suite\",\"Chairperson\",\"Director\",\"Entry-Level\",\"Individual Contributor\",\"Manager\",\"Others\",\"President\",\"Senior Individual Contributor\",\"Vice President\"],\"data_name\":\"tnt__job_level\",\"db_name\":\"tnt__job_level\",\"description\":\"Job Level\",\"is_filterable\":true,\"name\":\"tnt__job_level\",\"oasis\":{\"name\":\"tnt__job_level\"},\"ui\":{\"display_name\":\"Job Level\",\"placeholder\":\"Add Job Level\"}},{\"supported_filter_ops\":[\"any\",\"not_any\",\"empty\",\"not_empty\"],\"field_type\":\"text\",\"data_name\":\"tnt__job_title\",\"db_name\":\"tnt__job_title\",\"description\":\"Job title\",\"is_filterable\":true,\"name\":\"tnt__job_title\",\"oasis\":{\"name\":\"tnt__job_title\"},\"ui\":{\"display_name\":\"Job title\",\"placeholder\":\"Add Job title\"}},{\"field_type\":\"bool\",\"data_name\":\"tnt__key_contact\",\"db_name\":\"tnt__key_contact\",\"default_value\":false,\"description\":\"Specifies whether the rev-user is a key contact\",\"is_filterable\":true,\"name\":\"tnt__key_contact\",\"oasis\":{\"name\":\"tnt__key_contact\"},\"ui\":{\"display_name\":\"Key Contact\",\"placeholder\":\"Add Key Contact\"}},{\"field_type\":\"text\",\"data_name\":\"tnt__last_name\",\"db_name\":\"tnt__last_name\",\"description\":\"Last Name\",\"is_filterable\":false,\"name\":\"tnt__last_name\",\"oasis\":{\"name\":\"tnt__last_name\"},\"ui\":{\"display_name\":\"Last Name\",\"placeholder\":\"Add Last Name\"}},{\"supported_filter_ops\":[\"any\",\"not_any\",\"empty\",\"not_empty\"],\"field_type\":\"enum\",\"allowed_values\":[\"1-10\",\"11-20\",\"21-30\",\"31-40\",\"41-50\",\"51-60\",\"61-70\",\"71-80\",\"81-90\",\"91-100\"],\"data_name\":\"tnt__lead_score\",\"db_name\":\"tnt__lead_score\",\"description\":\"Lead Score\",\"is_filterable\":true,\"name\":\"tnt__lead_score\",\"oasis\":{\"name\":\"tnt__lead_score\"},\"ui\":{\"display_name\":\"Lead Score\",\"placeholder\":\"Add Lead Score\"}},{\"supported_filter_ops\":[\"any\",\"not_any\",\"empty\",\"not_empty\"],\"field_type\":\"int\",\"data_name\":\"tnt__lifetime_secs\",\"db_name\":\"tnt__lifetime_secs\",\"description\":\"The total number of seconds a user spent on the website/app.\",\"is_filterable\":true,\"name\":\"tnt__lifetime_secs\",\"oasis\":{\"name\":\"tnt__lifetime_secs\"},\"ui\":{\"display_name\":\"Lifetime Secs\",\"placeholder\":\"Add Lifetime Secs\"}},{\"field_type\":\"text\",\"data_name\":\"tnt__linkedin_ads\",\"db_name\":\"tnt__linkedin_ads\",\"description\":\"LinkedIn Ads\",\"is_filterable\":false,\"name\":\"tnt__linkedin_ads\",\"oasis\":{\"name\":\"tnt__linkedin_ads\"},\"ui\":{\"display_name\":\"LinkedIn Ads\",\"placeholder\":\"Add LinkedIn Ads\"}},{\"field_type\":\"text\",\"data_name\":\"tnt__linkedin_enrich\",\"db_name\":\"tnt__linkedin_enrich\",\"description\":\"LinkedIn Enrich\",\"is_filterable\":false,\"name\":\"tnt__linkedin_enrich\",\"oasis\":{\"name\":\"tnt__linkedin_enrich\"},\"ui\":{\"display_name\":\"LinkedIn Enrich\",\"placeholder\":\"Add LinkedIn Enrich\"}},{\"supported_filter_ops\":[\"any\",\"not_any\",\"empty\",\"not_empty\"],\"field_type\":\"text\",\"data_name\":\"tnt__linkedin_profile\",\"db_name\":\"tnt__linkedin_profile\",\"description\":\"LinkedIn Profile Page\",\"is_filterable\":true,\"name\":\"tnt__linkedin_profile\",\"oasis\":{\"name\":\"tnt__linkedin_profile\"},\"ui\":{\"display_name\":\"LinkedIn Profile\",\"placeholder\":\"Add LinkedIn Profile\"}},{\"field_type\":\"bool\",\"data_name\":\"tnt__marketing_qualified_lead\",\"db_name\":\"tnt__marketing_qualified_lead\",\"default_value\":false,\"description\":\"MQL\",\"is_filterable\":true,\"name\":\"tnt__marketing_qualified_lead\",\"oasis\":{\"name\":\"tnt__marketing_qualified_lead\"},\"ui\":{\"display_name\":\"MQL\",\"placeholder\":\"Add MQL\"}},{\"field_type\":\"timestamp\",\"data_name\":\"tnt__most_recent_timestamp\",\"db_name\":\"tnt__most_recent_timestamp\",\"description\":\"The last time any user belonging to an account visited the website/app.\",\"is_filterable\":true,\"name\":\"tnt__most_recent_timestamp\",\"oasis\":{\"name\":\"tnt__most_recent_timestamp\"},\"ui\":{\"display_name\":\"Most Recent Timestamp\",\"placeholder\":\"Add Most Recent Timestamp\"}},{\"supported_filter_ops\":[\"any\",\"not_any\",\"empty\",\"not_empty\"],\"field_type\":\"text\",\"data_name\":\"tnt__outreach_account_id\",\"db_name\":\"tnt__outreach_account_id\",\"description\":\"Outreach Account ID\",\"is_filterable\":true,\"name\":\"tnt__outreach_account_id\",\"oasis\":{\"name\":\"tnt__outreach_account_id\"},\"ui\":{\"display_name\":\"Outreach Account\",\"placeholder\":\"Add Outreach Account\"}},{\"supported_filter_ops\":[\"any\",\"not_any\",\"empty\",\"not_empty\"],\"field_type\":\"text\",\"data_name\":\"tnt__outreach_prospect_id\",\"db_name\":\"tnt__outreach_prospect_id\",\"description\":\"Outreach Prospect ID\",\"is_filterable\":true,\"name\":\"tnt__outreach_prospect_id\",\"oasis\":{\"name\":\"tnt__outreach_prospect_id\"},\"ui\":{\"display_name\":\"Outreach Prospect ID\",\"placeholder\":\"Add Outreach Prospect ID\"}},{\"supported_filter_ops\":[\"any\",\"not_any\",\"empty\",\"not_empty\"],\"field_type\":\"id\",\"data_name\":\"tnt__owner\",\"db_name\":\"tnt__owner\",\"description\":\"Indicates the owner for the contact\",\"id_type\":[\"user\"],\"is_filterable\":true,\"name\":\"tnt__owner\",\"oasis\":{\"name\":\"tnt__owner\"},\"origin\":\"revu\",\"ui\":{\"display_name\":\"Owner\",\"placeholder\":\"Add Owner\"}},{\"supported_filter_ops\":[\"any\",\"not_any\",\"empty\",\"not_empty\"],\"field_type\":\"int\",\"data_name\":\"tnt__page_visits\",\"db_name\":\"tnt__page_visits\",\"description\":\"The number of pages a user visited on the website/app.\",\"is_filterable\":true,\"name\":\"tnt__page_visits\",\"oasis\":{\"name\":\"tnt__page_visits\"},\"ui\":{\"display_name\":\"Page Visits\",\"placeholder\":\"Add Page Visits\"}},{\"supported_filter_ops\":[\"all\",\"any\",\"not_any\",\"empty\",\"not_empty\"],\"field_type\":\"array\",\"base_type\":\"enum\",\"allowed_values\":[\"OneCRM\",\"Pro Build\",\"Pro Grow\",\"Pro Support\",\"Starter Build\",\"Starter Grow\",\"Starter Support\",\"Ultimate Build\",\"Ultimate Grow\",\"Ultimate Support\"],\"data_name\":\"tnt__plans\",\"db_name\":\"tnt__plans\",\"description\":\"Plans\",\"is_filterable\":true,\"name\":\"tnt__plans\",\"oasis\":{\"name\":\"tnt__plans\"},\"ui\":{\"display_name\":\"Plans\",\"placeholder\":\"Add Plans\"}},{\"supported_filter_ops\":[\"any\",\"not_any\",\"empty\",\"not_empty\"],\"field_type\":\"int\",\"data_name\":\"tnt__pql_score\",\"db_name\":\"tnt__pql_score\",\"description\":\"Product qualified lead score of the RevUser/RevOrg\",\"is_filterable\":true,\"name\":\"tnt__pql_score\",\"oasis\":{\"name\":\"tnt__pql_score\"},\"ui\":{\"display_name\":\"PQL Score\",\"placeholder\":\"Add PQL Score\"}},{\"supported_filter_ops\":[\"any\",\"not_any\",\"empty\",\"not_empty\"],\"field_type\":\"enum\",\"allowed_values\":[\"1\",\"2\",\"3\",\"4\"],\"data_name\":\"tnt__pre_sales_enablement_level\",\"db_name\":\"tnt__pre_sales_enablement_level\",\"description\":\"Pre-Sales Enablement Level\",\"is_filterable\":true,\"name\":\"tnt__pre_sales_enablement_level\",\"oasis\":{\"name\":\"tnt__pre_sales_enablement_level\"},\"ui\":{\"display_name\":\"Pre-Sales Enablement Level\",\"placeholder\":\"Add Pre-Sales Enablement Level \"}},{\"supported_filter_ops\":[\"any\",\"not_any\",\"empty\",\"not_empty\"],\"field_type\":\"id\",\"data_name\":\"tnt__primary_partner_contact\",\"db_name\":\"tnt__primary_partner_contact\",\"description\":\"Primary Partner Contact\",\"id_type\":[\"revu\"],\"is_filterable\":true,\"name\":\"tnt__primary_partner_contact\",\"oasis\":{\"name\":\"tnt__primary_partner_contact\"},\"ui\":{\"display_name\":\"Primary Partner Contact\",\"placeholder\":\"Add Primary Partner Contact\"}},{\"supported_filter_ops\":[\"any\",\"not_any\",\"empty\",\"not_empty\"],\"field_type\":\"text\",\"data_name\":\"tnt__role\",\"db_name\":\"tnt__role\",\"description\":\"DevUser Role in Org\",\"is_filterable\":true,\"name\":\"tnt__role\",\"oasis\":{\"name\":\"tnt__role\"},\"ui\":{\"display_name\":\"Role\",\"placeholder\":\"Add Role\"}},{\"field_type\":\"bool\",\"data_name\":\"tnt__sales_qualified_lead\",\"db_name\":\"tnt__sales_qualified_lead\",\"default_value\":false,\"description\":\"SQL\",\"is_filterable\":true,\"name\":\"tnt__sales_qualified_lead\",\"oasis\":{\"name\":\"tnt__sales_qualified_lead\"},\"ui\":{\"display_name\":\"SQL\",\"placeholder\":\"Add SQL\"}},{\"supported_filter_ops\":[\"any\",\"not_any\",\"empty\",\"not_empty\"],\"field_type\":\"text\",\"data_name\":\"tnt__session_exit_page_url\",\"db_name\":\"tnt__session_exit_page_url\",\"description\":\"Session Exit Page URL\",\"is_filterable\":true,\"name\":\"tnt__session_exit_page_url\",\"oasis\":{\"name\":\"tnt__session_exit_page_url\"},\"ui\":{\"display_name\":\"Session Exit Page URL\",\"placeholder\":\"Add Session Exit Page URL\"}},{\"supported_filter_ops\":[\"any\",\"not_any\",\"empty\",\"not_empty\"],\"field_type\":\"text\",\"data_name\":\"tnt__session_landing_page_url\",\"db_name\":\"tnt__session_landing_page_url\",\"description\":\"Session Landing Page URL\",\"is_filterable\":true,\"name\":\"tnt__session_landing_page_url\",\"oasis\":{\"name\":\"tnt__session_landing_page_url\"},\"ui\":{\"display_name\":\"Session Landing Page URL\",\"placeholder\":\"Add Session Landing Page URL\"}},{\"field_type\":\"timestamp\",\"data_name\":\"tnt__session_last_timestamp\",\"db_name\":\"tnt__session_last_timestamp\",\"description\":\"Last Session TimeStamp\",\"is_filterable\":true,\"name\":\"tnt__session_last_timestamp\",\"oasis\":{\"name\":\"tnt__session_last_timestamp\"},\"ui\":{\"display_name\":\"Last Session TimeStamp\",\"placeholder\":\"Add Last Session TimeStamp\"}},{\"field_type\":\"timestamp\",\"data_name\":\"tnt__signed_up_date\",\"db_name\":\"tnt__signed_up_date\",\"description\":\"Signed-up date\",\"is_filterable\":true,\"name\":\"tnt__signed_up_date\",\"oasis\":{\"name\":\"tnt__signed_up_date\"},\"ui\":{\"display_name\":\"Signed-up date\",\"placeholder\":\"Add Signed-up date\"}},{\"supported_filter_ops\":[\"any\",\"not_any\",\"empty\",\"not_empty\"],\"field_type\":\"enum\",\"allowed_values\":[\"Advisor\",\"Events: Effortless\",\"Events: Exec Dinners\",\"Events: Industry Events\",\"Events: Meetups\",\"Events: Webinar\",\"Inbound: Organic\",\"Inbound: Paid\",\"Outbound\",\"Partner\"],\"data_name\":\"tnt__source\",\"db_name\":\"tnt__source\",\"description\":\"Source\",\"is_filterable\":true,\"name\":\"tnt__source\",\"oasis\":{\"name\":\"tnt__source\"},\"ui\":{\"display_name\":\"Source\",\"placeholder\":\"Add Source\"}},{\"supported_filter_ops\":[\"any\",\"not_any\",\"empty\",\"not_empty\"],\"field_type\":\"text\",\"data_name\":\"tnt__state\",\"db_name\":\"tnt__state\",\"description\":\"State\",\"is_filterable\":true,\"name\":\"tnt__state\",\"oasis\":{\"name\":\"tnt__state\"},\"ui\":{\"display_name\":\"State\",\"placeholder\":\"Add State\"}},{\"supported_filter_ops\":[\"any\",\"not_any\",\"empty\",\"not_empty\"],\"field_type\":\"enum\",\"allowed_values\":[\"0-New\",\"1-Shortlisted\",\"2-Prospecting\",\"3-Engaged\",\"4-Opportunity in Progress\",\"5-Return to Nurture\",\"6-Qualified Out\"],\"data_name\":\"tnt__status\",\"db_name\":\"tnt__status\",\"default_value\":\"0-New\",\"description\":\"Status\",\"is_filterable\":true,\"name\":\"tnt__status\",\"oasis\":{\"name\":\"tnt__status\"},\"ui\":{\"display_name\":\"Status\",\"placeholder\":\"Add Status\"}},{\"supported_filter_ops\":[\"any\",\"not_any\",\"empty\",\"not_empty\"],\"field_type\":\"text\",\"data_name\":\"tnt__street\",\"db_name\":\"tnt__street\",\"description\":\"Street\",\"is_filterable\":true,\"name\":\"tnt__street\",\"oasis\":{\"name\":\"tnt__street\"},\"ui\":{\"display_name\":\"Street\",\"placeholder\":\"Add Street\"}},{\"supported_filter_ops\":[\"any\",\"not_any\",\"empty\",\"not_empty\"],\"field_type\":\"enum\",\"allowed_values\":[\"10mar-post\",\"2023-Q3-AWS+TiE Dinner\",\"2023_Q3_12InvestorList\",\"2023_Q3_ATX-AI-Happyhour\",\"2023_Q3_DF Happyhour\",\"2023_Q3_ELC\",\"2023_Q3_Effortless\",\"2023_Q3_Mamram\",\"2023_Q3_Productledsummit\",\"2023_Q3_SaaStr\",\"2023_Q3_Supportdriven\",\"2023_Q3_TC-happyhour\",\"2023_Q4_DP_Meetup\",\"2023_Q4_Oaklandsummit\",\"2023_Q4_Support_Driven_Leadership_Expo_Oakland\",\"2023_Q4_saasboomi-RT\",\"AIConclave22\",\"AWS\",\"AWS Roundtable'23\",\"AWS:re-invent2022\",\"Aditi Jain\",\"Agustin Vivas\",\"Allable\",\"Ameena Beevi\",\"Anindya Misra\",\"Argentinameetup23\",\"Atlassian Team'23\",\"Austinmeetup23\",\"Beta Launch\",\"BillBoardSept2023\",\"Billing Campaign: Responded\",\"Blrtechsummit2022\",\"Boomer Banaag\",\"Brainmates\",\"BrandCampaign\",\"CCW\",\"CIO-VirtualEvent\",\"CIO-summit23\",\"CIOKulb event\",\"CSISRAEL23\",\"CSS\",\"Campaign LP --- 91Ninjas x Support Form 1\",\"Campaign LP --- 91Ninjas x Support Form 2\",\"Campaign LP --- 91Ninjas x Ticketing\",\"Campaign LP --- AI Chatbot\",\"Campaign LP --- AI Support & Chatbot\",\"Campaign LP --- Customer Service/Helpdesk Software\",\"Campaign LP --- DevRev vs Zendesk\",\"Campaign LP --- Support Software\",\"Campaign LP --- Ticketing\",\"Chandra Nath\",\"Chase McDowell\",\"Circle\",\"Cohort 0\",\"Cohort 1\",\"Conversion\",\"Customer Referral\",\"CustomerPlusProduct\",\"CustomerSupport\",\"CustomerSupportBangalore\",\"CustomerSupportRetarget\",\"Derek Bennett\",\"DevRev+AWS-Meetup\",\"DevRev+AWS-Meetup22\",\"DevRev+CIOKlub-Meetup\",\"DevRev+CIOKlubChennai-Meetup\",\"DevRev+Descope-Meetup'23\",\"DevRev+IITM-Meetup23\",\"DevRev+MXV-Meetup\",\"DevRev+Mayfield-June23\",\"DevRev+SaaSInsider+Github-Meetup\",\"DevRev+Saasboomi-Meetup22\",\"DevRev+Stripe-Happyhour\",\"DevRev+TogetherFund-Meetup23\",\"DevRev-Meetup22\",\"Dheeraj Pandey\",\"ELC Annual'23\",\"EarlyStageStartups\",\"Elevate\",\"Emily Dworkin\",\"Event-Beta Launch\",\"Event-Circle Talk\",\"Event-India Meetup\",\"Event-Leo Capital\",\"Event-Podim\",\"Event-Product Tech Meetup\",\"Event-SaaSBOOMi\",\"Event-SxSW\",\"Event-TechCrunch Summer Party\",\"Events\",\"Frank Ochambela\",\"FreshdeskHypertarget\",\"GA-Tech Crunch\",\"GA_Conversion\",\"Game\",\"Gaurish Lawande\",\"Gayathri Balasubramanian\",\"Geektimecode23\",\"Gowri S\",\"Harmonic\",\"IQPC\",\"IsraelMeetup23\",\"Jae Hosking\",\"Jatin G\",\"Jeffin Mathew\",\"Joaquin Cordoba\",\"Kavya Kommareddy\",\"Kevin Kosacoff\",\"Lautaro Ortiz\",\"Lead_LinkedIn Campaign\",\"Mamram\",\"Manish Jindal\",\"Manoj Agarwal\",\"Manoj R\",\"Mayfield\",\"Mayfieldmeetup23\",\"Meetmagic + Innovatus\",\"Millenium Alliance\",\"Mubin Khan\",\"Mumbai 8-10th Jan 23 Outreach\",\"Neeraj Matiyani\",\"Noor J\",\"NvidiaGTC\",\"Omid\",\"Omkar Babar\",\"Ophir Rom\",\"Ortus\",\"PM List\",\"Paige Caldwell\",\"Paul Park\",\"PerformanceCampaign\",\"PerformanceMax\",\"Physicalinvites\",\"Podim'23\",\"Press\",\"Product School\",\"Product-Unconference'23\",\"Q1FY25_CSS_Exec_Event_London\",\"Q2FY25_Effortless_New_York\",\"Q4FY23-Closed\",\"Ramya Iyer\",\"Razorpay\",\"Relationship\",\"Retarget campaign\",\"Rohan Soj\",\"SD\",\"SG-Booth23\",\"SG-DGB23\",\"SG-ExhibitingComp23\",\"SG-OfficeHours23\",\"SG-Roundtable23\",\"SG-TargetedList23\",\"SXSW\",\"SZW group\",\"SaaS Central'23\",\"SaaS Con'23\",\"SaaSboomi Annual 2023\",\"SaaStock-Happyhour'23\",\"Saastr Europe 23\",\"SaastrAug2023\",\"Sabari Prasanth\",\"Sanjay Somashekar\",\"Shamanth Kengeri\",\"Start-Up Spark\",\"Startup\",\"Strong Relationship\",\"Sunil Mahale\",\"Support Driven\",\"Swapnil Pancholi\",\"TPF'23\",\"TSIA\",\"Tech and Leadership Meetup\",\"Techmind\",\"Tom Emmanual\",\"UBS Forums\",\"UE\",\"Ufirst-23\",\"Vimlesh Gautam\",\"Yadhu Krishnan\",\"Yellowai\",\"ZendeskAlternative\",\"ZendeskHypertarget\",\"ZendeskReplace\",\"beta_campaign22\",\"beta_campaign_april22\",\"beta_campaign_jun22\",\"beta_campaign_may22\",\"bio\",\"circleads\",\"customers\",\"custtestGM\",\"d5dd4da996-EMAIL_CAMPAIGN_2023_03_14_10_11\",\"devrev\",\"devrevemail\",\"digital campaign\",\"digital campaigns 2024\",\"draperevent23\",\"dreamforcehappyhour\",\"effortless23\",\"effortlessspeakers\",\"email campaign\",\"essentialism_bookcampaign\",\"fb_campaign\",\"google_campaign\",\"graice\",\"hackathon\",\"ind_ai_support_chatbot\",\"ind_customer_service_software\",\"ind_ticketing_system\",\"ind_ticketing_system_exact\",\"ind_ticketing_system_phrase_match\",\"ind_zendesk\",\"ind_zendesk_exact\",\"ind_zendesk_phrase\",\"linkedin\",\"linkedin_eventpage\",\"linkedinagendaeffortless\",\"linkedincpcWCBlueL\",\"linkedinnative\",\"linkedinpolleffortless\",\"magicball'23\",\"maverick\",\"peopleops\",\"prasoon\",\"product-newsletter\",\"product_posts\",\"qkdivya\",\"qkhimanshu\",\"qkmanisha\",\"qkmaulik\",\"qkmayur\",\"qkrahul\",\"qkshivshankar\",\"qkshweta\",\"qksiddharth\",\"qksk\",\"qksnehashree\",\"qksocial\",\"reddit\",\"resource.fyi/?ref=resource.fyi\",\"rohanbajaj\",\"saascon-social\",\"sendgrid\",\"social\",\"startup%2Bcampaign\",\"startup-program-application\",\"startupgrind23\",\"twitterbio\",\"us_ai_support_chatbot\",\"us_ai_support_chatbot_exact\",\"us_canada_ai_support_chatbot\",\"us_canada_customer_service_software\",\"us_canada_ticketing_system\",\"us_canada_zendesk_pricing\",\"us_customer_service_software\",\"us_zendesk\",\"us_zendesk_phrase_match_lp_test\",\"website\",\"websitebanner\",\"z47\"],\"data_name\":\"tnt__sub_source\",\"db_name\":\"tnt__sub_source\",\"description\":\"Sub-Source\",\"is_filterable\":true,\"name\":\"tnt__sub_source\",\"oasis\":{\"name\":\"tnt__sub_source\"},\"ui\":{\"display_name\":\"Sub-Source\",\"placeholder\":\"Add Sub-Source\"}},{\"field_type\":\"bool\",\"data_name\":\"tnt__sync_to_outreach\",\"db_name\":\"tnt__sync_to_outreach\",\"default_value\":false,\"description\":\"Specifies whether the rev-user should be synced to outreach\",\"is_filterable\":true,\"name\":\"tnt__sync_to_outreach\",\"oasis\":{\"name\":\"tnt__sync_to_outreach\"},\"ui\":{\"display_name\":\"Sync to Outreach\",\"placeholder\":\"Add Sync to Outreach\"}},{\"supported_filter_ops\":[\"all\",\"any\",\"not_any\",\"empty\",\"not_empty\"],\"field_type\":\"array\",\"base_type\":\"enum\",\"allowed_values\":[\"Implementation\",\"Pre-sales\",\"Sales\"],\"data_name\":\"tnt__team\",\"db_name\":\"tnt__team\",\"description\":\"Team Name\",\"is_filterable\":true,\"name\":\"tnt__team\",\"oasis\":{\"name\":\"tnt__team\"},\"ui\":{\"display_name\":\"Team\",\"placeholder\":\"Add team name\"}},{\"supported_filter_ops\":[\"any\",\"not_any\",\"empty\",\"not_empty\"],\"field_type\":\"text\",\"data_name\":\"tnt__territory\",\"db_name\":\"tnt__territory\",\"description\":\"Territory\",\"is_filterable\":true,\"name\":\"tnt__territory\",\"oasis\":{\"name\":\"tnt__territory\"},\"ui\":{\"display_name\":\"Territory\",\"placeholder\":\"Add Territory\"}},{\"supported_filter_ops\":[\"any\",\"not_any\",\"empty\",\"not_empty\"],\"field_type\":\"int\",\"data_name\":\"tnt__total_sessions\",\"db_name\":\"tnt__total_sessions\",\"description\":\"Total sessions of the user\",\"is_filterable\":true,\"name\":\"tnt__total_sessions\",\"oasis\":{\"name\":\"tnt__total_sessions\"},\"ui\":{\"display_name\":\"Total sessions\",\"placeholder\":\"Add Total sessions\"}},{\"supported_filter_ops\":[\"any\",\"not_any\",\"empty\",\"not_empty\"],\"field_type\":\"text\",\"data_name\":\"tnt__twitter_handle\",\"db_name\":\"tnt__twitter_handle\",\"description\":\"twitter handle\",\"is_filterable\":true,\"name\":\"tnt__twitter_handle\",\"oasis\":{\"name\":\"tnt__twitter_handle\"},\"ui\":{\"display_name\":\"Twitter\",\"placeholder\":\"Add Twitter\"}},{\"supported_filter_ops\":[\"any\",\"not_any\",\"empty\",\"not_empty\"],\"field_type\":\"enum\",\"allowed_values\":[\"Advisors\",\"Contact\",\"Lead\",\"Partner\",\"User\"],\"data_name\":\"tnt__type\",\"db_name\":\"tnt__type\",\"description\":\"Type\",\"is_filterable\":true,\"name\":\"tnt__type\",\"oasis\":{\"name\":\"tnt__type\"},\"ui\":{\"display_name\":\"Type\",\"placeholder\":\"Add Type\"}},{\"supported_filter_ops\":[\"any\",\"not_any\",\"empty\",\"not_empty\"],\"field_type\":\"enum\",\"allowed_values\":[\"No\",\"Yes\"],\"data_name\":\"tnt__welcome_series\",\"db_name\":\"tnt__welcome_series\",\"description\":\"Tracks if we've sent this user the welcome series\",\"is_filterable\":true,\"name\":\"tnt__welcome_series\",\"oasis\":{\"name\":\"tnt__welcome_series\"},\"ui\":{\"display_name\":\"Sent Welcome Series\",\"placeholder\":\"Add Sent Welcome Series\"}},{\"field_type\":\"bool\",\"data_name\":\"tnt__within_california\",\"db_name\":\"tnt__within_california\",\"default_value\":false,\"description\":\"Specifies whether the rev-user is within California\",\"is_filterable\":true,\"name\":\"tnt__within_california\",\"oasis\":{\"name\":\"tnt__within_california\"},\"ui\":{\"display_name\":\"Within California\",\"placeholder\":\"Add Within California\"}},{\"field_type\":\"bool\",\"data_name\":\"tnt__within_canada\",\"db_name\":\"tnt__within_canada\",\"default_value\":false,\"description\":\"Specifies whether the rev-user is within Canada\",\"is_filterable\":true,\"name\":\"tnt__within_canada\",\"oasis\":{\"name\":\"tnt__within_canada\"},\"ui\":{\"display_name\":\"Within Canada\",\"placeholder\":\"Add Within Canada\"}},{\"field_type\":\"bool\",\"data_name\":\"tnt__within_eu\",\"db_name\":\"tnt__within_eu\",\"default_value\":false,\"description\":\"Specifies whether the rev-user is within Eu\",\"is_filterable\":true,\"name\":\"tnt__within_eu\",\"oasis\":{\"name\":\"tnt__within_eu\"},\"ui\":{\"display_name\":\"Within Eu\",\"placeholder\":\"Add Within Eu\"}},{\"field_type\":\"text\",\"data_name\":\"tnt__zip_code\",\"db_name\":\"tnt__zip_code\",\"description\":\"Zip Code\",\"is_filterable\":false,\"name\":\"tnt__zip_code\",\"oasis\":{\"name\":\"tnt__zip_code\"},\"ui\":{\"display_name\":\"Zip Code\",\"placeholder\":\"Add Zip Code\"}},{\"field_type\":\"date\",\"data_name\":\"tnt__zoominfo_enriched_date\",\"db_name\":\"tnt__zoominfo_enriched_date\",\"description\":\"ZoomInfo Enrichment Date\",\"is_filterable\":true,\"name\":\"tnt__zoominfo_enriched_date\",\"oasis\":{\"name\":\"tnt__zoominfo_enriched_date\"},\"ui\":{\"display_name\":\"ZoomInfo Enrichment Date\",\"placeholder\":\"Add ZoomInfo Enrichment Date\"}},{\"field_type\":\"text\",\"data_name\":\"tnt__zoominfo_id\",\"db_name\":\"tnt__zoominfo_id\",\"description\":\"ZoomInfo ID\",\"is_filterable\":false,\"name\":\"tnt__zoominfo_id\",\"oasis\":{\"name\":\"tnt__zoominfo_id\"},\"ui\":{\"display_name\":\"ZoomInfo ID\",\"placeholder\":\"Add ZoomInfo ID\"}},{\"field_type\":\"text\",\"data_name\":\"tnt__zoominfo_ip_enrich\",\"db_name\":\"tnt__zoominfo_ip_enrich\",\"description\":\"Zoom Info IP Enrich\",\"is_filterable\":false,\"name\":\"tnt__zoominfo_ip_enrich\",\"oasis\":{\"name\":\"tnt__zoominfo_ip_enrich\"},\"ui\":{\"display_name\":\"Zoom Info IP Enrich\",\"placeholder\":\"Add Zoom Info IP Enrich\"}}],\"name\":\"_gen:implicit:rev-user\"}],\"field_descriptors\":[{\"field_type\":\"composite\",\"composite_type\":\"_gen:created_by\",\"data_name\":\"created_by\",\"db_name\":\"created_by\",\"name\":\"created_by\",\"oasis\":{\"name\":\"created_by\"}},{\"field_type\":\"timestamp\",\"data_name\":\"created_date\",\"db_name\":\"created_date\",\"description\":\"Timestamp when the contact was created.\",\"name\":\"created_date\",\"oasis\":{\"name\":\"created_date\"}},{\"field_type\":\"text\",\"data_name\":\"description\",\"db_name\":\"description\",\"description\":\"Description of the contact.\",\"name\":\"description\",\"oasis\":{\"name\":\"description\"}},{\"field_type\":\"text\",\"data_name\":\"display_id\",\"db_name\":\"display_id\",\"description\":\"Human-readable object ID unique to the Dev organization.\",\"name\":\"display_id\",\"oasis\":{\"name\":\"display_id\"}},{\"field_type\":\"text\",\"data_name\":\"display_name\",\"db_name\":\"display_name\",\"description\":\"The user's display name. The name is non-unique and mutable.\\n\",\"name\":\"display_name\",\"oasis\":{\"name\":\"display_name\"}},{\"field_type\":\"text\",\"data_name\":\"email\",\"db_name\":\"email\",\"description\":\"Email address of the user.\",\"name\":\"email\",\"oasis\":{\"name\":\"email\"}},{\"field_type\":\"text\",\"data_name\":\"full_name\",\"db_name\":\"full_name\",\"description\":\"Full name of the user.\",\"name\":\"full_name\",\"oasis\":{\"name\":\"full_name\"}},{\"field_type\":\"bool\",\"data_name\":\"is_verified\",\"db_name\":\"is_verified\",\"description\":\"Whether the contact is verified or not.\",\"name\":\"is_verified\",\"oasis\":{\"name\":\"is_verified\"}},{\"field_type\":\"composite\",\"composite_type\":\"_gen:modified_by\",\"data_name\":\"modified_by\",\"db_name\":\"modified_by\",\"name\":\"modified_by\",\"oasis\":{\"name\":\"modified_by\"}},{\"field_type\":\"timestamp\",\"data_name\":\"modified_date\",\"db_name\":\"modified_date\",\"description\":\"Timestamp when the contact was last modified.\",\"name\":\"modified_date\",\"oasis\":{\"name\":\"modified_date\"}},{\"field_type\":\"array\",\"base_type\":\"text\",\"data_name\":\"phone_numbers\",\"db_name\":\"phone_numbers\",\"description\":\"Phone numbers of the user.\",\"name\":\"phone_numbers\",\"oasis\":{\"name\":\"phone_numbers\"}},{\"field_type\":\"composite\",\"composite_type\":\"_gen:rev_org\",\"data_name\":\"rev_org\",\"db_name\":\"rev_org\",\"name\":\"rev_org\",\"oasis\":{\"name\":\"rev_org\"},\"ui\":{\"display_name\":\"Workspace\"}},{\"field_type\":\"array\",\"base_type\":\"composite\",\"composite_type\":\"_gen:tags\",\"data_name\":\"tags\",\"db_name\":\"tags\",\"description\":\"Tags associated with the contact.\",\"name\":\"tags\",\"oasis\":{\"name\":\"tags\"}},{\"field_type\":\"composite\",\"composite_type\":\"_gen:implicit:rev-user\",\"data_name\":\"old_rev_user\",\"db_name\":\"old_rev_user\",\"description\":\"Old contact object\",\"name\":\"old_rev_user\",\"oasis\":{\"name\":\"old_rev_user\"},\"ui\":{\"display_name\":\"Old contact\"}},{\"field_type\":\"id\",\"data_name\":\"id\",\"db_name\":\"id\",\"description\":\"Globally unique object ID.\",\"id_type\":[\"revu\"],\"is_required\":true,\"name\":\"id\",\"oasis\":{\"name\":\"id\"}},{\"field_type\":\"tokens\",\"data_name\":\"tnt__anonymous_id\",\"db_name\":\"tnt__anonymous_id\",\"description\":\"Anonymous ID pre signup\",\"name\":\"tnt__anonymous_id\",\"oasis\":{\"name\":\"tnt__anonymous_id\"},\"ui\":{\"display_name\":\"Anonymous ID\",\"placeholder\":\"Add Anonymous ID\"}},{\"supported_filter_ops\":[\"any\",\"not_any\",\"empty\",\"not_empty\"],\"field_type\":\"text\",\"data_name\":\"tnt__beta_stage\",\"db_name\":\"tnt__beta_stage\",\"description\":\"Beta stage\",\"is_filterable\":true,\"name\":\"tnt__beta_stage\",\"oasis\":{\"name\":\"tnt__beta_stage\"},\"ui\":{\"display_name\":\"Beta stage\",\"placeholder\":\"Add Beta stage\"}},{\"supported_filter_ops\":[\"any\",\"not_any\",\"empty\",\"not_empty\"],\"field_type\":\"rich_text\",\"data_name\":\"tnt__call_prep\",\"db_name\":\"tnt__call_prep\",\"description\":\"Add Call Prep Notes\",\"is_filterable\":true,\"name\":\"tnt__call_prep\",\"oasis\":{\"name\":\"tnt__call_prep\"},\"ui\":{\"display_name\":\"Call Prep\",\"placeholder\":\"Call Prep notes\",\"tooltip\":\"Add Call Prep Notes\"}},{\"supported_filter_ops\":[\"any\",\"not_any\",\"empty\",\"not_empty\"],\"field_type\":\"text\",\"data_name\":\"tnt__city\",\"db_name\":\"tnt__city\",\"description\":\"City\",\"is_filterable\":true,\"name\":\"tnt__city\",\"oasis\":{\"name\":\"tnt__city\"},\"ui\":{\"display_name\":\"City\",\"placeholder\":\"Add City\"}},{\"supported_filter_ops\":[\"all\",\"any\",\"not_any\",\"empty\",\"not_empty\"],\"field_type\":\"array\",\"base_type\":\"enum\",\"allowed_values\":[\"Bad Data\",\"Budget Constraints\",\"Change in Business Priorities\",\"Competitive offerings\",\"Concerns about Security or Compliance\",\"Decision Delays\",\"Duplicate\",\"Lack of Features or Functionality\",\"Unresponsive\",\"Unsatisfactory Trial or Demo Experience\"],\"data_name\":\"tnt__closed_reasons\",\"db_name\":\"tnt__closed_reasons\",\"description\":\"Closed Reasons\",\"is_filterable\":true,\"name\":\"tnt__closed_reasons\",\"oasis\":{\"name\":\"tnt__closed_reasons\"},\"ui\":{\"display_name\":\"Closed Reasons\",\"placeholder\":\"Add Closed Reasons\"}},{\"supported_filter_ops\":[\"any\",\"not_any\",\"empty\",\"not_empty\"],\"field_type\":\"enum\",\"allowed_values\":[\"Africa\",\"Asia\",\"Europe\",\"North America\",\"Oceania\",\"South America\"],\"data_name\":\"tnt__continent\",\"db_name\":\"tnt__continent\",\"description\":\"Continent\",\"is_filterable\":true,\"name\":\"tnt__continent\",\"oasis\":{\"name\":\"tnt__continent\"},\"ui\":{\"display_name\":\"Continent\",\"placeholder\":\"Add Continent\"}},{\"supported_filter_ops\":[\"any\",\"not_any\",\"empty\",\"not_empty\"],\"field_type\":\"enum\",\"allowed_values\":[\"Afghanistan\",\"Albania\",\"Algeria\",\"Andorra\",\"Angola\",\"Antigua and Barbuda\",\"Argentina\",\"Armenia\",\"Australia\",\"Austria\",\"Azerbaijan\",\"Bahamas\",\"Bahrain\",\"Bangladesh\",\"Barbados\",\"Belarus\",\"Belgium\",\"Belize\",\"Benin\",\"Bermuda\",\"Bhutan\",\"Bolivia\",\"Bosnia Herzegovina\",\"Bosnia and Herzegovina\",\"Botswana\",\"Brazil\",\"Brunei\",\"Brunei Darussalam\",\"Bulgaria\",\"Burkina Faso\",\"Burundi\",\"Cabo Verde\",\"Cambodia\",\"Cameroon\",\"Canada\",\"Canadian Provinces\",\"Cape Verde\",\"Cayman Islands\",\"Central African Republic\",\"Chad\",\"Channel Islands\",\"Chile\",\"China\",\"Colombia\",\"Comoros\",\"Congo (Congo-Brazzaville)\",\"Congo (DRC)\",\"Congo (Republic)\",\"Cook Islands\",\"Costa Rica\",\"Cote d'Ivoire\",\"Croatia\",\"Cuba\",\"Cyprus\",\"Czech Republic\",\"Czechia\",\"Czechia (Czech Republic)\",\"Côte d'Ivoire\",\"Democratic Republic of the Congo\",\"Denmark\",\"Djibouti\",\"Dominica\",\"Dominican Republic\",\"Ecuador\",\"Egypt\",\"El Salvador\",\"England\",\"Equatorial Guinea\",\"Eritrea\",\"Estonia\",\"Eswatini (fmr. Swaziland)\",\"Ethiopia\",\"Faeroe Islands\",\"Falkland Islands\",\"Fiji\",\"Finland\",\"France\",\"French Guiana\",\"French Polynesia\",\"Gabon\",\"Gambia\",\"Georgia\",\"Germany\",\"Ghana\",\"Gibraltar\",\"Greece\",\"Greenland\",\"Grenada\",\"Guadeloupe\",\"Guam\",\"Guatemala\",\"Guinea\",\"Guinea-Bissau\",\"Guyana\",\"Haiti\",\"Holy See\",\"Honduras\",\"Hong Kong\",\"Hungary\",\"Iceland\",\"India\",\"Indonesia\",\"Iran\",\"Iraq\",\"Ireland\",\"Isle of Man\",\"Israel\",\"Italy\",\"Jamaica\",\"Japan\",\"Jordan\",\"Kazakhstan\",\"Kenya\",\"Kiribati\",\"Kuwait\",\"Kyrgyzstan\",\"Laos\",\"Latvia\",\"Lebanon\",\"Lesotho\",\"Liberia\",\"Libya\",\"Liechtenstein\",\"Lithuania\",\"Luxembourg\",\"Macau\",\"Macedonia\",\"Madagascar\",\"Malawi\",\"Malaysia\",\"Maldives\",\"Mali\",\"Malta\",\"Marshall Islands\",\"Martinique\",\"Mauritania\",\"Mauritius\",\"Mexico\",\"Micronesia\",\"Moldova\",\"Monaco\",\"Mongolia\",\"Montenegro\",\"Montserrat\",\"Morocco\",\"Mozambique\",\"Myanmar\",\"Myanmar (formerly Burma)\",\"Namibia\",\"Nauru\",\"Nepal\",\"Netherlands\",\"New Caledonia\",\"New Zealand\",\"Nicaragua\",\"Niger\",\"Nigeria\",\"North Korea\",\"North Macedonia\",\"Norway\",\"Oman\",\"Others\",\"Pakistan\",\"Palau\",\"Palestine State\",\"Panama\",\"Papua New Guinea\",\"Paraguay\",\"Peru\",\"Philippines\",\"Pitcairn\",\"Poland\",\"Portugal\",\"Puerto Rico\",\"Qatar\",\"Romania\",\"Russia\",\"Rwanda\",\"Saint Kitts and Nevis\",\"Saint Lucia\",\"Saint Pierre Miquelon\",\"Saint Vincent and the Grenadines\",\"Samoa\",\"San Marino\",\"Sao Tome and Principe\",\"Saudi Arabia\",\"Senegal\",\"Serbia\",\"Seychelles\",\"Sierra Leone\",\"Singapore\",\"Slovakia\",\"Slovenia\",\"Solomon Islands\",\"Somalia\",\"South Africa\",\"South Korea\",\"South Sudan\",\"Spain\",\"Sri Lanka\",\"Sudan\",\"Suriname\",\"Swaziland\",\"Sweden\",\"Switzerland\",\"Syria\",\"Taiwan\",\"Tajikistan\",\"Tanzania\",\"Thailand\",\"Tibet\",\"Timor-Leste\",\"Togo\",\"Tonga\",\"Trinidad and Tobago\",\"Tunisia\",\"Turkey\",\"Turkmenistan\",\"Turks Caicos\",\"Tuvalu\",\"Uganda\",\"Ukraine\",\"United Arab Emirates\",\"United Kingdom\",\"United States\",\"Uruguay\",\"Uzbekistan\",\"Vanuatu\",\"Venezuela\",\"Vietnam\",\"Western Sahara\",\"Yemen\",\"Zambia\",\"Zimbabwe\"],\"data_name\":\"tnt__country\",\"db_name\":\"tnt__country\",\"description\":\"Country\",\"is_filterable\":true,\"name\":\"tnt__country\",\"oasis\":{\"name\":\"tnt__country\"},\"ui\":{\"display_name\":\"Country\",\"placeholder\":\"Add Country\"}},{\"field_type\":\"bool\",\"data_name\":\"tnt__customer_of_ue\",\"db_name\":\"tnt__customer_of_ue\",\"default_value\":false,\"description\":\"Specifies whether the rev-user is a customer of UE\",\"is_filterable\":true,\"name\":\"tnt__customer_of_ue\",\"oasis\":{\"name\":\"tnt__customer_of_ue\"},\"ui\":{\"display_name\":\"Customer Of UE\",\"placeholder\":\"Add Customer Of UE\"}},{\"supported_filter_ops\":[\"any\",\"not_any\",\"empty\",\"not_empty\"],\"field_type\":\"int\",\"data_name\":\"tnt__days\",\"db_name\":\"tnt__days\",\"description\":\"The number of unique calendar days a given user spent on the website/app.\",\"is_filterable\":true,\"name\":\"tnt__days\",\"oasis\":{\"name\":\"tnt__days\"},\"ui\":{\"display_name\":\"Days\",\"placeholder\":\"Add Days\"}},{\"supported_filter_ops\":[\"any\",\"not_any\",\"empty\",\"not_empty\"],\"field_type\":\"enum\",\"allowed_values\":[\"CXO\",\"Customer Success\",\"Data & Analytics\",\"Design\",\"Engineering\",\"Finance\",\"HR\",\"IT\",\"Operations\",\"Others\",\"Product\",\"Sales\",\"Support\"],\"data_name\":\"tnt__department\",\"db_name\":\"tnt__department\",\"description\":\"Specifies the department of the contact\",\"is_filterable\":true,\"name\":\"tnt__department\",\"oasis\":{\"name\":\"tnt__department\"},\"ui\":{\"display_name\":\"Department\",\"placeholder\":\"Add department\"}},{\"supported_filter_ops\":[\"any\",\"not_any\",\"empty\",\"not_empty\"],\"field_type\":\"text\",\"data_name\":\"tnt__discord_handle\",\"db_name\":\"tnt__discord_handle\",\"description\":\"discord handle\",\"is_filterable\":true,\"name\":\"tnt__discord_handle\",\"oasis\":{\"name\":\"tnt__discord_handle\"},\"ui\":{\"display_name\":\"Discord\",\"placeholder\":\"Add Discord\"}},{\"field_type\":\"bool\",\"data_name\":\"tnt__do_not_contact\",\"db_name\":\"tnt__do_not_contact\",\"default_value\":false,\"description\":\"Do Not Contact\",\"is_filterable\":true,\"name\":\"tnt__do_not_contact\",\"oasis\":{\"name\":\"tnt__do_not_contact\"},\"ui\":{\"display_name\":\"Do Not Contact\",\"placeholder\":\"Add Do Not Contact\"}},{\"supported_filter_ops\":[\"any\",\"not_any\",\"empty\",\"not_empty\"],\"field_type\":\"text\",\"data_name\":\"tnt__do_not_contact_reasons\",\"db_name\":\"tnt__do_not_contact_reasons\",\"description\":\"Do Not Contact Reasons\",\"is_filterable\":true,\"name\":\"tnt__do_not_contact_reasons\",\"oasis\":{\"name\":\"tnt__do_not_contact_reasons\"},\"ui\":{\"display_name\":\"Do Not Contact Reasons\",\"placeholder\":\"Add Do Not Contact Reasons\"}},{\"supported_filter_ops\":[\"any\",\"not_any\",\"empty\",\"not_empty\"],\"field_type\":\"text\",\"data_name\":\"tnt__email_prep\",\"db_name\":\"tnt__email_prep\",\"description\":\"Email Prep for sales \",\"is_filterable\":true,\"name\":\"tnt__email_prep\",\"oasis\":{\"name\":\"tnt__email_prep\"},\"ui\":{\"display_name\":\"Email Prep\",\"placeholder\":\"Email Prep for sales\",\"tooltip\":\"Email Prep for sales \"}},{\"supported_filter_ops\":[\"any\",\"not_any\",\"empty\",\"not_empty\"],\"field_type\":\"enum\",\"allowed_values\":[\"Attended\",\"Invited\",\"Not Attended\",\"Registered\",\"Responded\"],\"data_name\":\"tnt__event_contact_status\",\"db_name\":\"tnt__event_contact_status\",\"description\":\"Shows the status of the contact as Invited, Registered, Attended and Not-Attended\",\"is_filterable\":true,\"name\":\"tnt__event_contact_status\",\"oasis\":{\"name\":\"tnt__event_contact_status\"},\"ui\":{\"display_name\":\"Event Contact Status\",\"placeholder\":\"Leads/contacts event status to track \",\"tooltip\":\"Add Contact Event Status\"}},{\"field_type\":\"text\",\"data_name\":\"tnt__first_name\",\"db_name\":\"tnt__first_name\",\"description\":\"First Name\",\"is_filterable\":false,\"name\":\"tnt__first_name\",\"oasis\":{\"name\":\"tnt__first_name\"},\"ui\":{\"display_name\":\"First Name\",\"placeholder\":\"Add First Name\"}},{\"supported_filter_ops\":[\"any\",\"not_any\",\"empty\",\"not_empty\"],\"field_type\":\"text\",\"data_name\":\"tnt__first_utm_campaign\",\"db_name\":\"tnt__first_utm_campaign\",\"description\":\"\",\"is_filterable\":true,\"name\":\"tnt__first_utm_campaign\",\"oasis\":{\"name\":\"tnt__first_utm_campaign\"},\"ui\":{\"display_name\":\"First UTM Campaign\",\"placeholder\":\"Add First UTM Campaign\"}},{\"supported_filter_ops\":[\"any\",\"not_any\",\"empty\",\"not_empty\"],\"field_type\":\"text\",\"data_name\":\"tnt__first_utm_content\",\"db_name\":\"tnt__first_utm_content\",\"description\":\"\",\"is_filterable\":true,\"name\":\"tnt__first_utm_content\",\"oasis\":{\"name\":\"tnt__first_utm_content\"},\"ui\":{\"display_name\":\"First UTM Content\",\"placeholder\":\"Add First UTM Content\"}},{\"supported_filter_ops\":[\"any\",\"not_any\",\"empty\",\"not_empty\"],\"field_type\":\"text\",\"data_name\":\"tnt__first_utm_medium\",\"db_name\":\"tnt__first_utm_medium\",\"description\":\"\",\"is_filterable\":true,\"name\":\"tnt__first_utm_medium\",\"oasis\":{\"name\":\"tnt__first_utm_medium\"},\"ui\":{\"display_name\":\"First UTM Medium\",\"placeholder\":\"Add First UTM Medium\"}},{\"supported_filter_ops\":[\"any\",\"not_any\",\"empty\",\"not_empty\"],\"field_type\":\"text\",\"data_name\":\"tnt__first_utm_source\",\"db_name\":\"tnt__first_utm_source\",\"description\":\"\",\"is_filterable\":true,\"name\":\"tnt__first_utm_source\",\"oasis\":{\"name\":\"tnt__first_utm_source\"},\"ui\":{\"display_name\":\"First UTM Source\",\"placeholder\":\"Add First UTM Source\"}},{\"supported_filter_ops\":[\"any\",\"not_any\",\"empty\",\"not_empty\"],\"field_type\":\"text\",\"data_name\":\"tnt__first_utm_term\",\"db_name\":\"tnt__first_utm_term\",\"description\":\"\",\"is_filterable\":true,\"name\":\"tnt__first_utm_term\",\"oasis\":{\"name\":\"tnt__first_utm_term\"},\"ui\":{\"display_name\":\"First UTM Term\",\"placeholder\":\"Add First UTM Term\"}},{\"supported_filter_ops\":[\"any\",\"not_any\",\"empty\",\"not_empty\"],\"field_type\":\"text\",\"data_name\":\"tnt__first_visit_device\",\"db_name\":\"tnt__first_visit_device\",\"description\":\"The device used by a user in their first interaction or touchpoint with the website/app.\",\"is_filterable\":true,\"name\":\"tnt__first_visit_device\",\"oasis\":{\"name\":\"tnt__first_visit_device\"},\"ui\":{\"display_name\":\"First Visit Device\",\"placeholder\":\"Add First Visit Device\"}},{\"supported_filter_ops\":[\"any\",\"not_any\",\"empty\",\"not_empty\"],\"field_type\":\"text\",\"data_name\":\"tnt__first_visit_source\",\"db_name\":\"tnt__first_visit_source\",\"description\":\"The source or referring channel (digital/physical) through which a user came into the website/app.\",\"is_filterable\":true,\"name\":\"tnt__first_visit_source\",\"oasis\":{\"name\":\"tnt__first_visit_source\"},\"ui\":{\"display_name\":\"First Visit Source\",\"placeholder\":\"Add First Visit Source\"}},{\"field_type\":\"timestamp\",\"data_name\":\"tnt__first_visit_timestamp\",\"db_name\":\"tnt__first_visit_timestamp\",\"description\":\"The timestamp indicating the timestamp of the initial interaction or touchpoint of a user with the website/app.\",\"is_filterable\":true,\"name\":\"tnt__first_visit_timestamp\",\"oasis\":{\"name\":\"tnt__first_visit_timestamp\"},\"ui\":{\"display_name\":\"First Visit Timestamp\",\"placeholder\":\"Add First Visit Timestamp\"}},{\"supported_filter_ops\":[\"any\",\"not_any\",\"empty\",\"not_empty\"],\"field_type\":\"text\",\"data_name\":\"tnt__github_handle\",\"db_name\":\"tnt__github_handle\",\"description\":\"github handle\",\"is_filterable\":true,\"name\":\"tnt__github_handle\",\"oasis\":{\"name\":\"tnt__github_handle\"},\"ui\":{\"display_name\":\"Github\",\"placeholder\":\"Add Github\"}},{\"field_type\":\"text\",\"data_name\":\"tnt__google_ads\",\"db_name\":\"tnt__google_ads\",\"description\":\"Google Ads\",\"is_filterable\":false,\"name\":\"tnt__google_ads\",\"oasis\":{\"name\":\"tnt__google_ads\"},\"ui\":{\"display_name\":\"Google Ads\",\"placeholder\":\"Add Google Ads\"}},{\"supported_filter_ops\":[\"any\",\"not_any\",\"empty\",\"not_empty\"],\"field_type\":\"enum\",\"allowed_values\":[\"AAI-1\",\"AAI-2\",\"AAI-3\",\"AAI-4\"],\"data_name\":\"tnt__implementation_enablement_level\",\"db_name\":\"tnt__implementation_enablement_level\",\"description\":\"Proficiency level\",\"is_filterable\":true,\"name\":\"tnt__implementation_enablement_level\",\"oasis\":{\"name\":\"tnt__implementation_enablement_level\"},\"ui\":{\"display_name\":\"Implementation Enablement Level\",\"placeholder\":\"Add proficiency level\"}},{\"field_type\":\"text\",\"data_name\":\"tnt__intent\",\"db_name\":\"tnt__intent\",\"description\":\"DO NOT REMOVE !!! This field is used to capture the intent for devorg creation/usage by the corresponding contact.\",\"is_filterable\":false,\"name\":\"tnt__intent\",\"oasis\":{\"name\":\"tnt__intent\"},\"ui\":{\"display_name\":\"intent\",\"placeholder\":\"Field capturing the user's devorg usage intent\",\"tooltip\":\"Field capturing the user's devorg usage intent\"}},{\"field_type\":\"bool\",\"data_name\":\"tnt__is_california\",\"db_name\":\"tnt__is_california\",\"default_value\":false,\"description\":\"Specifies whether the rev-user is in California or not\",\"is_filterable\":true,\"name\":\"tnt__is_california\",\"oasis\":{\"name\":\"tnt__is_california\"},\"ui\":{\"display_name\":\"Is California\",\"placeholder\":\"Add Is California\"}},{\"field_type\":\"bool\",\"data_name\":\"tnt__is_canada\",\"db_name\":\"tnt__is_canada\",\"default_value\":false,\"description\":\"Specifies whether the rev-user is in Canada or not\",\"is_filterable\":true,\"name\":\"tnt__is_canada\",\"oasis\":{\"name\":\"tnt__is_canada\"},\"ui\":{\"display_name\":\"Is Canada\",\"placeholder\":\"Add Is Canada\"}},{\"supported_filter_ops\":[\"any\",\"not_any\",\"empty\",\"not_empty\"],\"field_type\":\"enum\",\"allowed_values\":[\"C-Suite\",\"Chairperson\",\"Director\",\"Entry-Level\",\"Individual Contributor\",\"Manager\",\"Others\",\"President\",\"Senior Individual Contributor\",\"Vice President\"],\"data_name\":\"tnt__job_level\",\"db_name\":\"tnt__job_level\",\"description\":\"Job Level\",\"is_filterable\":true,\"name\":\"tnt__job_level\",\"oasis\":{\"name\":\"tnt__job_level\"},\"ui\":{\"display_name\":\"Job Level\",\"placeholder\":\"Add Job Level\"}},{\"supported_filter_ops\":[\"any\",\"not_any\",\"empty\",\"not_empty\"],\"field_type\":\"text\",\"data_name\":\"tnt__job_title\",\"db_name\":\"tnt__job_title\",\"description\":\"Job title\",\"is_filterable\":true,\"name\":\"tnt__job_title\",\"oasis\":{\"name\":\"tnt__job_title\"},\"ui\":{\"display_name\":\"Job title\",\"placeholder\":\"Add Job title\"}},{\"field_type\":\"bool\",\"data_name\":\"tnt__key_contact\",\"db_name\":\"tnt__key_contact\",\"default_value\":false,\"description\":\"Specifies whether the rev-user is a key contact\",\"is_filterable\":true,\"name\":\"tnt__key_contact\",\"oasis\":{\"name\":\"tnt__key_contact\"},\"ui\":{\"display_name\":\"Key Contact\",\"placeholder\":\"Add Key Contact\"}},{\"field_type\":\"text\",\"data_name\":\"tnt__last_name\",\"db_name\":\"tnt__last_name\",\"description\":\"Last Name\",\"is_filterable\":false,\"name\":\"tnt__last_name\",\"oasis\":{\"name\":\"tnt__last_name\"},\"ui\":{\"display_name\":\"Last Name\",\"placeholder\":\"Add Last Name\"}},{\"supported_filter_ops\":[\"any\",\"not_any\",\"empty\",\"not_empty\"],\"field_type\":\"enum\",\"allowed_values\":[\"1-10\",\"11-20\",\"21-30\",\"31-40\",\"41-50\",\"51-60\",\"61-70\",\"71-80\",\"81-90\",\"91-100\"],\"data_name\":\"tnt__lead_score\",\"db_name\":\"tnt__lead_score\",\"description\":\"Lead Score\",\"is_filterable\":true,\"name\":\"tnt__lead_score\",\"oasis\":{\"name\":\"tnt__lead_score\"},\"ui\":{\"display_name\":\"Lead Score\",\"placeholder\":\"Add Lead Score\"}},{\"supported_filter_ops\":[\"any\",\"not_any\",\"empty\",\"not_empty\"],\"field_type\":\"int\",\"data_name\":\"tnt__lifetime_secs\",\"db_name\":\"tnt__lifetime_secs\",\"description\":\"The total number of seconds a user spent on the website/app.\",\"is_filterable\":true,\"name\":\"tnt__lifetime_secs\",\"oasis\":{\"name\":\"tnt__lifetime_secs\"},\"ui\":{\"display_name\":\"Lifetime Secs\",\"placeholder\":\"Add Lifetime Secs\"}},{\"field_type\":\"text\",\"data_name\":\"tnt__linkedin_ads\",\"db_name\":\"tnt__linkedin_ads\",\"description\":\"LinkedIn Ads\",\"is_filterable\":false,\"name\":\"tnt__linkedin_ads\",\"oasis\":{\"name\":\"tnt__linkedin_ads\"},\"ui\":{\"display_name\":\"LinkedIn Ads\",\"placeholder\":\"Add LinkedIn Ads\"}},{\"field_type\":\"text\",\"data_name\":\"tnt__linkedin_enrich\",\"db_name\":\"tnt__linkedin_enrich\",\"description\":\"LinkedIn Enrich\",\"is_filterable\":false,\"name\":\"tnt__linkedin_enrich\",\"oasis\":{\"name\":\"tnt__linkedin_enrich\"},\"ui\":{\"display_name\":\"LinkedIn Enrich\",\"placeholder\":\"Add LinkedIn Enrich\"}},{\"supported_filter_ops\":[\"any\",\"not_any\",\"empty\",\"not_empty\"],\"field_type\":\"text\",\"data_name\":\"tnt__linkedin_profile\",\"db_name\":\"tnt__linkedin_profile\",\"description\":\"LinkedIn Profile Page\",\"is_filterable\":true,\"name\":\"tnt__linkedin_profile\",\"oasis\":{\"name\":\"tnt__linkedin_profile\"},\"ui\":{\"display_name\":\"LinkedIn Profile\",\"placeholder\":\"Add LinkedIn Profile\"}},{\"field_type\":\"bool\",\"data_name\":\"tnt__marketing_qualified_lead\",\"db_name\":\"tnt__marketing_qualified_lead\",\"default_value\":false,\"description\":\"MQL\",\"is_filterable\":true,\"name\":\"tnt__marketing_qualified_lead\",\"oasis\":{\"name\":\"tnt__marketing_qualified_lead\"},\"ui\":{\"display_name\":\"MQL\",\"placeholder\":\"Add MQL\"}},{\"field_type\":\"timestamp\",\"data_name\":\"tnt__most_recent_timestamp\",\"db_name\":\"tnt__most_recent_timestamp\",\"description\":\"The last time any user belonging to an account visited the website/app.\",\"is_filterable\":true,\"name\":\"tnt__most_recent_timestamp\",\"oasis\":{\"name\":\"tnt__most_recent_timestamp\"},\"ui\":{\"display_name\":\"Most Recent Timestamp\",\"placeholder\":\"Add Most Recent Timestamp\"}},{\"supported_filter_ops\":[\"any\",\"not_any\",\"empty\",\"not_empty\"],\"field_type\":\"text\",\"data_name\":\"tnt__outreach_account_id\",\"db_name\":\"tnt__outreach_account_id\",\"description\":\"Outreach Account ID\",\"is_filterable\":true,\"name\":\"tnt__outreach_account_id\",\"oasis\":{\"name\":\"tnt__outreach_account_id\"},\"ui\":{\"display_name\":\"Outreach Account\",\"placeholder\":\"Add Outreach Account\"}},{\"supported_filter_ops\":[\"any\",\"not_any\",\"empty\",\"not_empty\"],\"field_type\":\"text\",\"data_name\":\"tnt__outreach_prospect_id\",\"db_name\":\"tnt__outreach_prospect_id\",\"description\":\"Outreach Prospect ID\",\"is_filterable\":true,\"name\":\"tnt__outreach_prospect_id\",\"oasis\":{\"name\":\"tnt__outreach_prospect_id\"},\"ui\":{\"display_name\":\"Outreach Prospect ID\",\"placeholder\":\"Add Outreach Prospect ID\"}},{\"supported_filter_ops\":[\"any\",\"not_any\",\"empty\",\"not_empty\"],\"field_type\":\"id\",\"data_name\":\"tnt__owner\",\"db_name\":\"tnt__owner\",\"description\":\"Indicates the owner for the contact\",\"id_type\":[\"user\"],\"is_filterable\":true,\"name\":\"tnt__owner\",\"oasis\":{\"name\":\"tnt__owner\"},\"origin\":\"revu\",\"ui\":{\"display_name\":\"Owner\",\"placeholder\":\"Add Owner\"}},{\"supported_filter_ops\":[\"any\",\"not_any\",\"empty\",\"not_empty\"],\"field_type\":\"int\",\"data_name\":\"tnt__page_visits\",\"db_name\":\"tnt__page_visits\",\"description\":\"The number of pages a user visited on the website/app.\",\"is_filterable\":true,\"name\":\"tnt__page_visits\",\"oasis\":{\"name\":\"tnt__page_visits\"},\"ui\":{\"display_name\":\"Page Visits\",\"placeholder\":\"Add Page Visits\"}},{\"supported_filter_ops\":[\"all\",\"any\",\"not_any\",\"empty\",\"not_empty\"],\"field_type\":\"array\",\"base_type\":\"enum\",\"allowed_values\":[\"OneCRM\",\"Pro Build\",\"Pro Grow\",\"Pro Support\",\"Starter Build\",\"Starter Grow\",\"Starter Support\",\"Ultimate Build\",\"Ultimate Grow\",\"Ultimate Support\"],\"data_name\":\"tnt__plans\",\"db_name\":\"tnt__plans\",\"description\":\"Plans\",\"is_filterable\":true,\"name\":\"tnt__plans\",\"oasis\":{\"name\":\"tnt__plans\"},\"ui\":{\"display_name\":\"Plans\",\"placeholder\":\"Add Plans\"}},{\"supported_filter_ops\":[\"any\",\"not_any\",\"empty\",\"not_empty\"],\"field_type\":\"int\",\"data_name\":\"tnt__pql_score\",\"db_name\":\"tnt__pql_score\",\"description\":\"Product qualified lead score of the RevUser/RevOrg\",\"is_filterable\":true,\"name\":\"tnt__pql_score\",\"oasis\":{\"name\":\"tnt__pql_score\"},\"ui\":{\"display_name\":\"PQL Score\",\"placeholder\":\"Add PQL Score\"}},{\"supported_filter_ops\":[\"any\",\"not_any\",\"empty\",\"not_empty\"],\"field_type\":\"enum\",\"allowed_values\":[\"1\",\"2\",\"3\",\"4\"],\"data_name\":\"tnt__pre_sales_enablement_level\",\"db_name\":\"tnt__pre_sales_enablement_level\",\"description\":\"Pre-Sales Enablement Level\",\"is_filterable\":true,\"name\":\"tnt__pre_sales_enablement_level\",\"oasis\":{\"name\":\"tnt__pre_sales_enablement_level\"},\"ui\":{\"display_name\":\"Pre-Sales Enablement Level\",\"placeholder\":\"Add Pre-Sales Enablement Level \"}},{\"supported_filter_ops\":[\"any\",\"not_any\",\"empty\",\"not_empty\"],\"field_type\":\"id\",\"data_name\":\"tnt__primary_partner_contact\",\"db_name\":\"tnt__primary_partner_contact\",\"description\":\"Primary Partner Contact\",\"id_type\":[\"revu\"],\"is_filterable\":true,\"name\":\"tnt__primary_partner_contact\",\"oasis\":{\"name\":\"tnt__primary_partner_contact\"},\"ui\":{\"display_name\":\"Primary Partner Contact\",\"placeholder\":\"Add Primary Partner Contact\"}},{\"supported_filter_ops\":[\"any\",\"not_any\",\"empty\",\"not_empty\"],\"field_type\":\"text\",\"data_name\":\"tnt__role\",\"db_name\":\"tnt__role\",\"description\":\"DevUser Role in Org\",\"is_filterable\":true,\"name\":\"tnt__role\",\"oasis\":{\"name\":\"tnt__role\"},\"ui\":{\"display_name\":\"Role\",\"placeholder\":\"Add Role\"}},{\"field_type\":\"bool\",\"data_name\":\"tnt__sales_qualified_lead\",\"db_name\":\"tnt__sales_qualified_lead\",\"default_value\":false,\"description\":\"SQL\",\"is_filterable\":true,\"name\":\"tnt__sales_qualified_lead\",\"oasis\":{\"name\":\"tnt__sales_qualified_lead\"},\"ui\":{\"display_name\":\"SQL\",\"placeholder\":\"Add SQL\"}},{\"supported_filter_ops\":[\"any\",\"not_any\",\"empty\",\"not_empty\"],\"field_type\":\"text\",\"data_name\":\"tnt__session_exit_page_url\",\"db_name\":\"tnt__session_exit_page_url\",\"description\":\"Session Exit Page URL\",\"is_filterable\":true,\"name\":\"tnt__session_exit_page_url\",\"oasis\":{\"name\":\"tnt__session_exit_page_url\"},\"ui\":{\"display_name\":\"Session Exit Page URL\",\"placeholder\":\"Add Session Exit Page URL\"}},{\"supported_filter_ops\":[\"any\",\"not_any\",\"empty\",\"not_empty\"],\"field_type\":\"text\",\"data_name\":\"tnt__session_landing_page_url\",\"db_name\":\"tnt__session_landing_page_url\",\"description\":\"Session Landing Page URL\",\"is_filterable\":true,\"name\":\"tnt__session_landing_page_url\",\"oasis\":{\"name\":\"tnt__session_landing_page_url\"},\"ui\":{\"display_name\":\"Session Landing Page URL\",\"placeholder\":\"Add Session Landing Page URL\"}},{\"field_type\":\"timestamp\",\"data_name\":\"tnt__session_last_timestamp\",\"db_name\":\"tnt__session_last_timestamp\",\"description\":\"Last Session TimeStamp\",\"is_filterable\":true,\"name\":\"tnt__session_last_timestamp\",\"oasis\":{\"name\":\"tnt__session_last_timestamp\"},\"ui\":{\"display_name\":\"Last Session TimeStamp\",\"placeholder\":\"Add Last Session TimeStamp\"}},{\"field_type\":\"timestamp\",\"data_name\":\"tnt__signed_up_date\",\"db_name\":\"tnt__signed_up_date\",\"description\":\"Signed-up date\",\"is_filterable\":true,\"name\":\"tnt__signed_up_date\",\"oasis\":{\"name\":\"tnt__signed_up_date\"},\"ui\":{\"display_name\":\"Signed-up date\",\"placeholder\":\"Add Signed-up date\"}},{\"supported_filter_ops\":[\"any\",\"not_any\",\"empty\",\"not_empty\"],\"field_type\":\"enum\",\"allowed_values\":[\"Advisor\",\"Events: Effortless\",\"Events: Exec Dinners\",\"Events: Industry Events\",\"Events: Meetups\",\"Events: Webinar\",\"Inbound: Organic\",\"Inbound: Paid\",\"Outbound\",\"Partner\"],\"data_name\":\"tnt__source\",\"db_name\":\"tnt__source\",\"description\":\"Source\",\"is_filterable\":true,\"name\":\"tnt__source\",\"oasis\":{\"name\":\"tnt__source\"},\"ui\":{\"display_name\":\"Source\",\"placeholder\":\"Add Source\"}},{\"supported_filter_ops\":[\"any\",\"not_any\",\"empty\",\"not_empty\"],\"field_type\":\"text\",\"data_name\":\"tnt__state\",\"db_name\":\"tnt__state\",\"description\":\"State\",\"is_filterable\":true,\"name\":\"tnt__state\",\"oasis\":{\"name\":\"tnt__state\"},\"ui\":{\"display_name\":\"State\",\"placeholder\":\"Add State\"}},{\"supported_filter_ops\":[\"any\",\"not_any\",\"empty\",\"not_empty\"],\"field_type\":\"enum\",\"allowed_values\":[\"0-New\",\"1-Shortlisted\",\"2-Prospecting\",\"3-Engaged\",\"4-Opportunity in Progress\",\"5-Return to Nurture\",\"6-Qualified Out\"],\"data_name\":\"tnt__status\",\"db_name\":\"tnt__status\",\"default_value\":\"0-New\",\"description\":\"Status\",\"is_filterable\":true,\"name\":\"tnt__status\",\"oasis\":{\"name\":\"tnt__status\"},\"ui\":{\"display_name\":\"Status\",\"placeholder\":\"Add Status\"}},{\"supported_filter_ops\":[\"any\",\"not_any\",\"empty\",\"not_empty\"],\"field_type\":\"text\",\"data_name\":\"tnt__street\",\"db_name\":\"tnt__street\",\"description\":\"Street\",\"is_filterable\":true,\"name\":\"tnt__street\",\"oasis\":{\"name\":\"tnt__street\"},\"ui\":{\"display_name\":\"Street\",\"placeholder\":\"Add Street\"}},{\"supported_filter_ops\":[\"any\",\"not_any\",\"empty\",\"not_empty\"],\"field_type\":\"enum\",\"allowed_values\":[\"10mar-post\",\"2023-Q3-AWS+TiE Dinner\",\"2023_Q3_12InvestorList\",\"2023_Q3_ATX-AI-Happyhour\",\"2023_Q3_DF Happyhour\",\"2023_Q3_ELC\",\"2023_Q3_Effortless\",\"2023_Q3_Mamram\",\"2023_Q3_Productledsummit\",\"2023_Q3_SaaStr\",\"2023_Q3_Supportdriven\",\"2023_Q3_TC-happyhour\",\"2023_Q4_DP_Meetup\",\"2023_Q4_Oaklandsummit\",\"2023_Q4_Support_Driven_Leadership_Expo_Oakland\",\"2023_Q4_saasboomi-RT\",\"AIConclave22\",\"AWS\",\"AWS Roundtable'23\",\"AWS:re-invent2022\",\"Aditi Jain\",\"Agustin Vivas\",\"Allable\",\"Ameena Beevi\",\"Anindya Misra\",\"Argentinameetup23\",\"Atlassian Team'23\",\"Austinmeetup23\",\"Beta Launch\",\"BillBoardSept2023\",\"Billing Campaign: Responded\",\"Blrtechsummit2022\",\"Boomer Banaag\",\"Brainmates\",\"BrandCampaign\",\"CCW\",\"CIO-VirtualEvent\",\"CIO-summit23\",\"CIOKulb event\",\"CSISRAEL23\",\"CSS\",\"Campaign LP --- 91Ninjas x Support Form 1\",\"Campaign LP --- 91Ninjas x Support Form 2\",\"Campaign LP --- 91Ninjas x Ticketing\",\"Campaign LP --- AI Chatbot\",\"Campaign LP --- AI Support & Chatbot\",\"Campaign LP --- Customer Service/Helpdesk Software\",\"Campaign LP --- DevRev vs Zendesk\",\"Campaign LP --- Support Software\",\"Campaign LP --- Ticketing\",\"Chandra Nath\",\"Chase McDowell\",\"Circle\",\"Cohort 0\",\"Cohort 1\",\"Conversion\",\"Customer Referral\",\"CustomerPlusProduct\",\"CustomerSupport\",\"CustomerSupportBangalore\",\"CustomerSupportRetarget\",\"Derek Bennett\",\"DevRev+AWS-Meetup\",\"DevRev+AWS-Meetup22\",\"DevRev+CIOKlub-Meetup\",\"DevRev+CIOKlubChennai-Meetup\",\"DevRev+Descope-Meetup'23\",\"DevRev+IITM-Meetup23\",\"DevRev+MXV-Meetup\",\"DevRev+Mayfield-June23\",\"DevRev+SaaSInsider+Github-Meetup\",\"DevRev+Saasboomi-Meetup22\",\"DevRev+Stripe-Happyhour\",\"DevRev+TogetherFund-Meetup23\",\"DevRev-Meetup22\",\"Dheeraj Pandey\",\"ELC Annual'23\",\"EarlyStageStartups\",\"Elevate\",\"Emily Dworkin\",\"Event-Beta Launch\",\"Event-Circle Talk\",\"Event-India Meetup\",\"Event-Leo Capital\",\"Event-Podim\",\"Event-Product Tech Meetup\",\"Event-SaaSBOOMi\",\"Event-SxSW\",\"Event-TechCrunch Summer Party\",\"Events\",\"Frank Ochambela\",\"FreshdeskHypertarget\",\"GA-Tech Crunch\",\"GA_Conversion\",\"Game\",\"Gaurish Lawande\",\"Gayathri Balasubramanian\",\"Geektimecode23\",\"Gowri S\",\"Harmonic\",\"IQPC\",\"IsraelMeetup23\",\"Jae Hosking\",\"Jatin G\",\"Jeffin Mathew\",\"Joaquin Cordoba\",\"Kavya Kommareddy\",\"Kevin Kosacoff\",\"Lautaro Ortiz\",\"Lead_LinkedIn Campaign\",\"Mamram\",\"Manish Jindal\",\"Manoj Agarwal\",\"Manoj R\",\"Mayfield\",\"Mayfieldmeetup23\",\"Meetmagic + Innovatus\",\"Millenium Alliance\",\"Mubin Khan\",\"Mumbai 8-10th Jan 23 Outreach\",\"Neeraj Matiyani\",\"Noor J\",\"NvidiaGTC\",\"Omid\",\"Omkar Babar\",\"Ophir Rom\",\"Ortus\",\"PM List\",\"Paige Caldwell\",\"Paul Park\",\"PerformanceCampaign\",\"PerformanceMax\",\"Physicalinvites\",\"Podim'23\",\"Press\",\"Product School\",\"Product-Unconference'23\",\"Q1FY25_CSS_Exec_Event_London\",\"Q2FY25_Effortless_New_York\",\"Q4FY23-Closed\",\"Ramya Iyer\",\"Razorpay\",\"Relationship\",\"Retarget campaign\",\"Rohan Soj\",\"SD\",\"SG-Booth23\",\"SG-DGB23\",\"SG-ExhibitingComp23\",\"SG-OfficeHours23\",\"SG-Roundtable23\",\"SG-TargetedList23\",\"SXSW\",\"SZW group\",\"SaaS Central'23\",\"SaaS Con'23\",\"SaaSboomi Annual 2023\",\"SaaStock-Happyhour'23\",\"Saastr Europe 23\",\"SaastrAug2023\",\"Sabari Prasanth\",\"Sanjay Somashekar\",\"Shamanth Kengeri\",\"Start-Up Spark\",\"Startup\",\"Strong Relationship\",\"Sunil Mahale\",\"Support Driven\",\"Swapnil Pancholi\",\"TPF'23\",\"TSIA\",\"Tech and Leadership Meetup\",\"Techmind\",\"Tom Emmanual\",\"UBS Forums\",\"UE\",\"Ufirst-23\",\"Vimlesh Gautam\",\"Yadhu Krishnan\",\"Yellowai\",\"ZendeskAlternative\",\"ZendeskHypertarget\",\"ZendeskReplace\",\"beta_campaign22\",\"beta_campaign_april22\",\"beta_campaign_jun22\",\"beta_campaign_may22\",\"bio\",\"circleads\",\"customers\",\"custtestGM\",\"d5dd4da996-EMAIL_CAMPAIGN_2023_03_14_10_11\",\"devrev\",\"devrevemail\",\"digital campaign\",\"digital campaigns 2024\",\"draperevent23\",\"dreamforcehappyhour\",\"effortless23\",\"effortlessspeakers\",\"email campaign\",\"essentialism_bookcampaign\",\"fb_campaign\",\"google_campaign\",\"graice\",\"hackathon\",\"ind_ai_support_chatbot\",\"ind_customer_service_software\",\"ind_ticketing_system\",\"ind_ticketing_system_exact\",\"ind_ticketing_system_phrase_match\",\"ind_zendesk\",\"ind_zendesk_exact\",\"ind_zendesk_phrase\",\"linkedin\",\"linkedin_eventpage\",\"linkedinagendaeffortless\",\"linkedincpcWCBlueL\",\"linkedinnative\",\"linkedinpolleffortless\",\"magicball'23\",\"maverick\",\"peopleops\",\"prasoon\",\"product-newsletter\",\"product_posts\",\"qkdivya\",\"qkhimanshu\",\"qkmanisha\",\"qkmaulik\",\"qkmayur\",\"qkrahul\",\"qkshivshankar\",\"qkshweta\",\"qksiddharth\",\"qksk\",\"qksnehashree\",\"qksocial\",\"reddit\",\"resource.fyi/?ref=resource.fyi\",\"rohanbajaj\",\"saascon-social\",\"sendgrid\",\"social\",\"startup%2Bcampaign\",\"startup-program-application\",\"startupgrind23\",\"twitterbio\",\"us_ai_support_chatbot\",\"us_ai_support_chatbot_exact\",\"us_canada_ai_support_chatbot\",\"us_canada_customer_service_software\",\"us_canada_ticketing_system\",\"us_canada_zendesk_pricing\",\"us_customer_service_software\",\"us_zendesk\",\"us_zendesk_phrase_match_lp_test\",\"website\",\"websitebanner\",\"z47\"],\"data_name\":\"tnt__sub_source\",\"db_name\":\"tnt__sub_source\",\"description\":\"Sub-Source\",\"is_filterable\":true,\"name\":\"tnt__sub_source\",\"oasis\":{\"name\":\"tnt__sub_source\"},\"ui\":{\"display_name\":\"Sub-Source\",\"placeholder\":\"Add Sub-Source\"}},{\"field_type\":\"bool\",\"data_name\":\"tnt__sync_to_outreach\",\"db_name\":\"tnt__sync_to_outreach\",\"default_value\":false,\"description\":\"Specifies whether the rev-user should be synced to outreach\",\"is_filterable\":true,\"name\":\"tnt__sync_to_outreach\",\"oasis\":{\"name\":\"tnt__sync_to_outreach\"},\"ui\":{\"display_name\":\"Sync to Outreach\",\"placeholder\":\"Add Sync to Outreach\"}},{\"supported_filter_ops\":[\"all\",\"any\",\"not_any\",\"empty\",\"not_empty\"],\"field_type\":\"array\",\"base_type\":\"enum\",\"allowed_values\":[\"Implementation\",\"Pre-sales\",\"Sales\"],\"data_name\":\"tnt__team\",\"db_name\":\"tnt__team\",\"description\":\"Team Name\",\"is_filterable\":true,\"name\":\"tnt__team\",\"oasis\":{\"name\":\"tnt__team\"},\"ui\":{\"display_name\":\"Team\",\"placeholder\":\"Add team name\"}},{\"supported_filter_ops\":[\"any\",\"not_any\",\"empty\",\"not_empty\"],\"field_type\":\"text\",\"data_name\":\"tnt__territory\",\"db_name\":\"tnt__territory\",\"description\":\"Territory\",\"is_filterable\":true,\"name\":\"tnt__territory\",\"oasis\":{\"name\":\"tnt__territory\"},\"ui\":{\"display_name\":\"Territory\",\"placeholder\":\"Add Territory\"}},{\"supported_filter_ops\":[\"any\",\"not_any\",\"empty\",\"not_empty\"],\"field_type\":\"int\",\"data_name\":\"tnt__total_sessions\",\"db_name\":\"tnt__total_sessions\",\"description\":\"Total sessions of the user\",\"is_filterable\":true,\"name\":\"tnt__total_sessions\",\"oasis\":{\"name\":\"tnt__total_sessions\"},\"ui\":{\"display_name\":\"Total sessions\",\"placeholder\":\"Add Total sessions\"}},{\"supported_filter_ops\":[\"any\",\"not_any\",\"empty\",\"not_empty\"],\"field_type\":\"text\",\"data_name\":\"tnt__twitter_handle\",\"db_name\":\"tnt__twitter_handle\",\"description\":\"twitter handle\",\"is_filterable\":true,\"name\":\"tnt__twitter_handle\",\"oasis\":{\"name\":\"tnt__twitter_handle\"},\"ui\":{\"display_name\":\"Twitter\",\"placeholder\":\"Add Twitter\"}},{\"supported_filter_ops\":[\"any\",\"not_any\",\"empty\",\"not_empty\"],\"field_type\":\"enum\",\"allowed_values\":[\"Advisors\",\"Contact\",\"Lead\",\"Partner\",\"User\"],\"data_name\":\"tnt__type\",\"db_name\":\"tnt__type\",\"description\":\"Type\",\"is_filterable\":true,\"name\":\"tnt__type\",\"oasis\":{\"name\":\"tnt__type\"},\"ui\":{\"display_name\":\"Type\",\"placeholder\":\"Add Type\"}},{\"supported_filter_ops\":[\"any\",\"not_any\",\"empty\",\"not_empty\"],\"field_type\":\"enum\",\"allowed_values\":[\"No\",\"Yes\"],\"data_name\":\"tnt__welcome_series\",\"db_name\":\"tnt__welcome_series\",\"description\":\"Tracks if we've sent this user the welcome series\",\"is_filterable\":true,\"name\":\"tnt__welcome_series\",\"oasis\":{\"name\":\"tnt__welcome_series\"},\"ui\":{\"display_name\":\"Sent Welcome Series\",\"placeholder\":\"Add Sent Welcome Series\"}},{\"field_type\":\"bool\",\"data_name\":\"tnt__within_california\",\"db_name\":\"tnt__within_california\",\"default_value\":false,\"description\":\"Specifies whether the rev-user is within California\",\"is_filterable\":true,\"name\":\"tnt__within_california\",\"oasis\":{\"name\":\"tnt__within_california\"},\"ui\":{\"display_name\":\"Within California\",\"placeholder\":\"Add Within California\"}},{\"field_type\":\"bool\",\"data_name\":\"tnt__within_canada\",\"db_name\":\"tnt__within_canada\",\"default_value\":false,\"description\":\"Specifies whether the rev-user is within Canada\",\"is_filterable\":true,\"name\":\"tnt__within_canada\",\"oasis\":{\"name\":\"tnt__within_canada\"},\"ui\":{\"display_name\":\"Within Canada\",\"placeholder\":\"Add Within Canada\"}},{\"field_type\":\"bool\",\"data_name\":\"tnt__within_eu\",\"db_name\":\"tnt__within_eu\",\"default_value\":false,\"description\":\"Specifies whether the rev-user is within Eu\",\"is_filterable\":true,\"name\":\"tnt__within_eu\",\"oasis\":{\"name\":\"tnt__within_eu\"},\"ui\":{\"display_name\":\"Within Eu\",\"placeholder\":\"Add Within Eu\"}},{\"field_type\":\"text\",\"data_name\":\"tnt__zip_code\",\"db_name\":\"tnt__zip_code\",\"description\":\"Zip Code\",\"is_filterable\":false,\"name\":\"tnt__zip_code\",\"oasis\":{\"name\":\"tnt__zip_code\"},\"ui\":{\"display_name\":\"Zip Code\",\"placeholder\":\"Add Zip Code\"}},{\"field_type\":\"date\",\"data_name\":\"tnt__zoominfo_enriched_date\",\"db_name\":\"tnt__zoominfo_enriched_date\",\"description\":\"ZoomInfo Enrichment Date\",\"is_filterable\":true,\"name\":\"tnt__zoominfo_enriched_date\",\"oasis\":{\"name\":\"tnt__zoominfo_enriched_date\"},\"ui\":{\"display_name\":\"ZoomInfo Enrichment Date\",\"placeholder\":\"Add ZoomInfo Enrichment Date\"}},{\"field_type\":\"text\",\"data_name\":\"tnt__zoominfo_id\",\"db_name\":\"tnt__zoominfo_id\",\"description\":\"ZoomInfo ID\",\"is_filterable\":false,\"name\":\"tnt__zoominfo_id\",\"oasis\":{\"name\":\"tnt__zoominfo_id\"},\"ui\":{\"display_name\":\"ZoomInfo ID\",\"placeholder\":\"Add ZoomInfo ID\"}},{\"field_type\":\"text\",\"data_name\":\"tnt__zoominfo_ip_enrich\",\"db_name\":\"tnt__zoominfo_ip_enrich\",\"description\":\"Zoom Info IP Enrich\",\"is_filterable\":false,\"name\":\"tnt__zoominfo_ip_enrich\",\"oasis\":{\"name\":\"tnt__zoominfo_ip_enrich\"},\"ui\":{\"display_name\":\"Zoom Info IP Enrich\",\"placeholder\":\"Add Zoom Info IP Enrich\"}}],\"type\":\"field_descriptor\"},\"type\":\"default\"}],\"reference_key\":\"contact_updated_1\",\"ui_metadata\":{\"position\":{\"x\":0,\"y\":0}}},{\"description\":\"Pause the workflow for a specified duration\",\"input_ports\":[{\"name\":\"input\",\"schema\":{\"field_descriptors\":[{\"field_type\":\"composite\",\"composite_type\":\"devrev:duration\",\"data_name\":\"duration\",\"db_name\":\"duration\",\"description\":\"Duration to sleep for\",\"is_required\":true,\"name\":\"duration\",\"oasis\":{\"name\":\"duration\"}}],\"type\":\"field_descriptor\"},\"type\":\"default\"},{\"name\":\"callback\",\"schema\":{\"type\":\"field_descriptor\"},\"type\":\"system\"}],\"input_values\":[{\"fields\":[{\"name\":\"duration\",\"value\":{\"type\":\"literal\",\"value\":{\"hours\":1}}}],\"port_name\":\"input\"}],\"name\":\"Sleep For\",\"next_steps\":[{\"next_port_name\":\"input\",\"next_step_reference_key\":\"if_else_1\",\"port_name\":\"output\"}],\"operation\":{\"namespace\":\"devrev\",\"slug\":\"sleep_for\"},\"output_ports\":[{\"name\":\"output\",\"schema\":{\"type\":\"field_descriptor\"},\"type\":\"default\"},{\"name\":\"error\",\"schema\":{\"field_descriptors\":[{\"field_type\":\"text\",\"data_name\":\"message\",\"db_name\":\"message\",\"description\":\"Error message with more details about the error\",\"name\":\"message\",\"oasis\":{\"name\":\"message\"},\"ui\":{\"display_name\":\"Error Message\"}},{\"field_type\":\"enum\",\"allowed_values\":[\"bad_request\",\"not_found\",\"internal\"],\"data_name\":\"type\",\"db_name\":\"type\",\"description\":\"Type of the error\",\"name\":\"type\",\"oasis\":{\"name\":\"type\"},\"ui\":{\"display_name\":\"Error Type\"}}],\"type\":\"field_descriptor\"},\"type\":\"error\"}],\"reference_key\":\"sleep_for_1\",\"ui_metadata\":{\"position\":{\"x\":5,\"y\":149}}},{\"description\":\"Branch the workflow based on a condition\",\"input_ports\":[{\"name\":\"input\",\"schema\":{\"field_descriptors\":[{\"field_type\":\"struct\",\"data_name\":\"condition\",\"db_name\":\"condition\",\"description\":\"Condition to evaluate\",\"is_required\":true,\"name\":\"condition\",\"oasis\":{\"name\":\"condition\"}}],\"type\":\"field_descriptor\"},\"type\":\"default\"}],\"input_values\":[{\"fields\":[{\"name\":\"condition\",\"value\":{\"type\":\"literal\",\"value\":{\"conditions\":[{\"conditions\":[{\"operands\":[{\"type\":\"jsonata_expression\",\"value\":\"$get('contact_updated_1', 'output').tnt__department\"},{\"type\":\"literal\",\"value\":\"Support\"}],\"operator\":\"equals\",\"type\":\"rule\",\"ui_reference_key\":\"f6d13df6-5476-426c-833c-ca866d186681\"}],\"logical_operator\":\"and\",\"negate\":false,\"type\":\"group\",\"ui_reference_key\":\"c64626ec-adc9-41a7-aca5-cfa9d5e3fb89\"}],\"logical_operator\":\"and\",\"negate\":false,\"type\":\"group\",\"ui_reference_key\":\"a1d131a6-5be2-4aa0-9075-ac7cf530c3c3\"}}}],\"port_name\":\"input\"}],\"name\":\"Is support?\",\"next_steps\":[{\"next_port_name\":\"input\",\"next_step_reference_key\":\"if_else_2\",\"port_name\":\"false\"},{\"next_port_name\":\"input\",\"next_step_reference_key\":\"send_emails_1\",\"port_name\":\"true\"}],\"operation\":{\"namespace\":\"devrev\",\"slug\":\"if_else\"},\"output_ports\":[{\"name\":\"true\",\"type\":\"default\"},{\"name\":\"false\",\"type\":\"default\"},{\"name\":\"error\",\"schema\":{\"field_descriptors\":[{\"field_type\":\"text\",\"data_name\":\"message\",\"db_name\":\"message\",\"description\":\"Error message with more details about the error\",\"name\":\"message\",\"oasis\":{\"name\":\"message\"},\"ui\":{\"display_name\":\"Error Message\"}},{\"field_type\":\"enum\",\"allowed_values\":[\"bad_request\",\"not_found\",\"internal\"],\"data_name\":\"type\",\"db_name\":\"type\",\"description\":\"Type of the error\",\"name\":\"type\",\"oasis\":{\"name\":\"type\"},\"ui\":{\"display_name\":\"Error Type\"}}],\"type\":\"field_descriptor\"},\"type\":\"error\"}],\"reference_key\":\"if_else_1\",\"ui_metadata\":{\"position\":{\"x\":2,\"y\":299}}},{\"description\":\"Branch the workflow based on a condition\",\"input_ports\":[{\"name\":\"input\",\"schema\":{\"field_descriptors\":[{\"field_type\":\"struct\",\"data_name\":\"condition\",\"db_name\":\"condition\",\"description\":\"Condition to evaluate\",\"is_required\":true,\"name\":\"condition\",\"oasis\":{\"name\":\"condition\"}}],\"type\":\"field_descriptor\"},\"type\":\"default\"}],\"input_values\":[{\"fields\":[{\"name\":\"condition\",\"value\":{\"type\":\"literal\",\"value\":{\"conditions\":[{\"conditions\":[{\"operands\":[{\"type\":\"jsonata_expression\",\"value\":\"$get('contact_updated_1', 'output').tnt__department\"},{\"type\":\"literal\",\"value\":\"Engineering\"}],\"operator\":\"equals\",\"type\":\"rule\",\"ui_reference_key\":\"0f5681fa-eac7-4edf-a92a-fd73128cc6bd\"}],\"logical_operator\":\"and\",\"negate\":false,\"type\":\"group\",\"ui_reference_key\":\"df2808ad-4919-4d92-b309-194a130fb6f9\"}],\"logical_operator\":\"and\",\"negate\":false,\"type\":\"group\",\"ui_reference_key\":\"41f73525-a254-49c3-9266-ceaceed4b4e6\"}}}],\"port_name\":\"input\"}],\"name\":\"Is build?\",\"next_steps\":[{\"next_port_name\":\"input\",\"next_step_reference_key\":\"send_emails_7\",\"port_name\":\"true\"},{\"next_port_name\":\"input\",\"next_step_reference_key\":\"send_emails_8\",\"port_name\":\"false\"}],\"operation\":{\"namespace\":\"devrev\",\"slug\":\"if_else\"},\"output_ports\":[{\"name\":\"true\",\"type\":\"default\"},{\"name\":\"false\",\"type\":\"default\"},{\"name\":\"error\",\"schema\":{\"field_descriptors\":[{\"field_type\":\"text\",\"data_name\":\"message\",\"db_name\":\"message\",\"description\":\"Error message with more details about the error\",\"name\":\"message\",\"oasis\":{\"name\":\"message\"},\"ui\":{\"display_name\":\"Error Message\"}},{\"field_type\":\"enum\",\"allowed_values\":[\"bad_request\",\"not_found\",\"internal\"],\"data_name\":\"type\",\"db_name\":\"type\",\"description\":\"Type of the error\",\"name\":\"type\",\"oasis\":{\"name\":\"type\"},\"ui\":{\"display_name\":\"Error Type\"}}],\"type\":\"field_descriptor\"},\"type\":\"error\"}],\"reference_key\":\"if_else_2\",\"ui_metadata\":{\"position\":{\"x\":610,\"y\":461}}},{\"description\":\"You can now send personalized emails using this node. Check the [Documentation](https://devrev.ai/docs/automations/send-emails) for usage details and limitations.\",\"input_ports\":[{\"name\":\"input\",\"schema\":{\"field_descriptors\":[{\"field_type\":\"array\",\"base_type\":\"text\",\"data_name\":\"to_emails\",\"db_name\":\"to_emails\",\"description\":\"The email addresses of the recipients\",\"is_required\":true,\"name\":\"to_emails\",\"oasis\":{\"name\":\"to_emails\"},\"ui\":{\"display_name\":\"Recipient Email Addresses\"}},{\"field_type\":\"array\",\"base_type\":\"text\",\"data_name\":\"cc_emails\",\"db_name\":\"cc_emails\",\"description\":\"The email addresses of the CC recipients\",\"is_required\":false,\"name\":\"cc_emails\",\"oasis\":{\"name\":\"cc_emails\"},\"ui\":{\"display_name\":\"CC Recipient Email Addresses\"}},{\"field_type\":\"array\",\"base_type\":\"text\",\"data_name\":\"bcc_emails\",\"db_name\":\"bcc_emails\",\"description\":\"The email addresses of the BCC recipients\",\"is_required\":false,\"name\":\"bcc_emails\",\"oasis\":{\"name\":\"bcc_emails\"},\"ui\":{\"display_name\":\"BCC Recipient Email Addresses\"}},{\"field_type\":\"text\",\"data_name\":\"sender_name\",\"db_name\":\"sender_name\",\"description\":\"The name of the sender\",\"is_required\":false,\"name\":\"sender_name\",\"oasis\":{\"name\":\"sender_name\"},\"ui\":{\"display_name\":\"Sender Name\"}},{\"field_type\":\"text\",\"data_name\":\"reply_to\",\"db_name\":\"reply_to\",\"description\":\"The email address of the reply-to\",\"is_required\":false,\"name\":\"reply_to\",\"oasis\":{\"name\":\"reply_to\"},\"ui\":{\"display_name\":\"Reply-To Email Address\"}},{\"field_type\":\"text\",\"data_name\":\"from_email\",\"db_name\":\"from_email\",\"description\":\"The email address of the sender\",\"is_required\":true,\"name\":\"from_email\",\"oasis\":{\"name\":\"from_email\"},\"ui\":{\"display_name\":\"Sender Email Address\"}},{\"field_type\":\"text\",\"data_name\":\"email_subject\",\"db_name\":\"email_subject\",\"description\":\"The subject of the email\",\"is_required\":true,\"name\":\"email_subject\",\"oasis\":{\"name\":\"email_subject\"},\"ui\":{\"display_name\":\"Email Subject\"}},{\"field_type\":\"text\",\"data_name\":\"email_body\",\"db_name\":\"email_body\",\"description\":\"The body of the email in HTML/text format. Use this field to customize the email body in workflow.\",\"name\":\"email_body\",\"oasis\":{\"name\":\"email_body\"},\"ui\":{\"display_name\":\"Email Body\"}},{\"field_type\":\"text\",\"data_name\":\"template_name\",\"db_name\":\"template_name\",\"description\":\"The name of the email template. Use this field to directly use the email template from Sendgrid.\",\"name\":\"template_name\",\"oasis\":{\"name\":\"template_name\"},\"ui\":{\"display_name\":\"Email Template Name\"}},{\"field_type\":\"text\",\"data_name\":\"fields\",\"db_name\":\"fields\",\"description\":\"The fields to be replaced in the email template. Use this field only when you choose to use the email template from Sendgrid.<Example:field1=value,field2=value>\",\"name\":\"fields\",\"oasis\":{\"name\":\"fields\"},\"ui\":{\"display_name\":\"Fields to Replace in Email Template\"}}],\"type\":\"field_descriptor\"},\"type\":\"default\"}],\"input_values\":[{\"fields\":[{\"name\":\"to_emails\",\"value\":{\"type\":\"list_value\",\"value\":{\"items\":[{\"type\":\"jsonata_expression\",\"value\":\"$append($get('contact_updated_1', 'output').email, [])\"}]}}},{\"name\":\"email_subject\",\"value\":{\"type\":\"text_template\",\"value\":\"🚀 Your DevRev Mastery Starts Now—Here's Your Learning Path\"}},{\"name\":\"email_body\",\"value\":{\"type\":\"text_template\",\"value\":\"```\\n <p>Hi there\\n```\\n\\n{% expr $get('contact_updated_1', 'output').display_name %}\\n\\n```\\n!</p>\\n <p>\\n Welcome to <strong>DevRevU</strong>—your hub for everything you need to master DevRev and elevate your impact as a support team.\\n </p>\\n <p>\\n We’ve created a dedicated learning path designed specifically for support professionals to help you build confidence, move faster, and get the most out of the platform.\\n </p>\\n <p><strong>Your learning path includes:</strong></p>\\n <ul>\\n <li>\\n <strong>Foundational courses</strong> — Build a strong baseline on DevRev concepts, workflows, and support best practices\\n </li>\\n <li>\\n <strong>Practical guidance</strong> — Clear, actionable content you can immediately apply to your daily work\\n </li>\\n <li>\\n <strong>Expert insights</strong> — Learn how to triage tickets efficiently, resolve issues faster, and navigate complex workflows with confidence\\n </li>\\n </ul>\\n <p>\\n Here’s the reality: Teams that actively engage with the learning path see stronger platform adoption, improved efficiency, and better overall support outcomes.\\n </p>\\n <p>\\n If your team would benefit from live, hands-on sessions, we’re happy to organize them. Just let us know, and we’ll coordinate a session tailored to your needs.\\n </p>\\n <p><strong>Your first step:</strong></p>\\n <p>\\n <a href=\\\"https://devrevu.reach360.com/share/learning-path/56990e10-8579-472c-b723-992a686ce401\\\" >\\n Register for your learning path\\n </a>\\n </p>\\n <p>\\n Looking forward to supporting your success.\\n </p>\\n <p>\\n — Team DevRevU\\n </p>\\n```\"}},{\"name\":\"from_email\",\"value\":{\"type\":\"text_template\",\"value\":\"devrevuteam@devrev.ai\"}}],\"port_name\":\"input\"}],\"name\":\"First email\",\"next_steps\":[{\"next_port_name\":\"input\",\"next_step_reference_key\":\"sleep_for_2\",\"port_name\":\"output\"}],\"operation\":{\"namespace\":\"send-emails\",\"slug\":\"send_emails\"},\"output_ports\":[{\"name\":\"output\",\"schema\":{\"field_descriptors\":[{\"field_type\":\"bool\",\"data_name\":\"status\",\"db_name\":\"status\",\"default_value\":false,\"is_required\":true,\"name\":\"status\",\"oasis\":{\"name\":\"status\"},\"ui\":{\"display_name\":\"status\"}}],\"type\":\"field_descriptor\"},\"type\":\"default\"},{\"name\":\"error\",\"schema\":{\"field_descriptors\":[{\"field_type\":\"text\",\"data_name\":\"message\",\"db_name\":\"message\",\"description\":\"Error message with more details about the error\",\"name\":\"message\",\"oasis\":{\"name\":\"message\"},\"ui\":{\"display_name\":\"Error Message\"}},{\"field_type\":\"enum\",\"allowed_values\":[\"bad_request\",\"not_found\",\"internal\"],\"data_name\":\"type\",\"db_name\":\"type\",\"description\":\"Type of the error\",\"name\":\"type\",\"oasis\":{\"name\":\"type\"},\"ui\":{\"display_name\":\"Error Type\"}}],\"type\":\"field_descriptor\"},\"type\":\"error\"}],\"reference_key\":\"send_emails_1\",\"ui_metadata\":{\"position\":{\"x\":-189.42857142857144,\"y\":506}}},{\"description\":\"Pause the workflow for a specified duration\",\"input_ports\":[{\"name\":\"input\",\"schema\":{\"field_descriptors\":[{\"field_type\":\"composite\",\"composite_type\":\"devrev:duration\",\"data_name\":\"duration\",\"db_name\":\"duration\",\"description\":\"Duration to sleep for\",\"is_required\":true,\"name\":\"duration\",\"oasis\":{\"name\":\"duration\"}}],\"type\":\"field_descriptor\"},\"type\":\"default\"},{\"name\":\"callback\",\"schema\":{\"type\":\"field_descriptor\"},\"type\":\"system\"}],\"input_values\":[{\"fields\":[{\"name\":\"duration\",\"value\":{\"type\":\"literal\",\"value\":{\"days\":3}}}],\"port_name\":\"input\"}],\"name\":\"Sleep For 3 days\",\"next_steps\":[{\"next_port_name\":\"input\",\"next_step_reference_key\":\"summary_job_query_node_1\",\"port_name\":\"output\"}],\"operation\":{\"namespace\":\"devrev\",\"slug\":\"sleep_for\"},\"output_ports\":[{\"name\":\"output\",\"schema\":{\"type\":\"field_descriptor\"},\"type\":\"default\"},{\"name\":\"error\",\"schema\":{\"field_descriptors\":[{\"field_type\":\"text\",\"data_name\":\"message\",\"db_name\":\"message\",\"description\":\"Error message with more details about the error\",\"name\":\"message\",\"oasis\":{\"name\":\"message\"},\"ui\":{\"display_name\":\"Error Message\"}},{\"field_type\":\"enum\",\"allowed_values\":[\"bad_request\",\"not_found\",\"internal\"],\"data_name\":\"type\",\"db_name\":\"type\",\"description\":\"Type of the error\",\"name\":\"type\",\"oasis\":{\"name\":\"type\"},\"ui\":{\"display_name\":\"Error Type\"}}],\"type\":\"field_descriptor\"},\"type\":\"error\"}],\"reference_key\":\"sleep_for_2\",\"ui_metadata\":{\"position\":{\"x\":-175,\"y\":670}}},{\"description\":\"Perform a summary job query operation\",\"input_ports\":[{\"name\":\"input\",\"schema\":{\"field_descriptors\":[{\"field_type\":\"text\",\"data_name\":\"summary_job_list\",\"db_name\":\"summary_job_list\",\"description\":\"Comma-separated list of summary job aliases i.e sum_job_1, sum_job_2, ..\",\"is_required\":true,\"name\":\"summary_job_list\",\"oasis\":{\"name\":\"summary_job_list\"},\"ui\":{\"display_name\":\"Summary Job List\"}},{\"field_type\":\"text\",\"data_name\":\"summary_job_list_query\",\"db_name\":\"summary_job_list_query\",\"description\":\"DuckDB SQL query to run against the summary jobs\",\"is_required\":true,\"name\":\"summary_job_list_query\",\"oasis\":{\"name\":\"summary_job_list_query\"},\"ui\":{\"display_name\":\"Summary Job List Query\"}}],\"type\":\"field_descriptor\"},\"type\":\"default\"}],\"input_values\":[{\"fields\":[{\"name\":\"summary_job_list\",\"value\":{\"type\":\"text_template\",\"value\":\"courses_completion_revu\"}},{\"name\":\"summary_job_list_query\",\"value\":{\"type\":\"text_template\",\"value\":\"SELECT * FROM courses_completion_revu WHERE learner = '{% expr $get('contact_updated_1', 'output').id %}'\"}}],\"port_name\":\"input\"}],\"name\":\"Summary Job Query\",\"next_steps\":[{\"next_port_name\":\"input\",\"next_step_reference_key\":\"if_else_3\",\"port_name\":\"output\"}],\"operation\":{\"namespace\":\"summary-job-query\",\"slug\":\"summary_job_query_node\"},\"output_ports\":[{\"name\":\"output\",\"schema\":{\"field_descriptors\":[{\"field_type\":\"array\",\"base_type\":\"json_value\",\"data_name\":\"query_result\",\"db_name\":\"query_result\",\"description\":\"Result of the summary job query\",\"name\":\"query_result\",\"oasis\":{\"name\":\"query_result\"},\"ui\":{\"display_name\":\"Query Result\"}},{\"field_type\":\"text\",\"data_name\":\"query_result_text\",\"db_name\":\"query_result_text\",\"description\":\"Result of the summary job query\",\"name\":\"query_result_text\",\"oasis\":{\"name\":\"query_result_text\"},\"ui\":{\"display_name\":\"Query Result Text\"}}],\"type\":\"field_descriptor\"},\"type\":\"default\"},{\"name\":\"error\",\"schema\":{\"field_descriptors\":[{\"field_type\":\"text\",\"data_name\":\"message\",\"db_name\":\"message\",\"description\":\"Error message with more details about the error\",\"name\":\"message\",\"oasis\":{\"name\":\"message\"},\"ui\":{\"display_name\":\"Error Message\"}},{\"field_type\":\"enum\",\"allowed_values\":[\"bad_request\",\"not_found\",\"internal\"],\"data_name\":\"type\",\"db_name\":\"type\",\"description\":\"Type of the error\",\"name\":\"type\",\"oasis\":{\"name\":\"type\"},\"ui\":{\"display_name\":\"Error Type\"}}],\"type\":\"field_descriptor\"},\"type\":\"error\"}],\"reference_key\":\"summary_job_query_node_1\",\"ui_metadata\":{\"position\":{\"x\":-172,\"y\":836}}},{\"description\":\"Branch the workflow based on a condition\",\"input_ports\":[{\"name\":\"input\",\"schema\":{\"field_descriptors\":[{\"field_type\":\"struct\",\"data_name\":\"condition\",\"db_name\":\"condition\",\"description\":\"Condition to evaluate\",\"is_required\":true,\"name\":\"condition\",\"oasis\":{\"name\":\"condition\"}}],\"type\":\"field_descriptor\"},\"type\":\"default\"}],\"input_values\":[{\"fields\":[{\"name\":\"condition\",\"value\":{\"type\":\"literal\",\"value\":{\"conditions\":[{\"conditions\":[{\"operands\":[{\"type\":\"jsonata_expression\",\"value\":\"$get('summary_job_query_node_1', 'output').query_result[]\"}],\"operator\":\"exists\",\"type\":\"rule\",\"ui_reference_key\":\"329047ec-5906-4c51-b9de-a2e18f62ce8a\"}],\"logical_operator\":\"and\",\"negate\":false,\"type\":\"group\",\"ui_reference_key\":\"23596f40-d683-47d3-aaaa-38a15b03a315\"}],\"logical_operator\":\"and\",\"negate\":false,\"type\":\"group\",\"ui_reference_key\":\"812e78c7-168b-4812-960a-07cf0046503e\"}}}],\"port_name\":\"input\"}],\"name\":\"Articulate account created?\",\"next_steps\":[{\"next_port_name\":\"input\",\"next_step_reference_key\":\"send_emails_4\",\"port_name\":\"false\"}],\"operation\":{\"namespace\":\"devrev\",\"slug\":\"if_else\"},\"output_ports\":[{\"name\":\"true\",\"type\":\"default\"},{\"name\":\"false\",\"type\":\"default\"},{\"name\":\"error\",\"schema\":{\"field_descriptors\":[{\"field_type\":\"text\",\"data_name\":\"message\",\"db_name\":\"message\",\"description\":\"Error message with more details about the error\",\"name\":\"message\",\"oasis\":{\"name\":\"message\"},\"ui\":{\"display_name\":\"Error Message\"}},{\"field_type\":\"enum\",\"allowed_values\":[\"bad_request\",\"not_found\",\"internal\"],\"data_name\":\"type\",\"db_name\":\"type\",\"description\":\"Type of the error\",\"name\":\"type\",\"oasis\":{\"name\":\"type\"},\"ui\":{\"display_name\":\"Error Type\"}}],\"type\":\"field_descriptor\"},\"type\":\"error\"}],\"reference_key\":\"if_else_3\",\"ui_metadata\":{\"position\":{\"x\":-167.28571428571428,\"y\":1067.8571428571427}}},{\"description\":\"You can now send personalized emails using this node. Check the [Documentation](https://devrev.ai/docs/automations/send-emails) for usage details and limitations.\",\"input_ports\":[{\"name\":\"input\",\"schema\":{\"field_descriptors\":[{\"field_type\":\"array\",\"base_type\":\"text\",\"data_name\":\"to_emails\",\"db_name\":\"to_emails\",\"description\":\"The email addresses of the recipients\",\"is_required\":true,\"name\":\"to_emails\",\"oasis\":{\"name\":\"to_emails\"},\"ui\":{\"display_name\":\"Recipient Email Addresses\"}},{\"field_type\":\"array\",\"base_type\":\"text\",\"data_name\":\"cc_emails\",\"db_name\":\"cc_emails\",\"description\":\"The email addresses of the CC recipients\",\"is_required\":false,\"name\":\"cc_emails\",\"oasis\":{\"name\":\"cc_emails\"},\"ui\":{\"display_name\":\"CC Recipient Email Addresses\"}},{\"field_type\":\"array\",\"base_type\":\"text\",\"data_name\":\"bcc_emails\",\"db_name\":\"bcc_emails\",\"description\":\"The email addresses of the BCC recipients\",\"is_required\":false,\"name\":\"bcc_emails\",\"oasis\":{\"name\":\"bcc_emails\"},\"ui\":{\"display_name\":\"BCC Recipient Email Addresses\"}},{\"field_type\":\"text\",\"data_name\":\"sender_name\",\"db_name\":\"sender_name\",\"description\":\"The name of the sender\",\"is_required\":false,\"name\":\"sender_name\",\"oasis\":{\"name\":\"sender_name\"},\"ui\":{\"display_name\":\"Sender Name\"}},{\"field_type\":\"text\",\"data_name\":\"reply_to\",\"db_name\":\"reply_to\",\"description\":\"The email address of the reply-to\",\"is_required\":false,\"name\":\"reply_to\",\"oasis\":{\"name\":\"reply_to\"},\"ui\":{\"display_name\":\"Reply-To Email Address\"}},{\"field_type\":\"text\",\"data_name\":\"from_email\",\"db_name\":\"from_email\",\"description\":\"The email address of the sender\",\"is_required\":true,\"name\":\"from_email\",\"oasis\":{\"name\":\"from_email\"},\"ui\":{\"display_name\":\"Sender Email Address\"}},{\"field_type\":\"text\",\"data_name\":\"email_subject\",\"db_name\":\"email_subject\",\"description\":\"The subject of the email\",\"is_required\":true,\"name\":\"email_subject\",\"oasis\":{\"name\":\"email_subject\"},\"ui\":{\"display_name\":\"Email Subject\"}},{\"field_type\":\"text\",\"data_name\":\"email_body\",\"db_name\":\"email_body\",\"description\":\"The body of the email in HTML/text format. Use this field to customize the email body in workflow.\",\"name\":\"email_body\",\"oasis\":{\"name\":\"email_body\"},\"ui\":{\"display_name\":\"Email Body\"}},{\"field_type\":\"text\",\"data_name\":\"template_name\",\"db_name\":\"template_name\",\"description\":\"The name of the email template. Use this field to directly use the email template from Sendgrid.\",\"name\":\"template_name\",\"oasis\":{\"name\":\"template_name\"},\"ui\":{\"display_name\":\"Email Template Name\"}},{\"field_type\":\"text\",\"data_name\":\"fields\",\"db_name\":\"fields\",\"description\":\"The fields to be replaced in the email template. Use this field only when you choose to use the email template from Sendgrid.<Example:field1=value,field2=value>\",\"name\":\"fields\",\"oasis\":{\"name\":\"fields\"},\"ui\":{\"display_name\":\"Fields to Replace in Email Template\"}}],\"type\":\"field_descriptor\"},\"type\":\"default\"}],\"input_values\":[{\"fields\":[{\"name\":\"to_emails\",\"value\":{\"type\":\"list_value\",\"value\":{\"items\":[{\"type\":\"jsonata_expression\",\"value\":\"$append($get('contact_updated_1', 'output').email, [])\"}]}}},{\"name\":\"email_subject\",\"value\":{\"type\":\"text_template\",\"value\":\"Your DevRev Learning Path Is Waiting—Claim It Now\"}},{\"name\":\"email_body\",\"value\":{\"type\":\"text_template\",\"value\":\"```\\n<p>Hi there\\n```\\n\\n{% expr $get('contact_updated_1', 'output').display_name %}\\n\\n```\\n!</p>\\n<p>\\nWe recently invited you to register for your DevRev learning path, but we haven’t seen you sign up yet.\\n</p>\\n<p>\\nHere’s why this matters: Support teams that start early build confidence with the platform faster. They handle tickets more efficiently, avoid common workflow pitfalls, and see stronger results from day one.\\n</p>\\n<p>\\nGetting started now helps you ramp up smoothly and make the most of DevRev in your daily work.\\n</p>\\n<p>\\n<strong>Next step:</strong><br>\\n<a href=\\\"https://devrevu.reach360.com/share/learning-path/56990e10-8579-472c-b723-992a686ce401\\\">Register now</a>\\n</p>\\n<p>\\nIf your team would benefit from a live, hands-on session to get up and running faster, just reply to this email and let us know. We’re happy to coordinate a session tailored to your needs.\\n</p>\\n<p>\\nIf you have any questions or need help getting started, simply reply — we’re here to support you.\\n</p>\\n<p>\\n— Team DevRevU\\n</p>\\n```\"}},{\"name\":\"from_email\",\"value\":{\"type\":\"text_template\",\"value\":\"devrevuteam@devrev.ai\"}}],\"port_name\":\"input\"}],\"name\":\"First nudge\",\"next_steps\":[{\"next_port_name\":\"input\",\"next_step_reference_key\":\"sleep_for_3\",\"port_name\":\"output\"}],\"operation\":{\"namespace\":\"send-emails\",\"slug\":\"send_emails\"},\"output_ports\":[{\"name\":\"output\",\"schema\":{\"field_descriptors\":[{\"field_type\":\"bool\",\"data_name\":\"status\",\"db_name\":\"status\",\"default_value\":false,\"is_required\":true,\"name\":\"status\",\"oasis\":{\"name\":\"status\"},\"ui\":{\"display_name\":\"status\"}}],\"type\":\"field_descriptor\"},\"type\":\"default\"},{\"name\":\"error\",\"schema\":{\"field_descriptors\":[{\"field_type\":\"text\",\"data_name\":\"message\",\"db_name\":\"message\",\"description\":\"Error message with more details about the error\",\"name\":\"message\",\"oasis\":{\"name\":\"message\"},\"ui\":{\"display_name\":\"Error Message\"}},{\"field_type\":\"enum\",\"allowed_values\":[\"bad_request\",\"not_found\",\"internal\"],\"data_name\":\"type\",\"db_name\":\"type\",\"description\":\"Type of the error\",\"name\":\"type\",\"oasis\":{\"name\":\"type\"},\"ui\":{\"display_name\":\"Error Type\"}}],\"type\":\"field_descriptor\"},\"type\":\"error\"}],\"reference_key\":\"send_emails_4\",\"ui_metadata\":{\"position\":{\"x\":-161,\"y\":1270.7697945138568}}},{\"description\":\"Pause the workflow for a specified duration\",\"input_ports\":[{\"name\":\"input\",\"schema\":{\"field_descriptors\":[{\"field_type\":\"composite\",\"composite_type\":\"devrev:duration\",\"data_name\":\"duration\",\"db_name\":\"duration\",\"description\":\"Duration to sleep for\",\"is_required\":true,\"name\":\"duration\",\"oasis\":{\"name\":\"duration\"}}],\"type\":\"field_descriptor\"},\"type\":\"default\"},{\"name\":\"callback\",\"schema\":{\"type\":\"field_descriptor\"},\"type\":\"system\"}],\"input_values\":[{\"fields\":[{\"name\":\"duration\",\"value\":{\"type\":\"literal\",\"value\":{\"days\":3}}}],\"port_name\":\"input\"}],\"name\":\"Sleep For 3 days\",\"next_steps\":[{\"next_port_name\":\"input\",\"next_step_reference_key\":\"summary_job_query_node_2\",\"port_name\":\"output\"}],\"operation\":{\"namespace\":\"devrev\",\"slug\":\"sleep_for\"},\"output_ports\":[{\"name\":\"output\",\"schema\":{\"type\":\"field_descriptor\"},\"type\":\"default\"},{\"name\":\"error\",\"schema\":{\"field_descriptors\":[{\"field_type\":\"text\",\"data_name\":\"message\",\"db_name\":\"message\",\"description\":\"Error message with more details about the error\",\"name\":\"message\",\"oasis\":{\"name\":\"message\"},\"ui\":{\"display_name\":\"Error Message\"}},{\"field_type\":\"enum\",\"allowed_values\":[\"bad_request\",\"not_found\",\"internal\"],\"data_name\":\"type\",\"db_name\":\"type\",\"description\":\"Type of the error\",\"name\":\"type\",\"oasis\":{\"name\":\"type\"},\"ui\":{\"display_name\":\"Error Type\"}}],\"type\":\"field_descriptor\"},\"type\":\"error\"}],\"reference_key\":\"sleep_for_3\",\"ui_metadata\":{\"position\":{\"x\":-161,\"y\":1458.986299220879}}},{\"description\":\"Perform a summary job query operation\",\"input_ports\":[{\"name\":\"input\",\"schema\":{\"field_descriptors\":[{\"field_type\":\"text\",\"data_name\":\"summary_job_list\",\"db_name\":\"summary_job_list\",\"description\":\"Comma-separated list of summary job aliases i.e sum_job_1, sum_job_2, ..\",\"is_required\":true,\"name\":\"summary_job_list\",\"oasis\":{\"name\":\"summary_job_list\"},\"ui\":{\"display_name\":\"Summary Job List\"}},{\"field_type\":\"text\",\"data_name\":\"summary_job_list_query\",\"db_name\":\"summary_job_list_query\",\"description\":\"DuckDB SQL query to run against the summary jobs\",\"is_required\":true,\"name\":\"summary_job_list_query\",\"oasis\":{\"name\":\"summary_job_list_query\"},\"ui\":{\"display_name\":\"Summary Job List Query\"}}],\"type\":\"field_descriptor\"},\"type\":\"default\"}],\"input_values\":[{\"fields\":[{\"name\":\"summary_job_list_query\",\"value\":{\"type\":\"text_template\",\"value\":\"SELECT * FROM courses_completion_revu WHERE learner = '{% expr $get('contact_updated_1', 'output').id %}'\"}},{\"name\":\"summary_job_list\",\"value\":{\"type\":\"text_template\",\"value\":\"courses_completion_revu\"}}],\"port_name\":\"input\"}],\"name\":\"Summary Job Query 2\",\"next_steps\":[{\"next_port_name\":\"input\",\"next_step_reference_key\":\"if_else_4\",\"port_name\":\"output\"}],\"operation\":{\"namespace\":\"summary-job-query\",\"slug\":\"summary_job_query_node\"},\"output_ports\":[{\"name\":\"output\",\"schema\":{\"field_descriptors\":[{\"field_type\":\"array\",\"base_type\":\"json_value\",\"data_name\":\"query_result\",\"db_name\":\"query_result\",\"description\":\"Result of the summary job query\",\"name\":\"query_result\",\"oasis\":{\"name\":\"query_result\"},\"ui\":{\"display_name\":\"Query Result\"}},{\"field_type\":\"text\",\"data_name\":\"query_result_text\",\"db_name\":\"query_result_text\",\"description\":\"Result of the summary job query\",\"name\":\"query_result_text\",\"oasis\":{\"name\":\"query_result_text\"},\"ui\":{\"display_name\":\"Query Result Text\"}}],\"type\":\"field_descriptor\"},\"type\":\"default\"},{\"name\":\"error\",\"schema\":{\"field_descriptors\":[{\"field_type\":\"text\",\"data_name\":\"message\",\"db_name\":\"message\",\"description\":\"Error message with more details about the error\",\"name\":\"message\",\"oasis\":{\"name\":\"message\"},\"ui\":{\"display_name\":\"Error Message\"}},{\"field_type\":\"enum\",\"allowed_values\":[\"bad_request\",\"not_found\",\"internal\"],\"data_name\":\"type\",\"db_name\":\"type\",\"description\":\"Type of the error\",\"name\":\"type\",\"oasis\":{\"name\":\"type\"},\"ui\":{\"display_name\":\"Error Type\"}}],\"type\":\"field_descriptor\"},\"type\":\"error\"}],\"reference_key\":\"summary_job_query_node_2\",\"ui_metadata\":{\"position\":{\"x\":-162.07216823567407,\"y\":1621.9141309852048}}},{\"description\":\"Branch the workflow based on a condition\",\"input_ports\":[{\"name\":\"input\",\"schema\":{\"field_descriptors\":[{\"field_type\":\"struct\",\"data_name\":\"condition\",\"db_name\":\"condition\",\"description\":\"Condition to evaluate\",\"is_required\":true,\"name\":\"condition\",\"oasis\":{\"name\":\"condition\"}}],\"type\":\"field_descriptor\"},\"type\":\"default\"}],\"input_values\":[{\"fields\":[{\"name\":\"condition\",\"value\":{\"type\":\"literal\",\"value\":{\"conditions\":[{\"conditions\":[{\"operands\":[{\"type\":\"jsonata_expression\",\"value\":\"$get('summary_job_query_node_2', 'output').query_result[]\"}],\"operator\":\"exists\",\"type\":\"rule\",\"ui_reference_key\":\"54837e7d-053b-4877-821b-5ca4168c845c\"}],\"logical_operator\":\"and\",\"negate\":false,\"type\":\"group\",\"ui_reference_key\":\"cca3f69f-2c3e-4528-a964-3d5fa944347b\"}],\"logical_operator\":\"and\",\"negate\":false,\"type\":\"group\",\"ui_reference_key\":\"ac50a753-56ff-43f7-a0e2-c0bec2fabe50\"}}}],\"port_name\":\"input\"}],\"name\":\"Articulate account created?\",\"next_steps\":[{\"next_port_name\":\"input\",\"next_step_reference_key\":\"send_emails_5\",\"port_name\":\"false\"}],\"operation\":{\"namespace\":\"devrev\",\"slug\":\"if_else\"},\"output_ports\":[{\"name\":\"true\",\"type\":\"default\"},{\"name\":\"false\",\"type\":\"default\"},{\"name\":\"error\",\"schema\":{\"field_descriptors\":[{\"field_type\":\"text\",\"data_name\":\"message\",\"db_name\":\"message\",\"description\":\"Error message with more details about the error\",\"name\":\"message\",\"oasis\":{\"name\":\"message\"},\"ui\":{\"display_name\":\"Error Message\"}},{\"field_type\":\"enum\",\"allowed_values\":[\"bad_request\",\"not_found\",\"internal\"],\"data_name\":\"type\",\"db_name\":\"type\",\"description\":\"Type of the error\",\"name\":\"type\",\"oasis\":{\"name\":\"type\"},\"ui\":{\"display_name\":\"Error Type\"}}],\"type\":\"field_descriptor\"},\"type\":\"error\"}],\"reference_key\":\"if_else_4\",\"ui_metadata\":{\"position\":{\"x\":-160.07216823567407,\"y\":1807.3471403992492}}},{\"description\":\"You can now send personalized emails using this node. Check the [Documentation](https://devrev.ai/docs/automations/send-emails) for usage details and limitations.\",\"input_ports\":[{\"name\":\"input\",\"schema\":{\"field_descriptors\":[{\"field_type\":\"array\",\"base_type\":\"text\",\"data_name\":\"to_emails\",\"db_name\":\"to_emails\",\"description\":\"The email addresses of the recipients\",\"is_required\":true,\"name\":\"to_emails\",\"oasis\":{\"name\":\"to_emails\"},\"ui\":{\"display_name\":\"Recipient Email Addresses\"}},{\"field_type\":\"array\",\"base_type\":\"text\",\"data_name\":\"cc_emails\",\"db_name\":\"cc_emails\",\"description\":\"The email addresses of the CC recipients\",\"is_required\":false,\"name\":\"cc_emails\",\"oasis\":{\"name\":\"cc_emails\"},\"ui\":{\"display_name\":\"CC Recipient Email Addresses\"}},{\"field_type\":\"array\",\"base_type\":\"text\",\"data_name\":\"bcc_emails\",\"db_name\":\"bcc_emails\",\"description\":\"The email addresses of the BCC recipients\",\"is_required\":false,\"name\":\"bcc_emails\",\"oasis\":{\"name\":\"bcc_emails\"},\"ui\":{\"display_name\":\"BCC Recipient Email Addresses\"}},{\"field_type\":\"text\",\"data_name\":\"sender_name\",\"db_name\":\"sender_name\",\"description\":\"The name of the sender\",\"is_required\":false,\"name\":\"sender_name\",\"oasis\":{\"name\":\"sender_name\"},\"ui\":{\"display_name\":\"Sender Name\"}},{\"field_type\":\"text\",\"data_name\":\"reply_to\",\"db_name\":\"reply_to\",\"description\":\"The email address of the reply-to\",\"is_required\":false,\"name\":\"reply_to\",\"oasis\":{\"name\":\"reply_to\"},\"ui\":{\"display_name\":\"Reply-To Email Address\"}},{\"field_type\":\"text\",\"data_name\":\"from_email\",\"db_name\":\"from_email\",\"description\":\"The email address of the sender\",\"is_required\":true,\"name\":\"from_email\",\"oasis\":{\"name\":\"from_email\"},\"ui\":{\"display_name\":\"Sender Email Address\"}},{\"field_type\":\"text\",\"data_name\":\"email_subject\",\"db_name\":\"email_subject\",\"description\":\"The subject of the email\",\"is_required\":true,\"name\":\"email_subject\",\"oasis\":{\"name\":\"email_subject\"},\"ui\":{\"display_name\":\"Email Subject\"}},{\"field_type\":\"text\",\"data_name\":\"email_body\",\"db_name\":\"email_body\",\"description\":\"The body of the email in HTML/text format. Use this field to customize the email body in workflow.\",\"name\":\"email_body\",\"oasis\":{\"name\":\"email_body\"},\"ui\":{\"display_name\":\"Email Body\"}},{\"field_type\":\"text\",\"data_name\":\"template_name\",\"db_name\":\"template_name\",\"description\":\"The name of the email template. Use this field to directly use the email template from Sendgrid.\",\"name\":\"template_name\",\"oasis\":{\"name\":\"template_name\"},\"ui\":{\"display_name\":\"Email Template Name\"}},{\"field_type\":\"text\",\"data_name\":\"fields\",\"db_name\":\"fields\",\"description\":\"The fields to be replaced in the email template. Use this field only when you choose to use the email template from Sendgrid.<Example:field1=value,field2=value>\",\"name\":\"fields\",\"oasis\":{\"name\":\"fields\"},\"ui\":{\"display_name\":\"Fields to Replace in Email Template\"}}],\"type\":\"field_descriptor\"},\"type\":\"default\"}],\"input_values\":[{\"fields\":[{\"name\":\"to_emails\",\"value\":{\"type\":\"list_value\",\"value\":{\"items\":[{\"type\":\"jsonata_expression\",\"value\":\"$append($get('contact_updated_1', 'output').email, [])\"}]}}},{\"name\":\"email_subject\",\"value\":{\"type\":\"text_template\",\"value\":\"Last Call: Register for Your DevRev Learning Journey\"}},{\"name\":\"email_body\",\"value\":{\"type\":\"text_template\",\"value\":\"```\\n<p>Hi there\\n```\\n\\n{% expr $get('contact_updated_1', 'output').display_name %}\\n\\n```\\n!</p>\\n<p>We want to make sure your team is set up to get the most value from DevRev.</p>\\n<p>To build confidence and work more efficiently in the platform, please register for your support learning path.</p>\\n<p><strong>Why it matters:</strong> Registration takes just a couple of minutes and unlocks structured courses on ticket management, customer workflows, and support best practices — all designed to help you handle tickets more effectively and streamline your daily work.</p>\\n<p>Support teams that complete the learning path early ramp up faster, avoid common workflow pitfalls, and gain the confidence to resolve issues efficiently from day one.</p>\\n<p><strong>Register here:</strong></p>\\n<p><a href=\\\"https://devrevu.reach360.com/share/learning-path/56990e10-8579-472c-b723-992a686ce401\\\">Register for Support</a></p>\\n<p>If your team would like a live, hands-on session tailored to your specific support workflows, simply reply to this email and we’ll coordinate one based on your availability.</p>\\n<p>Looking forward to supporting your success.</p>\\n<p>— Team DevRevU</p>\\n```\"}},{\"name\":\"from_email\",\"value\":{\"type\":\"text_template\",\"value\":\"devrevuteam@devrev.ai\"}}],\"port_name\":\"input\"}],\"name\":\"Second nudge\",\"next_steps\":[{\"next_port_name\":\"input\",\"next_step_reference_key\":\"sleep_for_4\",\"port_name\":\"output\"}],\"operation\":{\"namespace\":\"send-emails\",\"slug\":\"send_emails\"},\"output_ports\":[{\"name\":\"output\",\"schema\":{\"field_descriptors\":[{\"field_type\":\"bool\",\"data_name\":\"status\",\"db_name\":\"status\",\"default_value\":false,\"is_required\":true,\"name\":\"status\",\"oasis\":{\"name\":\"status\"},\"ui\":{\"display_name\":\"status\"}}],\"type\":\"field_descriptor\"},\"type\":\"default\"},{\"name\":\"error\",\"schema\":{\"field_descriptors\":[{\"field_type\":\"text\",\"data_name\":\"message\",\"db_name\":\"message\",\"description\":\"Error message with more details about the error\",\"name\":\"message\",\"oasis\":{\"name\":\"message\"},\"ui\":{\"display_name\":\"Error Message\"}},{\"field_type\":\"enum\",\"allowed_values\":[\"bad_request\",\"not_found\",\"internal\"],\"data_name\":\"type\",\"db_name\":\"type\",\"description\":\"Type of the error\",\"name\":\"type\",\"oasis\":{\"name\":\"type\"},\"ui\":{\"display_name\":\"Error Type\"}}],\"type\":\"field_descriptor\"},\"type\":\"error\"}],\"reference_key\":\"send_emails_5\",\"ui_metadata\":{\"position\":{\"x\":-149.0962243142321,\"y\":2097.6461686413822}}},{\"description\":\"Pause the workflow for a specified duration\",\"input_ports\":[{\"name\":\"input\",\"schema\":{\"field_descriptors\":[{\"field_type\":\"composite\",\"composite_type\":\"devrev:duration\",\"data_name\":\"duration\",\"db_name\":\"duration\",\"description\":\"Duration to sleep for\",\"is_required\":true,\"name\":\"duration\",\"oasis\":{\"name\":\"duration\"}}],\"type\":\"field_descriptor\"},\"type\":\"default\"},{\"name\":\"callback\",\"schema\":{\"type\":\"field_descriptor\"},\"type\":\"system\"}],\"input_values\":[{\"fields\":[{\"name\":\"duration\",\"value\":{\"type\":\"literal\",\"value\":{\"days\":3}}}],\"port_name\":\"input\"}],\"name\":\"Sleep For 3 days\",\"next_steps\":[{\"next_port_name\":\"input\",\"next_step_reference_key\":\"summary_job_query_node_3\",\"port_name\":\"output\"}],\"operation\":{\"namespace\":\"devrev\",\"slug\":\"sleep_for\"},\"output_ports\":[{\"name\":\"output\",\"schema\":{\"type\":\"field_descriptor\"},\"type\":\"default\"},{\"name\":\"error\",\"schema\":{\"field_descriptors\":[{\"field_type\":\"text\",\"data_name\":\"message\",\"db_name\":\"message\",\"description\":\"Error message with more details about the error\",\"name\":\"message\",\"oasis\":{\"name\":\"message\"},\"ui\":{\"display_name\":\"Error Message\"}},{\"field_type\":\"enum\",\"allowed_values\":[\"bad_request\",\"not_found\",\"internal\"],\"data_name\":\"type\",\"db_name\":\"type\",\"description\":\"Type of the error\",\"name\":\"type\",\"oasis\":{\"name\":\"type\"},\"ui\":{\"display_name\":\"Error Type\"}}],\"type\":\"field_descriptor\"},\"type\":\"error\"}],\"reference_key\":\"sleep_for_4\",\"ui_metadata\":{\"position\":{\"x\":-142.02405607855803,\"y\":2266.8386172698465}}},{\"description\":\"Perform a summary job query operation\",\"input_ports\":[{\"name\":\"input\",\"schema\":{\"field_descriptors\":[{\"field_type\":\"text\",\"data_name\":\"summary_job_list\",\"db_name\":\"summary_job_list\",\"description\":\"Comma-separated list of summary job aliases i.e sum_job_1, sum_job_2, ..\",\"is_required\":true,\"name\":\"summary_job_list\",\"oasis\":{\"name\":\"summary_job_list\"},\"ui\":{\"display_name\":\"Summary Job List\"}},{\"field_type\":\"text\",\"data_name\":\"summary_job_list_query\",\"db_name\":\"summary_job_list_query\",\"description\":\"DuckDB SQL query to run against the summary jobs\",\"is_required\":true,\"name\":\"summary_job_list_query\",\"oasis\":{\"name\":\"summary_job_list_query\"},\"ui\":{\"display_name\":\"Summary Job List Query\"}}],\"type\":\"field_descriptor\"},\"type\":\"default\"}],\"input_values\":[{\"fields\":[{\"name\":\"summary_job_list_query\",\"value\":{\"type\":\"text_template\",\"value\":\"SELECT * FROM courses_completion_revu WHERE learner = '{% expr $get('contact_updated_1', 'output').id %}'\"}},{\"name\":\"summary_job_list\",\"value\":{\"type\":\"text_template\",\"value\":\"courses_completion_revu\"}}],\"port_name\":\"input\"}],\"name\":\"Summary Job Query 3\",\"next_steps\":[{\"next_port_name\":\"input\",\"next_step_reference_key\":\"if_else_5\",\"port_name\":\"output\"}],\"operation\":{\"namespace\":\"summary-job-query\",\"slug\":\"summary_job_query_node\"},\"output_ports\":[{\"name\":\"output\",\"schema\":{\"field_descriptors\":[{\"field_type\":\"array\",\"base_type\":\"json_value\",\"data_name\":\"query_result\",\"db_name\":\"query_result\",\"description\":\"Result of the summary job query\",\"name\":\"query_result\",\"oasis\":{\"name\":\"query_result\"},\"ui\":{\"display_name\":\"Query Result\"}},{\"field_type\":\"text\",\"data_name\":\"query_result_text\",\"db_name\":\"query_result_text\",\"description\":\"Result of the summary job query\",\"name\":\"query_result_text\",\"oasis\":{\"name\":\"query_result_text\"},\"ui\":{\"display_name\":\"Query Result Text\"}}],\"type\":\"field_descriptor\"},\"type\":\"default\"},{\"name\":\"error\",\"schema\":{\"field_descriptors\":[{\"field_type\":\"text\",\"data_name\":\"message\",\"db_name\":\"message\",\"description\":\"Error message with more details about the error\",\"name\":\"message\",\"oasis\":{\"name\":\"message\"},\"ui\":{\"display_name\":\"Error Message\"}},{\"field_type\":\"enum\",\"allowed_values\":[\"bad_request\",\"not_found\",\"internal\"],\"data_name\":\"type\",\"db_name\":\"type\",\"description\":\"Type of the error\",\"name\":\"type\",\"oasis\":{\"name\":\"type\"},\"ui\":{\"display_name\":\"Error Type\"}}],\"type\":\"field_descriptor\"},\"type\":\"error\"}],\"reference_key\":\"summary_job_query_node_3\",\"ui_metadata\":{\"position\":{\"x\":-145.07216823567407,\"y\":2406.5980564842666}}},{\"description\":\"Branch the workflow based on a condition\",\"input_ports\":[{\"name\":\"input\",\"schema\":{\"field_descriptors\":[{\"field_type\":\"struct\",\"data_name\":\"condition\",\"db_name\":\"condition\",\"description\":\"Condition to evaluate\",\"is_required\":true,\"name\":\"condition\",\"oasis\":{\"name\":\"condition\"}}],\"type\":\"field_descriptor\"},\"type\":\"default\"}],\"input_values\":[{\"fields\":[{\"name\":\"condition\",\"value\":{\"type\":\"literal\",\"value\":{\"conditions\":[{\"conditions\":[{\"operands\":[{\"type\":\"jsonata_expression\",\"value\":\"$get('summary_job_query_node_3', 'output').query_result[]\"}],\"operator\":\"exists\",\"type\":\"rule\",\"ui_reference_key\":\"8335894a-799c-43ee-8d09-65ce7b7b8ef5\"}],\"logical_operator\":\"and\",\"negate\":false,\"type\":\"group\",\"ui_reference_key\":\"9aca7bf6-de61-48f6-ae39-b0c6ebb92844\"}],\"logical_operator\":\"and\",\"negate\":false,\"type\":\"group\",\"ui_reference_key\":\"23eb7581-212b-4741-8500-795ab42723dd\"}}}],\"port_name\":\"input\"}],\"name\":\"Articulate account created?\",\"next_steps\":[{\"next_port_name\":\"input\",\"next_step_reference_key\":\"send_emails_6\",\"port_name\":\"false\"}],\"operation\":{\"namespace\":\"devrev\",\"slug\":\"if_else\"},\"output_ports\":[{\"name\":\"true\",\"type\":\"default\"},{\"name\":\"false\",\"type\":\"default\"},{\"name\":\"error\",\"schema\":{\"field_descriptors\":[{\"field_type\":\"text\",\"data_name\":\"message\",\"db_name\":\"message\",\"description\":\"Error message with more details about the error\",\"name\":\"message\",\"oasis\":{\"name\":\"message\"},\"ui\":{\"display_name\":\"Error Message\"}},{\"field_type\":\"enum\",\"allowed_values\":[\"bad_request\",\"not_found\",\"internal\"],\"data_name\":\"type\",\"db_name\":\"type\",\"description\":\"Type of the error\",\"name\":\"type\",\"oasis\":{\"name\":\"type\"},\"ui\":{\"display_name\":\"Error Type\"}}],\"type\":\"field_descriptor\"},\"type\":\"error\"}],\"reference_key\":\"if_else_5\",\"ui_metadata\":{\"position\":{\"x\":-142.09622431423207,\"y\":2606.055121976869}}},{\"description\":\"You can now send personalized emails using this node. Check the [Documentation](https://devrev.ai/docs/automations/send-emails) for usage details and limitations.\",\"input_ports\":[{\"name\":\"input\",\"schema\":{\"field_descriptors\":[{\"field_type\":\"array\",\"base_type\":\"text\",\"data_name\":\"to_emails\",\"db_name\":\"to_emails\",\"description\":\"The email addresses of the recipients\",\"is_required\":true,\"name\":\"to_emails\",\"oasis\":{\"name\":\"to_emails\"},\"ui\":{\"display_name\":\"Recipient Email Addresses\"}},{\"field_type\":\"array\",\"base_type\":\"text\",\"data_name\":\"cc_emails\",\"db_name\":\"cc_emails\",\"description\":\"The email addresses of the CC recipients\",\"is_required\":false,\"name\":\"cc_emails\",\"oasis\":{\"name\":\"cc_emails\"},\"ui\":{\"display_name\":\"CC Recipient Email Addresses\"}},{\"field_type\":\"array\",\"base_type\":\"text\",\"data_name\":\"bcc_emails\",\"db_name\":\"bcc_emails\",\"description\":\"The email addresses of the BCC recipients\",\"is_required\":false,\"name\":\"bcc_emails\",\"oasis\":{\"name\":\"bcc_emails\"},\"ui\":{\"display_name\":\"BCC Recipient Email Addresses\"}},{\"field_type\":\"text\",\"data_name\":\"sender_name\",\"db_name\":\"sender_name\",\"description\":\"The name of the sender\",\"is_required\":false,\"name\":\"sender_name\",\"oasis\":{\"name\":\"sender_name\"},\"ui\":{\"display_name\":\"Sender Name\"}},{\"field_type\":\"text\",\"data_name\":\"reply_to\",\"db_name\":\"reply_to\",\"description\":\"The email address of the reply-to\",\"is_required\":false,\"name\":\"reply_to\",\"oasis\":{\"name\":\"reply_to\"},\"ui\":{\"display_name\":\"Reply-To Email Address\"}},{\"field_type\":\"text\",\"data_name\":\"from_email\",\"db_name\":\"from_email\",\"description\":\"The email address of the sender\",\"is_required\":true,\"name\":\"from_email\",\"oasis\":{\"name\":\"from_email\"},\"ui\":{\"display_name\":\"Sender Email Address\"}},{\"field_type\":\"text\",\"data_name\":\"email_subject\",\"db_name\":\"email_subject\",\"description\":\"The subject of the email\",\"is_required\":true,\"name\":\"email_subject\",\"oasis\":{\"name\":\"email_subject\"},\"ui\":{\"display_name\":\"Email Subject\"}},{\"field_type\":\"text\",\"data_name\":\"email_body\",\"db_name\":\"email_body\",\"description\":\"The body of the email in HTML/text format. Use this field to customize the email body in workflow.\",\"name\":\"email_body\",\"oasis\":{\"name\":\"email_body\"},\"ui\":{\"display_name\":\"Email Body\"}},{\"field_type\":\"text\",\"data_name\":\"template_name\",\"db_name\":\"template_name\",\"description\":\"The name of the email template. Use this field to directly use the email template from Sendgrid.\",\"name\":\"template_name\",\"oasis\":{\"name\":\"template_name\"},\"ui\":{\"display_name\":\"Email Template Name\"}},{\"field_type\":\"text\",\"data_name\":\"fields\",\"db_name\":\"fields\",\"description\":\"The fields to be replaced in the email template. Use this field only when you choose to use the email template from Sendgrid.<Example:field1=value,field2=value>\",\"name\":\"fields\",\"oasis\":{\"name\":\"fields\"},\"ui\":{\"display_name\":\"Fields to Replace in Email Template\"}}],\"type\":\"field_descriptor\"},\"type\":\"default\"}],\"input_values\":[{\"fields\":[{\"name\":\"to_emails\",\"value\":{\"type\":\"list_value\",\"value\":{\"items\":[{\"type\":\"jsonata_expression\",\"value\":\"$append($get('contact_updated_1', 'output').email, [])\"}]}}},{\"name\":\"email_subject\",\"value\":{\"type\":\"text_template\",\"value\":\"⏰ Final Reminder: Your DevRev Learning Path Closes Soon\"}},{\"name\":\"email_body\",\"value\":{\"type\":\"text_template\",\"value\":\"```\\n<p>Hi there\\n```\\n\\n{% expr $get('contact_updated_1', 'output').display_name %}\\n\\n```\\n!</p>\\n<p>This is your final reminder to register for your DevRev learning path.</p>\\n<p>Teams that have already registered are working through their courses and building stronger foundations in DevRev — learning how to triage tickets faster, resolve customer issues more efficiently, navigate complex workflows, and use the platform with confidence in their daily work.</p>\\n<p>Your peers are already getting ahead — discovering best practices, shortcuts, and smarter ways to manage support operations. The teams that start early ramp up faster and avoid the common pitfalls that slow others down.</p>\\n<p>If you want to stop feeling like you’re learning on the fly and start working with clarity and confidence:</p>\\n<p><a href=\\\"https://devrevu.reach360.com/share/learning-path/56990e10-8579-472c-b723-992a686ce401\\\">Register now</a></p>\\n<p>If your team would like a live, hands-on session tailored to your support workflows, simply reply to this email and we’ll coordinate one based on your availability.</p>\\n<p>Your customers — and your confidence — will thank you.</p>\\n<p>— Team DevRevU</p>\\n```\"}},{\"name\":\"from_email\",\"value\":{\"type\":\"text_template\",\"value\":\"devrevuteam@devrev.ai\"}}],\"port_name\":\"input\"}],\"name\":\"Third nudge\",\"operation\":{\"namespace\":\"send-emails\",\"slug\":\"send_emails\"},\"output_ports\":[{\"name\":\"output\",\"schema\":{\"field_descriptors\":[{\"field_type\":\"bool\",\"data_name\":\"status\",\"db_name\":\"status\",\"default_value\":false,\"is_required\":true,\"name\":\"status\",\"oasis\":{\"name\":\"status\"},\"ui\":{\"display_name\":\"status\"}}],\"type\":\"field_descriptor\"},\"type\":\"default\"},{\"name\":\"error\",\"schema\":{\"field_descriptors\":[{\"field_type\":\"text\",\"data_name\":\"message\",\"db_name\":\"message\",\"description\":\"Error message with more details about the error\",\"name\":\"message\",\"oasis\":{\"name\":\"message\"},\"ui\":{\"display_name\":\"Error Message\"}},{\"field_type\":\"enum\",\"allowed_values\":[\"bad_request\",\"not_found\",\"internal\"],\"data_name\":\"type\",\"db_name\":\"type\",\"description\":\"Type of the error\",\"name\":\"type\",\"oasis\":{\"name\":\"type\"},\"ui\":{\"display_name\":\"Error Type\"}}],\"type\":\"field_descriptor\"},\"type\":\"error\"}],\"reference_key\":\"send_emails_6\",\"ui_metadata\":{\"position\":{\"x\":-126.36084117837034,\"y\":2780.0070098197525}}},{\"description\":\"You can now send personalized emails using this node. Check the [Documentation](https://devrev.ai/docs/automations/send-emails) for usage details and limitations.\",\"input_ports\":[{\"name\":\"input\",\"schema\":{\"field_descriptors\":[{\"field_type\":\"array\",\"base_type\":\"text\",\"data_name\":\"to_emails\",\"db_name\":\"to_emails\",\"description\":\"The email addresses of the recipients\",\"is_required\":true,\"name\":\"to_emails\",\"oasis\":{\"name\":\"to_emails\"},\"ui\":{\"display_name\":\"Recipient Email Addresses\"}},{\"field_type\":\"array\",\"base_type\":\"text\",\"data_name\":\"cc_emails\",\"db_name\":\"cc_emails\",\"description\":\"The email addresses of the CC recipients\",\"is_required\":false,\"name\":\"cc_emails\",\"oasis\":{\"name\":\"cc_emails\"},\"ui\":{\"display_name\":\"CC Recipient Email Addresses\"}},{\"field_type\":\"array\",\"base_type\":\"text\",\"data_name\":\"bcc_emails\",\"db_name\":\"bcc_emails\",\"description\":\"The email addresses of the BCC recipients\",\"is_required\":false,\"name\":\"bcc_emails\",\"oasis\":{\"name\":\"bcc_emails\"},\"ui\":{\"display_name\":\"BCC Recipient Email Addresses\"}},{\"field_type\":\"text\",\"data_name\":\"sender_name\",\"db_name\":\"sender_name\",\"description\":\"The name of the sender\",\"is_required\":false,\"name\":\"sender_name\",\"oasis\":{\"name\":\"sender_name\"},\"ui\":{\"display_name\":\"Sender Name\"}},{\"field_type\":\"text\",\"data_name\":\"reply_to\",\"db_name\":\"reply_to\",\"description\":\"The email address of the reply-to\",\"is_required\":false,\"name\":\"reply_to\",\"oasis\":{\"name\":\"reply_to\"},\"ui\":{\"display_name\":\"Reply-To Email Address\"}},{\"field_type\":\"text\",\"data_name\":\"from_email\",\"db_name\":\"from_email\",\"description\":\"The email address of the sender\",\"is_required\":true,\"name\":\"from_email\",\"oasis\":{\"name\":\"from_email\"},\"ui\":{\"display_name\":\"Sender Email Address\"}},{\"field_type\":\"text\",\"data_name\":\"email_subject\",\"db_name\":\"email_subject\",\"description\":\"The subject of the email\",\"is_required\":true,\"name\":\"email_subject\",\"oasis\":{\"name\":\"email_subject\"},\"ui\":{\"display_name\":\"Email Subject\"}},{\"field_type\":\"text\",\"data_name\":\"email_body\",\"db_name\":\"email_body\",\"description\":\"The body of the email in HTML/text format. Use this field to customize the email body in workflow.\",\"name\":\"email_body\",\"oasis\":{\"name\":\"email_body\"},\"ui\":{\"display_name\":\"Email Body\"}},{\"field_type\":\"text\",\"data_name\":\"template_name\",\"db_name\":\"template_name\",\"description\":\"The name of the email template. Use this field to directly use the email template from Sendgrid.\",\"name\":\"template_name\",\"oasis\":{\"name\":\"template_name\"},\"ui\":{\"display_name\":\"Email Template Name\"}},{\"field_type\":\"text\",\"data_name\":\"fields\",\"db_name\":\"fields\",\"description\":\"The fields to be replaced in the email template. Use this field only when you choose to use the email template from Sendgrid.<Example:field1=value,field2=value>\",\"name\":\"fields\",\"oasis\":{\"name\":\"fields\"},\"ui\":{\"display_name\":\"Fields to Replace in Email Template\"}}],\"type\":\"field_descriptor\"},\"type\":\"default\"}],\"input_values\":[{\"fields\":[{\"name\":\"to_emails\",\"value\":{\"type\":\"list_value\",\"value\":{\"items\":[{\"type\":\"jsonata_expression\",\"value\":\"$append($get('contact_updated_1', 'output').email, [])\"}]}}},{\"name\":\"email_subject\",\"value\":{\"type\":\"text_template\",\"value\":\"🚀 Your DevRev Mastery Starts Now—Here's Your Learning Path\"}},{\"name\":\"email_body\",\"value\":{\"type\":\"text_template\",\"value\":\"```\\n<p>Hi there \\n```\\n\\n{% expr $get('contact_updated_1', 'output').display_name %}\\n\\n```\\n!</p>\\n <p>\\n Welcome to <strong>DevRevU</strong>—your hub for everything you need to master DevRev Build and accelerate your impact as an engineering team.\\n </p>\\n <p>\\n We’ve created a dedicated learning path designed specifically for builders working in DevRev to help you ship faster, stay aligned, and increase your product development impact.\\n </p>\\n <p><strong>Your learning path includes:</strong></p>\\n <ul>\\n <li>\\n <strong>Foundational courses</strong> — Build a strong baseline on DevRev Build concepts, workflows, and best practices\\n </li>\\n <li>\\n <strong>Practical application</strong> — Guidance you can immediately apply to your development pipeline\\n </li>\\n <li>\\n <strong>Expert insights</strong> — Learn how to streamline planning, improve collaboration, and ship features with confidence\\n </li>\\n </ul>\\n <p>\\n Here’s the reality: Teams that actively engage with the learning path see faster feature velocity, stronger platform adoption, and more predictable development outcomes.\\n </p>\\n <p>\\n If your team would benefit from live, hands-on sessions tailored to your workflows, we’re happy to organize them. Just let us know, and we’ll coordinate a session that fits your needs.\\n </p>\\n <p><strong>Your first step:</strong></p>\\n <p>\\n <a href=\\\"https://devrevu.reach360.com/share/learning-path/c13c3943-511a-459f-b898-964ecf164df3\\\" >\\n Register for your learning path\\n </a>\\n </p>\\n <p>\\n Looking forward to building with you.\\n </p>\\n <p>\\n — Team DevRevU\\n </p>\\n \\n```\"}},{\"name\":\"from_email\",\"value\":{\"type\":\"text_template\",\"value\":\"devrevuteam@devrev.ai\"}}],\"port_name\":\"input\"}],\"name\":\"First email Build\",\"next_steps\":[{\"next_port_name\":\"input\",\"next_step_reference_key\":\"sleep_for_5\",\"port_name\":\"output\"}],\"operation\":{\"namespace\":\"send-emails\",\"slug\":\"send_emails\"},\"output_ports\":[{\"name\":\"output\",\"schema\":{\"field_descriptors\":[{\"field_type\":\"bool\",\"data_name\":\"status\",\"db_name\":\"status\",\"default_value\":false,\"is_required\":true,\"name\":\"status\",\"oasis\":{\"name\":\"status\"},\"ui\":{\"display_name\":\"status\"}}],\"type\":\"field_descriptor\"},\"type\":\"default\"},{\"name\":\"error\",\"schema\":{\"field_descriptors\":[{\"field_type\":\"text\",\"data_name\":\"message\",\"db_name\":\"message\",\"description\":\"Error message with more details about the error\",\"name\":\"message\",\"oasis\":{\"name\":\"message\"},\"ui\":{\"display_name\":\"Error Message\"}},{\"field_type\":\"enum\",\"allowed_values\":[\"bad_request\",\"not_found\",\"internal\"],\"data_name\":\"type\",\"db_name\":\"type\",\"description\":\"Type of the error\",\"name\":\"type\",\"oasis\":{\"name\":\"type\"},\"ui\":{\"display_name\":\"Error Type\"}}],\"type\":\"field_descriptor\"},\"type\":\"error\"}],\"reference_key\":\"send_emails_7\",\"ui_metadata\":{\"position\":{\"x\":392,\"y\":642}}},{\"description\":\"You can now send personalized emails using this node. Check the [Documentation](https://devrev.ai/docs/automations/send-emails) for usage details and limitations.\",\"input_ports\":[{\"name\":\"input\",\"schema\":{\"field_descriptors\":[{\"field_type\":\"array\",\"base_type\":\"text\",\"data_name\":\"to_emails\",\"db_name\":\"to_emails\",\"description\":\"The email addresses of the recipients\",\"is_required\":true,\"name\":\"to_emails\",\"oasis\":{\"name\":\"to_emails\"},\"ui\":{\"display_name\":\"Recipient Email Addresses\"}},{\"field_type\":\"array\",\"base_type\":\"text\",\"data_name\":\"cc_emails\",\"db_name\":\"cc_emails\",\"description\":\"The email addresses of the CC recipients\",\"is_required\":false,\"name\":\"cc_emails\",\"oasis\":{\"name\":\"cc_emails\"},\"ui\":{\"display_name\":\"CC Recipient Email Addresses\"}},{\"field_type\":\"array\",\"base_type\":\"text\",\"data_name\":\"bcc_emails\",\"db_name\":\"bcc_emails\",\"description\":\"The email addresses of the BCC recipients\",\"is_required\":false,\"name\":\"bcc_emails\",\"oasis\":{\"name\":\"bcc_emails\"},\"ui\":{\"display_name\":\"BCC Recipient Email Addresses\"}},{\"field_type\":\"text\",\"data_name\":\"sender_name\",\"db_name\":\"sender_name\",\"description\":\"The name of the sender\",\"is_required\":false,\"name\":\"sender_name\",\"oasis\":{\"name\":\"sender_name\"},\"ui\":{\"display_name\":\"Sender Name\"}},{\"field_type\":\"text\",\"data_name\":\"reply_to\",\"db_name\":\"reply_to\",\"description\":\"The email address of the reply-to\",\"is_required\":false,\"name\":\"reply_to\",\"oasis\":{\"name\":\"reply_to\"},\"ui\":{\"display_name\":\"Reply-To Email Address\"}},{\"field_type\":\"text\",\"data_name\":\"from_email\",\"db_name\":\"from_email\",\"description\":\"The email address of the sender\",\"is_required\":true,\"name\":\"from_email\",\"oasis\":{\"name\":\"from_email\"},\"ui\":{\"display_name\":\"Sender Email Address\"}},{\"field_type\":\"text\",\"data_name\":\"email_subject\",\"db_name\":\"email_subject\",\"description\":\"The subject of the email\",\"is_required\":true,\"name\":\"email_subject\",\"oasis\":{\"name\":\"email_subject\"},\"ui\":{\"display_name\":\"Email Subject\"}},{\"field_type\":\"text\",\"data_name\":\"email_body\",\"db_name\":\"email_body\",\"description\":\"The body of the email in HTML/text format. Use this field to customize the email body in workflow.\",\"name\":\"email_body\",\"oasis\":{\"name\":\"email_body\"},\"ui\":{\"display_name\":\"Email Body\"}},{\"field_type\":\"text\",\"data_name\":\"template_name\",\"db_name\":\"template_name\",\"description\":\"The name of the email template. Use this field to directly use the email template from Sendgrid.\",\"name\":\"template_name\",\"oasis\":{\"name\":\"template_name\"},\"ui\":{\"display_name\":\"Email Template Name\"}},{\"field_type\":\"text\",\"data_name\":\"fields\",\"db_name\":\"fields\",\"description\":\"The fields to be replaced in the email template. Use this field only when you choose to use the email template from Sendgrid.<Example:field1=value,field2=value>\",\"name\":\"fields\",\"oasis\":{\"name\":\"fields\"},\"ui\":{\"display_name\":\"Fields to Replace in Email Template\"}}],\"type\":\"field_descriptor\"},\"type\":\"default\"}],\"input_values\":[{\"fields\":[{\"name\":\"to_emails\",\"value\":{\"type\":\"list_value\",\"value\":{\"items\":[{\"type\":\"jsonata_expression\",\"value\":\"$append($get('contact_updated_1', 'output').email, [])\"}]}}},{\"name\":\"email_subject\",\"value\":{\"type\":\"text_template\",\"value\":\"🚀 Your DevRev Mastery Starts Now—Here's Your Learning Path\"}},{\"name\":\"email_body\",\"value\":{\"type\":\"text_template\",\"value\":\"```\\n<p>Hi there\\n```\\n\\n{% expr $get('contact_updated_1', 'output').display_name %}\\n\\n```\\n!</p>\\n<p>\\nWelcome to <strong>DevRevU</strong>—your hub for everything you need to master DevRev and accelerate your impact.\\n</p>\\n<p>\\nWe’ve created dedicated learning paths tailored to different roles so you can build confidence, move faster, and get the most out of the platform based on how you use DevRev.\\n</p>\\n<p><strong>Each learning path includes:</strong></p>\\n<ul>\\n <li>\\n <strong>Foundational courses</strong> — Build a strong baseline on DevRev concepts and workflows\\n </li>\\n <li>\\n <strong>Practical guidance</strong> — Actionable content you can immediately apply in your role\\n </li>\\n <li>\\n <strong>Expert insights</strong> — Learn best practices to work more efficiently and confidently in DevRev\\n </li>\\n</ul>\\n<p>\\nHere’s the reality: Teams that actively engage with their learning path see faster adoption, stronger platform confidence, and measurably better outcomes.\\n</p>\\n<p>\\nIf your team would benefit from live, hands-on sessions tailored to your use case, we’re happy to organize them. Just let us know, and we’ll coordinate a session that fits your needs.\\n</p>\\n<p>\\n<strong>Your first step:</strong> Choose your learning path below according to your role and use case:\\n</p>\\n<p>\\n<strong>Support Professional</strong> — Master DevRev’s support workflows, ticketing, and customer management.<br>\\n<a href=\\\"https://devrevu.reach360.com/share/learning-path/56990e10-8579-472c-b723-992a686ce401\\\">Register for Support</a>\\n</p>\\n<p>\\n<strong>Builder</strong> — Master DevRev Build, product development workflows, and feature delivery.<br>\\n<a href=\\\"https://devrevu.reach360.com/share/learning-path/c13c3943-511a-459f-b898-964ecf164df3\\\">Register for Build</a>\\n</p>\\n<p>\\nLooking forward to supporting your success.\\n</p>\\n<p>\\n— Team DevRevU\\n</p>\\n```\"}},{\"name\":\"from_email\",\"value\":{\"type\":\"text_template\",\"value\":\"devrevuteam@devrev.ai\"}}],\"port_name\":\"input\"}],\"name\":\"First email Generic\",\"next_steps\":[{\"next_port_name\":\"input\",\"next_step_reference_key\":\"sleep_for_6\",\"port_name\":\"output\"}],\"operation\":{\"namespace\":\"send-emails\",\"slug\":\"send_emails\"},\"output_ports\":[{\"name\":\"output\",\"schema\":{\"field_descriptors\":[{\"field_type\":\"bool\",\"data_name\":\"status\",\"db_name\":\"status\",\"default_value\":false,\"is_required\":true,\"name\":\"status\",\"oasis\":{\"name\":\"status\"},\"ui\":{\"display_name\":\"status\"}}],\"type\":\"field_descriptor\"},\"type\":\"default\"},{\"name\":\"error\",\"schema\":{\"field_descriptors\":[{\"field_type\":\"text\",\"data_name\":\"message\",\"db_name\":\"message\",\"description\":\"Error message with more details about the error\",\"name\":\"message\",\"oasis\":{\"name\":\"message\"},\"ui\":{\"display_name\":\"Error Message\"}},{\"field_type\":\"enum\",\"allowed_values\":[\"bad_request\",\"not_found\",\"internal\"],\"data_name\":\"type\",\"db_name\":\"type\",\"description\":\"Type of the error\",\"name\":\"type\",\"oasis\":{\"name\":\"type\"},\"ui\":{\"display_name\":\"Error Type\"}}],\"type\":\"field_descriptor\"},\"type\":\"error\"}],\"reference_key\":\"send_emails_8\",\"ui_metadata\":{\"position\":{\"x\":822,\"y\":650}}},{\"description\":\"Pause the workflow for a specified duration\",\"input_ports\":[{\"name\":\"input\",\"schema\":{\"field_descriptors\":[{\"field_type\":\"composite\",\"composite_type\":\"devrev:duration\",\"data_name\":\"duration\",\"db_name\":\"duration\",\"description\":\"Duration to sleep for\",\"is_required\":true,\"name\":\"duration\",\"oasis\":{\"name\":\"duration\"}}],\"type\":\"field_descriptor\"},\"type\":\"default\"},{\"name\":\"callback\",\"schema\":{\"type\":\"field_descriptor\"},\"type\":\"system\"}],\"input_values\":[{\"fields\":[{\"name\":\"duration\",\"value\":{\"type\":\"literal\",\"value\":{\"days\":3}}}],\"port_name\":\"input\"}],\"name\":\"Sleep For 3 days\",\"next_steps\":[{\"next_port_name\":\"input\",\"next_step_reference_key\":\"summary_job_query_node_4\",\"port_name\":\"output\"}],\"operation\":{\"namespace\":\"devrev\",\"slug\":\"sleep_for\"},\"output_ports\":[{\"name\":\"output\",\"schema\":{\"type\":\"field_descriptor\"},\"type\":\"default\"},{\"name\":\"error\",\"schema\":{\"field_descriptors\":[{\"field_type\":\"text\",\"data_name\":\"message\",\"db_name\":\"message\",\"description\":\"Error message with more details about the error\",\"name\":\"message\",\"oasis\":{\"name\":\"message\"},\"ui\":{\"display_name\":\"Error Message\"}},{\"field_type\":\"enum\",\"allowed_values\":[\"bad_request\",\"not_found\",\"internal\"],\"data_name\":\"type\",\"db_name\":\"type\",\"description\":\"Type of the error\",\"name\":\"type\",\"oasis\":{\"name\":\"type\"},\"ui\":{\"display_name\":\"Error Type\"}}],\"type\":\"field_descriptor\"},\"type\":\"error\"}],\"reference_key\":\"sleep_for_5\",\"ui_metadata\":{\"position\":{\"x\":389,\"y\":793}}},{\"description\":\"Pause the workflow for a specified duration\",\"input_ports\":[{\"name\":\"input\",\"schema\":{\"field_descriptors\":[{\"field_type\":\"composite\",\"composite_type\":\"devrev:duration\",\"data_name\":\"duration\",\"db_name\":\"duration\",\"description\":\"Duration to sleep for\",\"is_required\":true,\"name\":\"duration\",\"oasis\":{\"name\":\"duration\"}}],\"type\":\"field_descriptor\"},\"type\":\"default\"},{\"name\":\"callback\",\"schema\":{\"type\":\"field_descriptor\"},\"type\":\"system\"}],\"input_values\":[{\"fields\":[{\"name\":\"duration\",\"value\":{\"type\":\"literal\",\"value\":{\"days\":3}}}],\"port_name\":\"input\"}],\"name\":\"Sleep For 3 days\",\"next_steps\":[{\"next_port_name\":\"input\",\"next_step_reference_key\":\"summary_job_query_node_5\",\"port_name\":\"output\"}],\"operation\":{\"namespace\":\"devrev\",\"slug\":\"sleep_for\"},\"output_ports\":[{\"name\":\"output\",\"schema\":{\"type\":\"field_descriptor\"},\"type\":\"default\"},{\"name\":\"error\",\"schema\":{\"field_descriptors\":[{\"field_type\":\"text\",\"data_name\":\"message\",\"db_name\":\"message\",\"description\":\"Error message with more details about the error\",\"name\":\"message\",\"oasis\":{\"name\":\"message\"},\"ui\":{\"display_name\":\"Error Message\"}},{\"field_type\":\"enum\",\"allowed_values\":[\"bad_request\",\"not_found\",\"internal\"],\"data_name\":\"type\",\"db_name\":\"type\",\"description\":\"Type of the error\",\"name\":\"type\",\"oasis\":{\"name\":\"type\"},\"ui\":{\"display_name\":\"Error Type\"}}],\"type\":\"field_descriptor\"},\"type\":\"error\"}],\"reference_key\":\"sleep_for_6\",\"ui_metadata\":{\"position\":{\"x\":829,\"y\":801}}},{\"description\":\"Perform a summary job query operation\",\"input_ports\":[{\"name\":\"input\",\"schema\":{\"field_descriptors\":[{\"field_type\":\"text\",\"data_name\":\"summary_job_list\",\"db_name\":\"summary_job_list\",\"description\":\"Comma-separated list of summary job aliases i.e sum_job_1, sum_job_2, ..\",\"is_required\":true,\"name\":\"summary_job_list\",\"oasis\":{\"name\":\"summary_job_list\"},\"ui\":{\"display_name\":\"Summary Job List\"}},{\"field_type\":\"text\",\"data_name\":\"summary_job_list_query\",\"db_name\":\"summary_job_list_query\",\"description\":\"DuckDB SQL query to run against the summary jobs\",\"is_required\":true,\"name\":\"summary_job_list_query\",\"oasis\":{\"name\":\"summary_job_list_query\"},\"ui\":{\"display_name\":\"Summary Job List Query\"}}],\"type\":\"field_descriptor\"},\"type\":\"default\"}],\"input_values\":[{\"fields\":[{\"name\":\"summary_job_list\",\"value\":{\"type\":\"text_template\",\"value\":\"courses_completion_revu\"}},{\"name\":\"summary_job_list_query\",\"value\":{\"type\":\"text_template\",\"value\":\"SELECT * FROM courses_completion_revu WHERE learner = '{% expr $get('contact_updated_1', 'output').id %}'\"}}],\"port_name\":\"input\"}],\"name\":\"Summary Job Query 4\",\"next_steps\":[{\"next_port_name\":\"input\",\"next_step_reference_key\":\"if_else_6\",\"port_name\":\"output\"}],\"operation\":{\"namespace\":\"summary-job-query\",\"slug\":\"summary_job_query_node\"},\"output_ports\":[{\"name\":\"output\",\"schema\":{\"field_descriptors\":[{\"field_type\":\"array\",\"base_type\":\"json_value\",\"data_name\":\"query_result\",\"db_name\":\"query_result\",\"description\":\"Result of the summary job query\",\"name\":\"query_result\",\"oasis\":{\"name\":\"query_result\"},\"ui\":{\"display_name\":\"Query Result\"}},{\"field_type\":\"text\",\"data_name\":\"query_result_text\",\"db_name\":\"query_result_text\",\"description\":\"Result of the summary job query\",\"name\":\"query_result_text\",\"oasis\":{\"name\":\"query_result_text\"},\"ui\":{\"display_name\":\"Query Result Text\"}}],\"type\":\"field_descriptor\"},\"type\":\"default\"},{\"name\":\"error\",\"schema\":{\"field_descriptors\":[{\"field_type\":\"text\",\"data_name\":\"message\",\"db_name\":\"message\",\"description\":\"Error message with more details about the error\",\"name\":\"message\",\"oasis\":{\"name\":\"message\"},\"ui\":{\"display_name\":\"Error Message\"}},{\"field_type\":\"enum\",\"allowed_values\":[\"bad_request\",\"not_found\",\"internal\"],\"data_name\":\"type\",\"db_name\":\"type\",\"description\":\"Type of the error\",\"name\":\"type\",\"oasis\":{\"name\":\"type\"},\"ui\":{\"display_name\":\"Error Type\"}}],\"type\":\"field_descriptor\"},\"type\":\"error\"}],\"reference_key\":\"summary_job_query_node_4\",\"ui_metadata\":{\"position\":{\"x\":396,\"y\":942.0000000000001}}},{\"description\":\"Branch the workflow based on a condition\",\"input_ports\":[{\"name\":\"input\",\"schema\":{\"field_descriptors\":[{\"field_type\":\"struct\",\"data_name\":\"condition\",\"db_name\":\"condition\",\"description\":\"Condition to evaluate\",\"is_required\":true,\"name\":\"condition\",\"oasis\":{\"name\":\"condition\"}}],\"type\":\"field_descriptor\"},\"type\":\"default\"}],\"input_values\":[{\"fields\":[{\"name\":\"condition\",\"value\":{\"type\":\"literal\",\"value\":{\"conditions\":[{\"conditions\":[{\"operands\":[{\"type\":\"jsonata_expression\",\"value\":\"$get('summary_job_query_node_4', 'output').query_result[]\"}],\"operator\":\"exists\",\"type\":\"rule\",\"ui_reference_key\":\"c0ee1d90-1e0f-415b-ba12-a0dde2686140\"}],\"logical_operator\":\"and\",\"negate\":false,\"type\":\"group\",\"ui_reference_key\":\"1e1c199f-f0ea-408c-b04c-dadfe93e8308\"}],\"logical_operator\":\"and\",\"negate\":false,\"type\":\"group\",\"ui_reference_key\":\"34c6720f-6434-4f21-8447-0234a38dd1d1\"}}}],\"port_name\":\"input\"}],\"name\":\"Articulate account created?\",\"next_steps\":[{\"next_port_name\":\"input\",\"next_step_reference_key\":\"send_emails_9\",\"port_name\":\"false\"}],\"operation\":{\"namespace\":\"devrev\",\"slug\":\"if_else\"},\"output_ports\":[{\"name\":\"true\",\"type\":\"default\"},{\"name\":\"false\",\"type\":\"default\"},{\"name\":\"error\",\"schema\":{\"field_descriptors\":[{\"field_type\":\"text\",\"data_name\":\"message\",\"db_name\":\"message\",\"description\":\"Error message with more details about the error\",\"name\":\"message\",\"oasis\":{\"name\":\"message\"},\"ui\":{\"display_name\":\"Error Message\"}},{\"field_type\":\"enum\",\"allowed_values\":[\"bad_request\",\"not_found\",\"internal\"],\"data_name\":\"type\",\"db_name\":\"type\",\"description\":\"Type of the error\",\"name\":\"type\",\"oasis\":{\"name\":\"type\"},\"ui\":{\"display_name\":\"Error Type\"}}],\"type\":\"field_descriptor\"},\"type\":\"error\"}],\"reference_key\":\"if_else_6\",\"ui_metadata\":{\"position\":{\"x\":402.40895333548644,\"y\":1092}}},{\"description\":\"Perform a summary job query operation\",\"input_ports\":[{\"name\":\"input\",\"schema\":{\"field_descriptors\":[{\"field_type\":\"text\",\"data_name\":\"summary_job_list\",\"db_name\":\"summary_job_list\",\"description\":\"Comma-separated list of summary job aliases i.e sum_job_1, sum_job_2, ..\",\"is_required\":true,\"name\":\"summary_job_list\",\"oasis\":{\"name\":\"summary_job_list\"},\"ui\":{\"display_name\":\"Summary Job List\"}},{\"field_type\":\"text\",\"data_name\":\"summary_job_list_query\",\"db_name\":\"summary_job_list_query\",\"description\":\"DuckDB SQL query to run against the summary jobs\",\"is_required\":true,\"name\":\"summary_job_list_query\",\"oasis\":{\"name\":\"summary_job_list_query\"},\"ui\":{\"display_name\":\"Summary Job List Query\"}}],\"type\":\"field_descriptor\"},\"type\":\"default\"}],\"input_values\":[{\"fields\":[{\"name\":\"summary_job_list\",\"value\":{\"type\":\"text_template\",\"value\":\"courses_completion_revu\"}},{\"name\":\"summary_job_list_query\",\"value\":{\"type\":\"text_template\",\"value\":\"SELECT * FROM courses_completion_revu WHERE learner = '{% expr $get('contact_updated_1', 'output').id %}'\"}}],\"port_name\":\"input\"}],\"name\":\"Summary Job Query 5\",\"next_steps\":[{\"next_port_name\":\"input\",\"next_step_reference_key\":\"if_else_7\",\"port_name\":\"output\"}],\"operation\":{\"namespace\":\"summary-job-query\",\"slug\":\"summary_job_query_node\"},\"output_ports\":[{\"name\":\"output\",\"schema\":{\"field_descriptors\":[{\"field_type\":\"array\",\"base_type\":\"json_value\",\"data_name\":\"query_result\",\"db_name\":\"query_result\",\"description\":\"Result of the summary job query\",\"name\":\"query_result\",\"oasis\":{\"name\":\"query_result\"},\"ui\":{\"display_name\":\"Query Result\"}},{\"field_type\":\"text\",\"data_name\":\"query_result_text\",\"db_name\":\"query_result_text\",\"description\":\"Result of the summary job query\",\"name\":\"query_result_text\",\"oasis\":{\"name\":\"query_result_text\"},\"ui\":{\"display_name\":\"Query Result Text\"}}],\"type\":\"field_descriptor\"},\"type\":\"default\"},{\"name\":\"error\",\"schema\":{\"field_descriptors\":[{\"field_type\":\"text\",\"data_name\":\"message\",\"db_name\":\"message\",\"description\":\"Error message with more details about the error\",\"name\":\"message\",\"oasis\":{\"name\":\"message\"},\"ui\":{\"display_name\":\"Error Message\"}},{\"field_type\":\"enum\",\"allowed_values\":[\"bad_request\",\"not_found\",\"internal\"],\"data_name\":\"type\",\"db_name\":\"type\",\"description\":\"Type of the error\",\"name\":\"type\",\"oasis\":{\"name\":\"type\"},\"ui\":{\"display_name\":\"Error Type\"}}],\"type\":\"field_descriptor\"},\"type\":\"error\"}],\"reference_key\":\"summary_job_query_node_5\",\"ui_metadata\":{\"position\":{\"x\":848.0000000000002,\"y\":950}}},{\"description\":\"Branch the workflow based on a condition\",\"input_ports\":[{\"name\":\"input\",\"schema\":{\"field_descriptors\":[{\"field_type\":\"struct\",\"data_name\":\"condition\",\"db_name\":\"condition\",\"description\":\"Condition to evaluate\",\"is_required\":true,\"name\":\"condition\",\"oasis\":{\"name\":\"condition\"}}],\"type\":\"field_descriptor\"},\"type\":\"default\"}],\"input_values\":[{\"fields\":[{\"name\":\"condition\",\"value\":{\"type\":\"literal\",\"value\":{\"conditions\":[{\"conditions\":[{\"operands\":[{\"type\":\"jsonata_expression\",\"value\":\"$get('summary_job_query_node_5', 'output').query_result[]\"}],\"operator\":\"exists\",\"type\":\"rule\",\"ui_reference_key\":\"58377ab2-eabf-401e-8fed-cf935d1339fd\"}],\"logical_operator\":\"and\",\"negate\":false,\"type\":\"group\",\"ui_reference_key\":\"7a99719c-8122-494b-81af-1cfc5b26463d\"}],\"logical_operator\":\"and\",\"negate\":false,\"type\":\"group\",\"ui_reference_key\":\"cd621009-22c6-4cf0-88b2-3362b05374ff\"}}}],\"port_name\":\"input\"}],\"name\":\"Articulate account created?\",\"next_steps\":[{\"next_port_name\":\"input\",\"next_step_reference_key\":\"send_emails_10\",\"port_name\":\"false\"}],\"operation\":{\"namespace\":\"devrev\",\"slug\":\"if_else\"},\"output_ports\":[{\"name\":\"true\",\"type\":\"default\"},{\"name\":\"false\",\"type\":\"default\"},{\"name\":\"error\",\"schema\":{\"field_descriptors\":[{\"field_type\":\"text\",\"data_name\":\"message\",\"db_name\":\"message\",\"description\":\"Error message with more details about the error\",\"name\":\"message\",\"oasis\":{\"name\":\"message\"},\"ui\":{\"display_name\":\"Error Message\"}},{\"field_type\":\"enum\",\"allowed_values\":[\"bad_request\",\"not_found\",\"internal\"],\"data_name\":\"type\",\"db_name\":\"type\",\"description\":\"Type of the error\",\"name\":\"type\",\"oasis\":{\"name\":\"type\"},\"ui\":{\"display_name\":\"Error Type\"}}],\"type\":\"field_descriptor\"},\"type\":\"error\"}],\"reference_key\":\"if_else_7\",\"ui_metadata\":{\"position\":{\"x\":852.8693643077731,\"y\":1102.024056078558}}},{\"description\":\"You can now send personalized emails using this node. Check the [Documentation](https://devrev.ai/docs/automations/send-emails) for usage details and limitations.\",\"input_ports\":[{\"name\":\"input\",\"schema\":{\"field_descriptors\":[{\"field_type\":\"array\",\"base_type\":\"text\",\"data_name\":\"to_emails\",\"db_name\":\"to_emails\",\"description\":\"The email addresses of the recipients\",\"is_required\":true,\"name\":\"to_emails\",\"oasis\":{\"name\":\"to_emails\"},\"ui\":{\"display_name\":\"Recipient Email Addresses\"}},{\"field_type\":\"array\",\"base_type\":\"text\",\"data_name\":\"cc_emails\",\"db_name\":\"cc_emails\",\"description\":\"The email addresses of the CC recipients\",\"is_required\":false,\"name\":\"cc_emails\",\"oasis\":{\"name\":\"cc_emails\"},\"ui\":{\"display_name\":\"CC Recipient Email Addresses\"}},{\"field_type\":\"array\",\"base_type\":\"text\",\"data_name\":\"bcc_emails\",\"db_name\":\"bcc_emails\",\"description\":\"The email addresses of the BCC recipients\",\"is_required\":false,\"name\":\"bcc_emails\",\"oasis\":{\"name\":\"bcc_emails\"},\"ui\":{\"display_name\":\"BCC Recipient Email Addresses\"}},{\"field_type\":\"text\",\"data_name\":\"sender_name\",\"db_name\":\"sender_name\",\"description\":\"The name of the sender\",\"is_required\":false,\"name\":\"sender_name\",\"oasis\":{\"name\":\"sender_name\"},\"ui\":{\"display_name\":\"Sender Name\"}},{\"field_type\":\"text\",\"data_name\":\"reply_to\",\"db_name\":\"reply_to\",\"description\":\"The email address of the reply-to\",\"is_required\":false,\"name\":\"reply_to\",\"oasis\":{\"name\":\"reply_to\"},\"ui\":{\"display_name\":\"Reply-To Email Address\"}},{\"field_type\":\"text\",\"data_name\":\"from_email\",\"db_name\":\"from_email\",\"description\":\"The email address of the sender\",\"is_required\":true,\"name\":\"from_email\",\"oasis\":{\"name\":\"from_email\"},\"ui\":{\"display_name\":\"Sender Email Address\"}},{\"field_type\":\"text\",\"data_name\":\"email_subject\",\"db_name\":\"email_subject\",\"description\":\"The subject of the email\",\"is_required\":true,\"name\":\"email_subject\",\"oasis\":{\"name\":\"email_subject\"},\"ui\":{\"display_name\":\"Email Subject\"}},{\"field_type\":\"text\",\"data_name\":\"email_body\",\"db_name\":\"email_body\",\"description\":\"The body of the email in HTML/text format. Use this field to customize the email body in workflow.\",\"name\":\"email_body\",\"oasis\":{\"name\":\"email_body\"},\"ui\":{\"display_name\":\"Email Body\"}},{\"field_type\":\"text\",\"data_name\":\"template_name\",\"db_name\":\"template_name\",\"description\":\"The name of the email template. Use this field to directly use the email template from Sendgrid.\",\"name\":\"template_name\",\"oasis\":{\"name\":\"template_name\"},\"ui\":{\"display_name\":\"Email Template Name\"}},{\"field_type\":\"text\",\"data_name\":\"fields\",\"db_name\":\"fields\",\"description\":\"The fields to be replaced in the email template. Use this field only when you choose to use the email template from Sendgrid.<Example:field1=value,field2=value>\",\"name\":\"fields\",\"oasis\":{\"name\":\"fields\"},\"ui\":{\"display_name\":\"Fields to Replace in Email Template\"}}],\"type\":\"field_descriptor\"},\"type\":\"default\"}],\"input_values\":[{\"fields\":[{\"name\":\"to_emails\",\"value\":{\"type\":\"list_value\",\"value\":{\"items\":[{\"type\":\"jsonata_expression\",\"value\":\"$append($get('contact_updated_1', 'output').email, [])\"}]}}},{\"name\":\"email_subject\",\"value\":{\"type\":\"text_template\",\"value\":\"Your DevRev Learning Path Is Waiting—Claim It Now\"}},{\"name\":\"email_body\",\"value\":{\"type\":\"text_template\",\"value\":\"```\\n<p>Hi there\\n```\\n\\n{% expr $get('contact_updated_1', 'output').display_name %}\\n\\n```\\n!</p>\\n<p>\\nWe recently invited you to register for your DevRev Build learning path, but we haven’t seen you sign up yet.\\n</p>\\n<p>\\nHere’s why this matters: Engineering teams that start early gain confidence with the platform faster. They streamline planning, ship features more predictably, and remove common workflow bottlenecks from day one.\\n</p>\\n<p>\\nYour team can be in that position too. Getting started now helps you ramp up smoothly and make the most of DevRev Build in your development process.\\n</p>\\n<p>\\n<strong>Next step:</strong><br>\\n<a href=\\\"https://devrevu.reach360.com/share/learning-path/c13c3943-511a-459f-b898-964ecf164df3\\\">Register now</a>\\n</p>\\n<p>\\nIf your team would benefit from a live, hands-on session tailored to your development workflows, just reply to this email and let us know. We’re happy to coordinate a session that fits your needs.\\n</p>\\n<p>\\nIf you have any questions or need help getting started, simply reply — we’re here to support you.\\n</p>\\n<p>\\n— Team DevRevU\\n</p>\\n```\"}},{\"name\":\"from_email\",\"value\":{\"type\":\"text_template\",\"value\":\"devrevuteam@devrev.ai\"}}],\"port_name\":\"input\"}],\"name\":\"First nudge Build\",\"next_steps\":[{\"next_port_name\":\"input\",\"next_step_reference_key\":\"sleep_for_7\",\"port_name\":\"output\"}],\"operation\":{\"namespace\":\"send-emails\",\"slug\":\"send_emails\"},\"output_ports\":[{\"name\":\"output\",\"schema\":{\"field_descriptors\":[{\"field_type\":\"bool\",\"data_name\":\"status\",\"db_name\":\"status\",\"default_value\":false,\"is_required\":true,\"name\":\"status\",\"oasis\":{\"name\":\"status\"},\"ui\":{\"display_name\":\"status\"}}],\"type\":\"field_descriptor\"},\"type\":\"default\"},{\"name\":\"error\",\"schema\":{\"field_descriptors\":[{\"field_type\":\"text\",\"data_name\":\"message\",\"db_name\":\"message\",\"description\":\"Error message with more details about the error\",\"name\":\"message\",\"oasis\":{\"name\":\"message\"},\"ui\":{\"display_name\":\"Error Message\"}},{\"field_type\":\"enum\",\"allowed_values\":[\"bad_request\",\"not_found\",\"internal\"],\"data_name\":\"type\",\"db_name\":\"type\",\"description\":\"Type of the error\",\"name\":\"type\",\"oasis\":{\"name\":\"type\"},\"ui\":{\"display_name\":\"Error Type\"}}],\"type\":\"field_descriptor\"},\"type\":\"error\"}],\"reference_key\":\"send_emails_9\",\"ui_metadata\":{\"position\":{\"x\":417.31272902125437,\"y\":1288.9518878428842}}},{\"description\":\"You can now send personalized emails using this node. Check the [Documentation](https://devrev.ai/docs/automations/send-emails) for usage details and limitations.\",\"input_ports\":[{\"name\":\"input\",\"schema\":{\"field_descriptors\":[{\"field_type\":\"array\",\"base_type\":\"text\",\"data_name\":\"to_emails\",\"db_name\":\"to_emails\",\"description\":\"The email addresses of the recipients\",\"is_required\":true,\"name\":\"to_emails\",\"oasis\":{\"name\":\"to_emails\"},\"ui\":{\"display_name\":\"Recipient Email Addresses\"}},{\"field_type\":\"array\",\"base_type\":\"text\",\"data_name\":\"cc_emails\",\"db_name\":\"cc_emails\",\"description\":\"The email addresses of the CC recipients\",\"is_required\":false,\"name\":\"cc_emails\",\"oasis\":{\"name\":\"cc_emails\"},\"ui\":{\"display_name\":\"CC Recipient Email Addresses\"}},{\"field_type\":\"array\",\"base_type\":\"text\",\"data_name\":\"bcc_emails\",\"db_name\":\"bcc_emails\",\"description\":\"The email addresses of the BCC recipients\",\"is_required\":false,\"name\":\"bcc_emails\",\"oasis\":{\"name\":\"bcc_emails\"},\"ui\":{\"display_name\":\"BCC Recipient Email Addresses\"}},{\"field_type\":\"text\",\"data_name\":\"sender_name\",\"db_name\":\"sender_name\",\"description\":\"The name of the sender\",\"is_required\":false,\"name\":\"sender_name\",\"oasis\":{\"name\":\"sender_name\"},\"ui\":{\"display_name\":\"Sender Name\"}},{\"field_type\":\"text\",\"data_name\":\"reply_to\",\"db_name\":\"reply_to\",\"description\":\"The email address of the reply-to\",\"is_required\":false,\"name\":\"reply_to\",\"oasis\":{\"name\":\"reply_to\"},\"ui\":{\"display_name\":\"Reply-To Email Address\"}},{\"field_type\":\"text\",\"data_name\":\"from_email\",\"db_name\":\"from_email\",\"description\":\"The email address of the sender\",\"is_required\":true,\"name\":\"from_email\",\"oasis\":{\"name\":\"from_email\"},\"ui\":{\"display_name\":\"Sender Email Address\"}},{\"field_type\":\"text\",\"data_name\":\"email_subject\",\"db_name\":\"email_subject\",\"description\":\"The subject of the email\",\"is_required\":true,\"name\":\"email_subject\",\"oasis\":{\"name\":\"email_subject\"},\"ui\":{\"display_name\":\"Email Subject\"}},{\"field_type\":\"text\",\"data_name\":\"email_body\",\"db_name\":\"email_body\",\"description\":\"The body of the email in HTML/text format. Use this field to customize the email body in workflow.\",\"name\":\"email_body\",\"oasis\":{\"name\":\"email_body\"},\"ui\":{\"display_name\":\"Email Body\"}},{\"field_type\":\"text\",\"data_name\":\"template_name\",\"db_name\":\"template_name\",\"description\":\"The name of the email template. Use this field to directly use the email template from Sendgrid.\",\"name\":\"template_name\",\"oasis\":{\"name\":\"template_name\"},\"ui\":{\"display_name\":\"Email Template Name\"}},{\"field_type\":\"text\",\"data_name\":\"fields\",\"db_name\":\"fields\",\"description\":\"The fields to be replaced in the email template. Use this field only when you choose to use the email template from Sendgrid.<Example:field1=value,field2=value>\",\"name\":\"fields\",\"oasis\":{\"name\":\"fields\"},\"ui\":{\"display_name\":\"Fields to Replace in Email Template\"}}],\"type\":\"field_descriptor\"},\"type\":\"default\"}],\"input_values\":[{\"fields\":[{\"name\":\"to_emails\",\"value\":{\"type\":\"list_value\",\"value\":{\"items\":[{\"type\":\"jsonata_expression\",\"value\":\"$append($get('contact_updated_1', 'output').email, [])\"}]}}},{\"name\":\"email_subject\",\"value\":{\"type\":\"text_template\",\"value\":\"Your DevRev Learning Path Is Waiting—Claim It Now\"}},{\"name\":\"email_body\",\"value\":{\"type\":\"text_template\",\"value\":\"```\\n<p>Hi there\\n```\\n\\n{% expr $get('contact_updated_1', 'output').display_name %}\\n\\n```\\n!</p>\\n<p>We recently invited you to register for your DevRev learning path, but we haven’t seen you sign up yet.</p>\\n<p><strong>Here’s why this matters:</strong> Teams that start early gain confidence with the platform faster. They manage their workflows more efficiently, avoid common setup pitfalls, and see stronger results from day one.</p>\\n<p>Getting started now helps you ramp up smoothly and make the most of DevRev based on how you use it.</p>\\n<p><strong>Next step:</strong> Choose your learning path according to your role and use case:</p>\\n<p><strong>Support Professional</strong> — Master DevRev’s support workflows, ticketing, and customer management</p>\\n<p><a href=\\\"https://devrevu.reach360.com/share/learning-path/56990e10-8579-472c-b723-992a686ce401\\\">Register for Support</a></p>\\n<p><strong>Builder</strong> — Master DevRev Build, product development workflows, and feature delivery</p>\\n<p><a href=\\\"https://devrevu.reach360.com/share/learning-path/c13c3943-511a-459f-b898-964ecf164df3\\\">Register for Build</a></p>\\n<p>If you have any questions or need help getting started, just reply — we’re here to support you.</p>\\n<p>— Team DevRevU</p>\\n```\"}},{\"name\":\"from_email\",\"value\":{\"type\":\"text_template\",\"value\":\"devrevuteam@devrev.ai\"}}],\"port_name\":\"input\"}],\"name\":\"First nudge generic\",\"next_steps\":[{\"next_port_name\":\"input\",\"next_step_reference_key\":\"sleep_for_8\",\"port_name\":\"output\"}],\"operation\":{\"namespace\":\"send-emails\",\"slug\":\"send_emails\"},\"output_ports\":[{\"name\":\"output\",\"schema\":{\"field_descriptors\":[{\"field_type\":\"bool\",\"data_name\":\"status\",\"db_name\":\"status\",\"default_value\":false,\"is_required\":true,\"name\":\"status\",\"oasis\":{\"name\":\"status\"},\"ui\":{\"display_name\":\"status\"}}],\"type\":\"field_descriptor\"},\"type\":\"default\"},{\"name\":\"error\",\"schema\":{\"field_descriptors\":[{\"field_type\":\"text\",\"data_name\":\"message\",\"db_name\":\"message\",\"description\":\"Error message with more details about the error\",\"name\":\"message\",\"oasis\":{\"name\":\"message\"},\"ui\":{\"display_name\":\"Error Message\"}},{\"field_type\":\"enum\",\"allowed_values\":[\"bad_request\",\"not_found\",\"internal\"],\"data_name\":\"type\",\"db_name\":\"type\",\"description\":\"Type of the error\",\"name\":\"type\",\"oasis\":{\"name\":\"type\"},\"ui\":{\"display_name\":\"Error Type\"}}],\"type\":\"field_descriptor\"},\"type\":\"error\"}],\"reference_key\":\"send_emails_10\",\"ui_metadata\":{\"position\":{\"x\":870.182093329027,\"y\":1301.072168235674}}},{\"description\":\"Pause the workflow for a specified duration\",\"input_ports\":[{\"name\":\"input\",\"schema\":{\"field_descriptors\":[{\"field_type\":\"composite\",\"composite_type\":\"devrev:duration\",\"data_name\":\"duration\",\"db_name\":\"duration\",\"description\":\"Duration to sleep for\",\"is_required\":true,\"name\":\"duration\",\"oasis\":{\"name\":\"duration\"}}],\"type\":\"field_descriptor\"},\"type\":\"default\"},{\"name\":\"callback\",\"schema\":{\"type\":\"field_descriptor\"},\"type\":\"system\"}],\"input_values\":[{\"fields\":[{\"name\":\"duration\",\"value\":{\"type\":\"literal\",\"value\":{\"days\":3}}}],\"port_name\":\"input\"}],\"name\":\"Sleep For 3 days\",\"next_steps\":[{\"next_port_name\":\"input\",\"next_step_reference_key\":\"summary_job_query_node_6\",\"port_name\":\"output\"}],\"operation\":{\"namespace\":\"devrev\",\"slug\":\"sleep_for\"},\"output_ports\":[{\"name\":\"output\",\"schema\":{\"type\":\"field_descriptor\"},\"type\":\"default\"},{\"name\":\"error\",\"schema\":{\"field_descriptors\":[{\"field_type\":\"text\",\"data_name\":\"message\",\"db_name\":\"message\",\"description\":\"Error message with more details about the error\",\"name\":\"message\",\"oasis\":{\"name\":\"message\"},\"ui\":{\"display_name\":\"Error Message\"}},{\"field_type\":\"enum\",\"allowed_values\":[\"bad_request\",\"not_found\",\"internal\"],\"data_name\":\"type\",\"db_name\":\"type\",\"description\":\"Type of the error\",\"name\":\"type\",\"oasis\":{\"name\":\"type\"},\"ui\":{\"display_name\":\"Error Type\"}}],\"type\":\"field_descriptor\"},\"type\":\"error\"}],\"reference_key\":\"sleep_for_7\",\"ui_metadata\":{\"position\":{\"x\":416.3127290212543,\"y\":1464.24056078558}}},{\"description\":\"Pause the workflow for a specified duration\",\"input_ports\":[{\"name\":\"input\",\"schema\":{\"field_descriptors\":[{\"field_type\":\"composite\",\"composite_type\":\"devrev:duration\",\"data_name\":\"duration\",\"db_name\":\"duration\",\"description\":\"Duration to sleep for\",\"is_required\":true,\"name\":\"duration\",\"oasis\":{\"name\":\"duration\"}}],\"type\":\"field_descriptor\"},\"type\":\"default\"},{\"name\":\"callback\",\"schema\":{\"type\":\"field_descriptor\"},\"type\":\"system\"}],\"input_values\":[{\"fields\":[{\"name\":\"duration\",\"value\":{\"type\":\"literal\",\"value\":{\"days\":3}}}],\"port_name\":\"input\"}],\"name\":\"Sleep For 3 days\",\"next_steps\":[{\"next_port_name\":\"input\",\"next_step_reference_key\":\"summary_job_query_node_7\",\"port_name\":\"output\"}],\"operation\":{\"namespace\":\"devrev\",\"slug\":\"sleep_for\"},\"output_ports\":[{\"name\":\"output\",\"schema\":{\"type\":\"field_descriptor\"},\"type\":\"default\"},{\"name\":\"error\",\"schema\":{\"field_descriptors\":[{\"field_type\":\"text\",\"data_name\":\"message\",\"db_name\":\"message\",\"description\":\"Error message with more details about the error\",\"name\":\"message\",\"oasis\":{\"name\":\"message\"},\"ui\":{\"display_name\":\"Error Message\"}},{\"field_type\":\"enum\",\"allowed_values\":[\"bad_request\",\"not_found\",\"internal\"],\"data_name\":\"type\",\"db_name\":\"type\",\"description\":\"Type of the error\",\"name\":\"type\",\"oasis\":{\"name\":\"type\"},\"ui\":{\"display_name\":\"Error Type\"}}],\"type\":\"field_descriptor\"},\"type\":\"error\"}],\"reference_key\":\"sleep_for_8\",\"ui_metadata\":{\"position\":{\"x\":880.3023737218173,\"y\":1477.3608411783703}}},{\"description\":\"Perform a summary job query operation\",\"input_ports\":[{\"name\":\"input\",\"schema\":{\"field_descriptors\":[{\"field_type\":\"text\",\"data_name\":\"summary_job_list\",\"db_name\":\"summary_job_list\",\"description\":\"Comma-separated list of summary job aliases i.e sum_job_1, sum_job_2, ..\",\"is_required\":true,\"name\":\"summary_job_list\",\"oasis\":{\"name\":\"summary_job_list\"},\"ui\":{\"display_name\":\"Summary Job List\"}},{\"field_type\":\"text\",\"data_name\":\"summary_job_list_query\",\"db_name\":\"summary_job_list_query\",\"description\":\"DuckDB SQL query to run against the summary jobs\",\"is_required\":true,\"name\":\"summary_job_list_query\",\"oasis\":{\"name\":\"summary_job_list_query\"},\"ui\":{\"display_name\":\"Summary Job List Query\"}}],\"type\":\"field_descriptor\"},\"type\":\"default\"}],\"input_values\":[{\"fields\":[{\"name\":\"summary_job_list_query\",\"value\":{\"type\":\"text_template\",\"value\":\"SELECT * FROM courses_completion_revu WHERE learner = '{% expr $get('contact_updated_1', 'output').id %}'\"}},{\"name\":\"summary_job_list\",\"value\":{\"type\":\"text_template\",\"value\":\"courses_completion_revu\"}}],\"port_name\":\"input\"}],\"name\":\"Summary Job Query 6\",\"next_steps\":[{\"next_port_name\":\"input\",\"next_step_reference_key\":\"if_else_8\",\"port_name\":\"output\"}],\"operation\":{\"namespace\":\"summary-job-query\",\"slug\":\"summary_job_query_node\"},\"output_ports\":[{\"name\":\"output\",\"schema\":{\"field_descriptors\":[{\"field_type\":\"array\",\"base_type\":\"json_value\",\"data_name\":\"query_result\",\"db_name\":\"query_result\",\"description\":\"Result of the summary job query\",\"name\":\"query_result\",\"oasis\":{\"name\":\"query_result\"},\"ui\":{\"display_name\":\"Query Result\"}},{\"field_type\":\"text\",\"data_name\":\"query_result_text\",\"db_name\":\"query_result_text\",\"description\":\"Result of the summary job query\",\"name\":\"query_result_text\",\"oasis\":{\"name\":\"query_result_text\"},\"ui\":{\"display_name\":\"Query Result Text\"}}],\"type\":\"field_descriptor\"},\"type\":\"default\"},{\"name\":\"error\",\"schema\":{\"field_descriptors\":[{\"field_type\":\"text\",\"data_name\":\"message\",\"db_name\":\"message\",\"description\":\"Error message with more details about the error\",\"name\":\"message\",\"oasis\":{\"name\":\"message\"},\"ui\":{\"display_name\":\"Error Message\"}},{\"field_type\":\"enum\",\"allowed_values\":[\"bad_request\",\"not_found\",\"internal\"],\"data_name\":\"type\",\"db_name\":\"type\",\"description\":\"Type of the error\",\"name\":\"type\",\"oasis\":{\"name\":\"type\"},\"ui\":{\"display_name\":\"Error Type\"}}],\"type\":\"field_descriptor\"},\"type\":\"error\"}],\"reference_key\":\"summary_job_query_node_6\",\"ui_metadata\":{\"position\":{\"x\":415.97594392144197,\"y\":1644.5773458853926}}},{\"description\":\"Perform a summary job query operation\",\"input_ports\":[{\"name\":\"input\",\"schema\":{\"field_descriptors\":[{\"field_type\":\"text\",\"data_name\":\"summary_job_list\",\"db_name\":\"summary_job_list\",\"description\":\"Comma-separated list of summary job aliases i.e sum_job_1, sum_job_2, ..\",\"is_required\":true,\"name\":\"summary_job_list\",\"oasis\":{\"name\":\"summary_job_list\"},\"ui\":{\"display_name\":\"Summary Job List\"}},{\"field_type\":\"text\",\"data_name\":\"summary_job_list_query\",\"db_name\":\"summary_job_list_query\",\"description\":\"DuckDB SQL query to run against the summary jobs\",\"is_required\":true,\"name\":\"summary_job_list_query\",\"oasis\":{\"name\":\"summary_job_list_query\"},\"ui\":{\"display_name\":\"Summary Job List Query\"}}],\"type\":\"field_descriptor\"},\"type\":\"default\"}],\"input_values\":[{\"fields\":[{\"name\":\"summary_job_list_query\",\"value\":{\"type\":\"text_template\",\"value\":\"SELECT * FROM courses_completion_revu WHERE learner = '{% expr $get('contact_updated_1', 'output').id %}'\"}},{\"name\":\"summary_job_list\",\"value\":{\"type\":\"text_template\",\"value\":\"courses_completion_revu\"}}],\"port_name\":\"input\"}],\"name\":\"Summary Job Query 7\",\"next_steps\":[{\"next_port_name\":\"input\",\"next_step_reference_key\":\"if_else_9\",\"port_name\":\"output\"}],\"operation\":{\"namespace\":\"summary-job-query\",\"slug\":\"summary_job_query_node\"},\"output_ports\":[{\"name\":\"output\",\"schema\":{\"field_descriptors\":[{\"field_type\":\"array\",\"base_type\":\"json_value\",\"data_name\":\"query_result\",\"db_name\":\"query_result\",\"description\":\"Result of the summary job query\",\"name\":\"query_result\",\"oasis\":{\"name\":\"query_result\"},\"ui\":{\"display_name\":\"Query Result\"}},{\"field_type\":\"text\",\"data_name\":\"query_result_text\",\"db_name\":\"query_result_text\",\"description\":\"Result of the summary job query\",\"name\":\"query_result_text\",\"oasis\":{\"name\":\"query_result_text\"},\"ui\":{\"display_name\":\"Query Result Text\"}}],\"type\":\"field_descriptor\"},\"type\":\"default\"},{\"name\":\"error\",\"schema\":{\"field_descriptors\":[{\"field_type\":\"text\",\"data_name\":\"message\",\"db_name\":\"message\",\"description\":\"Error message with more details about the error\",\"name\":\"message\",\"oasis\":{\"name\":\"message\"},\"ui\":{\"display_name\":\"Error Message\"}},{\"field_type\":\"enum\",\"allowed_values\":[\"bad_request\",\"not_found\",\"internal\"],\"data_name\":\"type\",\"db_name\":\"type\",\"description\":\"Type of the error\",\"name\":\"type\",\"oasis\":{\"name\":\"type\"},\"ui\":{\"display_name\":\"Error Type\"}}],\"type\":\"field_descriptor\"},\"type\":\"error\"}],\"reference_key\":\"summary_job_query_node_7\",\"ui_metadata\":{\"position\":{\"x\":888.2302054861433,\"y\":1655.6976262781827}}},{\"description\":\"Branch the workflow based on a condition\",\"input_ports\":[{\"name\":\"input\",\"schema\":{\"field_descriptors\":[{\"field_type\":\"struct\",\"data_name\":\"condition\",\"db_name\":\"condition\",\"description\":\"Condition to evaluate\",\"is_required\":true,\"name\":\"condition\",\"oasis\":{\"name\":\"condition\"}}],\"type\":\"field_descriptor\"},\"type\":\"default\"}],\"input_values\":[{\"fields\":[{\"name\":\"condition\",\"value\":{\"type\":\"literal\",\"value\":{\"conditions\":[{\"conditions\":[{\"operands\":[{\"type\":\"jsonata_expression\",\"value\":\"$get('summary_job_query_node_6', 'output').query_result[]\"}],\"operator\":\"exists\",\"type\":\"rule\",\"ui_reference_key\":\"238d660c-f529-4ee3-8d00-aeaf8d55833f\"}],\"logical_operator\":\"and\",\"negate\":false,\"type\":\"group\",\"ui_reference_key\":\"d792d1cf-863f-4000-9886-e74c78012b59\"}],\"logical_operator\":\"and\",\"negate\":false,\"type\":\"group\",\"ui_reference_key\":\"46d1b366-929d-42ec-ba67-586ddcb03f5f\"}}}],\"port_name\":\"input\"}],\"name\":\"Articulate account created?\",\"next_steps\":[{\"next_port_name\":\"input\",\"next_step_reference_key\":\"send_emails_11\",\"port_name\":\"false\"}],\"operation\":{\"namespace\":\"devrev\",\"slug\":\"if_else\"},\"output_ports\":[{\"name\":\"true\",\"type\":\"default\"},{\"name\":\"false\",\"type\":\"default\"},{\"name\":\"error\",\"schema\":{\"field_descriptors\":[{\"field_type\":\"text\",\"data_name\":\"message\",\"db_name\":\"message\",\"description\":\"Error message with more details about the error\",\"name\":\"message\",\"oasis\":{\"name\":\"message\"},\"ui\":{\"display_name\":\"Error Message\"}},{\"field_type\":\"enum\",\"allowed_values\":[\"bad_request\",\"not_found\",\"internal\"],\"data_name\":\"type\",\"db_name\":\"type\",\"description\":\"Type of the error\",\"name\":\"type\",\"oasis\":{\"name\":\"type\"},\"ui\":{\"display_name\":\"Error Type\"}}],\"type\":\"field_descriptor\"},\"type\":\"error\"}],\"reference_key\":\"if_else_8\",\"ui_metadata\":{\"position\":{\"x\":426.1443364713482,\"y\":1809.7457384352988}}},{\"description\":\"Branch the workflow based on a condition\",\"input_ports\":[{\"name\":\"input\",\"schema\":{\"field_descriptors\":[{\"field_type\":\"struct\",\"data_name\":\"condition\",\"db_name\":\"condition\",\"description\":\"Condition to evaluate\",\"is_required\":true,\"name\":\"condition\",\"oasis\":{\"name\":\"condition\"}}],\"type\":\"field_descriptor\"},\"type\":\"default\"}],\"input_values\":[{\"fields\":[{\"name\":\"condition\",\"value\":{\"type\":\"literal\",\"value\":{\"conditions\":[{\"conditions\":[{\"operands\":[{\"type\":\"jsonata_expression\",\"value\":\"$get('summary_job_query_node_7', 'output').query_result[]\"}],\"operator\":\"exists\",\"type\":\"rule\",\"ui_reference_key\":\"4897ad64-b626-40c8-9203-54e0f03897d1\"}],\"logical_operator\":\"and\",\"negate\":false,\"type\":\"group\",\"ui_reference_key\":\"de0ce74e-be7a-4513-8853-b3802c380834\"}],\"logical_operator\":\"and\",\"negate\":false,\"type\":\"group\",\"ui_reference_key\":\"ab3b881d-d485-4f78-a7e6-a9144de46b88\"}}}],\"port_name\":\"input\"}],\"name\":\"Articulate account created?\",\"next_steps\":[{\"next_port_name\":\"input\",\"next_step_reference_key\":\"send_emails_12\",\"port_name\":\"false\"}],\"operation\":{\"namespace\":\"devrev\",\"slug\":\"if_else\"},\"output_ports\":[{\"name\":\"true\",\"type\":\"default\"},{\"name\":\"false\",\"type\":\"default\"},{\"name\":\"error\",\"schema\":{\"field_descriptors\":[{\"field_type\":\"text\",\"data_name\":\"message\",\"db_name\":\"message\",\"description\":\"Error message with more details about the error\",\"name\":\"message\",\"oasis\":{\"name\":\"message\"},\"ui\":{\"display_name\":\"Error Message\"}},{\"field_type\":\"enum\",\"allowed_values\":[\"bad_request\",\"not_found\",\"internal\"],\"data_name\":\"type\",\"db_name\":\"type\",\"description\":\"Type of the error\",\"name\":\"type\",\"oasis\":{\"name\":\"type\"},\"ui\":{\"display_name\":\"Error Type\"}}],\"type\":\"field_descriptor\"},\"type\":\"error\"}],\"reference_key\":\"if_else_9\",\"ui_metadata\":{\"position\":{\"x\":909.2920184223804,\"y\":1821.890074906647}}},{\"description\":\"You can now send personalized emails using this node. Check the [Documentation](https://devrev.ai/docs/automations/send-emails) for usage details and limitations.\",\"input_ports\":[{\"name\":\"input\",\"schema\":{\"field_descriptors\":[{\"field_type\":\"array\",\"base_type\":\"text\",\"data_name\":\"to_emails\",\"db_name\":\"to_emails\",\"description\":\"The email addresses of the recipients\",\"is_required\":true,\"name\":\"to_emails\",\"oasis\":{\"name\":\"to_emails\"},\"ui\":{\"display_name\":\"Recipient Email Addresses\"}},{\"field_type\":\"array\",\"base_type\":\"text\",\"data_name\":\"cc_emails\",\"db_name\":\"cc_emails\",\"description\":\"The email addresses of the CC recipients\",\"is_required\":false,\"name\":\"cc_emails\",\"oasis\":{\"name\":\"cc_emails\"},\"ui\":{\"display_name\":\"CC Recipient Email Addresses\"}},{\"field_type\":\"array\",\"base_type\":\"text\",\"data_name\":\"bcc_emails\",\"db_name\":\"bcc_emails\",\"description\":\"The email addresses of the BCC recipients\",\"is_required\":false,\"name\":\"bcc_emails\",\"oasis\":{\"name\":\"bcc_emails\"},\"ui\":{\"display_name\":\"BCC Recipient Email Addresses\"}},{\"field_type\":\"text\",\"data_name\":\"sender_name\",\"db_name\":\"sender_name\",\"description\":\"The name of the sender\",\"is_required\":false,\"name\":\"sender_name\",\"oasis\":{\"name\":\"sender_name\"},\"ui\":{\"display_name\":\"Sender Name\"}},{\"field_type\":\"text\",\"data_name\":\"reply_to\",\"db_name\":\"reply_to\",\"description\":\"The email address of the reply-to\",\"is_required\":false,\"name\":\"reply_to\",\"oasis\":{\"name\":\"reply_to\"},\"ui\":{\"display_name\":\"Reply-To Email Address\"}},{\"field_type\":\"text\",\"data_name\":\"from_email\",\"db_name\":\"from_email\",\"description\":\"The email address of the sender\",\"is_required\":true,\"name\":\"from_email\",\"oasis\":{\"name\":\"from_email\"},\"ui\":{\"display_name\":\"Sender Email Address\"}},{\"field_type\":\"text\",\"data_name\":\"email_subject\",\"db_name\":\"email_subject\",\"description\":\"The subject of the email\",\"is_required\":true,\"name\":\"email_subject\",\"oasis\":{\"name\":\"email_subject\"},\"ui\":{\"display_name\":\"Email Subject\"}},{\"field_type\":\"text\",\"data_name\":\"email_body\",\"db_name\":\"email_body\",\"description\":\"The body of the email in HTML/text format. Use this field to customize the email body in workflow.\",\"name\":\"email_body\",\"oasis\":{\"name\":\"email_body\"},\"ui\":{\"display_name\":\"Email Body\"}},{\"field_type\":\"text\",\"data_name\":\"template_name\",\"db_name\":\"template_name\",\"description\":\"The name of the email template. Use this field to directly use the email template from Sendgrid.\",\"name\":\"template_name\",\"oasis\":{\"name\":\"template_name\"},\"ui\":{\"display_name\":\"Email Template Name\"}},{\"field_type\":\"text\",\"data_name\":\"fields\",\"db_name\":\"fields\",\"description\":\"The fields to be replaced in the email template. Use this field only when you choose to use the email template from Sendgrid.<Example:field1=value,field2=value>\",\"name\":\"fields\",\"oasis\":{\"name\":\"fields\"},\"ui\":{\"display_name\":\"Fields to Replace in Email Template\"}}],\"type\":\"field_descriptor\"},\"type\":\"default\"}],\"input_values\":[{\"fields\":[{\"name\":\"to_emails\",\"value\":{\"type\":\"list_value\",\"value\":{\"items\":[{\"type\":\"jsonata_expression\",\"value\":\"$append($get('contact_updated_1', 'output').email, [])\"}]}}},{\"name\":\"email_subject\",\"value\":{\"type\":\"text_template\",\"value\":\"Last Call: Register for Your DevRev Learning Journey\"}},{\"name\":\"email_body\",\"value\":{\"type\":\"text_template\",\"value\":\"```\\n<p>Hi there\\n```\\n\\n{% expr $get('contact_updated_1', 'output').display_name %}\\n\\n```\\n!</p>\\n<p>We want to make sure your team is set up to get the most value from DevRev Build.</p>\\n<p>To strengthen your product workflows and ship with confidence, please register for your Build learning path.</p>\\n<p><strong>Why it matters:</strong> Registration takes just a couple of minutes and unlocks structured courses on product development workflows, planning best practices, and feature delivery in DevRev — all designed to help your team move faster and stay aligned.</p>\\n<p>Engineering teams that complete the learning path early ramp up more smoothly, avoid common workflow pitfalls, and gain the confidence to ship features predictably and efficiently.</p>\\n<p><strong>Register here:</strong></p>\\n<p><a href=\\\"https://devrevu.reach360.com/share/learning-path/c13c3943-511a-459f-b898-964ecf164df3\\\">Register for Build</a></p>\\n<p>If your team would like a live, hands-on session tailored to your development workflows, simply reply to this email and we’ll coordinate one based on your availability.</p>\\n<p>Looking forward to building with you.</p>\\n<p>— Team DevRevU</p>\\n```\"}},{\"name\":\"from_email\",\"value\":{\"type\":\"text_template\",\"value\":\"devrevuteam@devrev.ai\"}}],\"port_name\":\"input\"}],\"name\":\"Second nudge build\",\"next_steps\":[{\"next_port_name\":\"input\",\"next_step_reference_key\":\"sleep_for_9\",\"port_name\":\"output\"}],\"operation\":{\"namespace\":\"send-emails\",\"slug\":\"send_emails\"},\"output_ports\":[{\"name\":\"output\",\"schema\":{\"field_descriptors\":[{\"field_type\":\"bool\",\"data_name\":\"status\",\"db_name\":\"status\",\"default_value\":false,\"is_required\":true,\"name\":\"status\",\"oasis\":{\"name\":\"status\"},\"ui\":{\"display_name\":\"status\"}}],\"type\":\"field_descriptor\"},\"type\":\"default\"},{\"name\":\"error\",\"schema\":{\"field_descriptors\":[{\"field_type\":\"text\",\"data_name\":\"message\",\"db_name\":\"message\",\"description\":\"Error message with more details about the error\",\"name\":\"message\",\"oasis\":{\"name\":\"message\"},\"ui\":{\"display_name\":\"Error Message\"}},{\"field_type\":\"enum\",\"allowed_values\":[\"bad_request\",\"not_found\",\"internal\"],\"data_name\":\"type\",\"db_name\":\"type\",\"description\":\"Type of the error\",\"name\":\"type\",\"oasis\":{\"name\":\"type\"},\"ui\":{\"display_name\":\"Error Type\"}}],\"type\":\"field_descriptor\"},\"type\":\"error\"}],\"reference_key\":\"send_emails_11\",\"ui_metadata\":{\"position\":{\"x\":414.7912827603666,\"y\":2074.103645031163}}},{\"description\":\"You can now send personalized emails using this node. Check the [Documentation](https://devrev.ai/docs/automations/send-emails) for usage details and limitations.\",\"input_ports\":[{\"name\":\"input\",\"schema\":{\"field_descriptors\":[{\"field_type\":\"array\",\"base_type\":\"text\",\"data_name\":\"to_emails\",\"db_name\":\"to_emails\",\"description\":\"The email addresses of the recipients\",\"is_required\":true,\"name\":\"to_emails\",\"oasis\":{\"name\":\"to_emails\"},\"ui\":{\"display_name\":\"Recipient Email Addresses\"}},{\"field_type\":\"array\",\"base_type\":\"text\",\"data_name\":\"cc_emails\",\"db_name\":\"cc_emails\",\"description\":\"The email addresses of the CC recipients\",\"is_required\":false,\"name\":\"cc_emails\",\"oasis\":{\"name\":\"cc_emails\"},\"ui\":{\"display_name\":\"CC Recipient Email Addresses\"}},{\"field_type\":\"array\",\"base_type\":\"text\",\"data_name\":\"bcc_emails\",\"db_name\":\"bcc_emails\",\"description\":\"The email addresses of the BCC recipients\",\"is_required\":false,\"name\":\"bcc_emails\",\"oasis\":{\"name\":\"bcc_emails\"},\"ui\":{\"display_name\":\"BCC Recipient Email Addresses\"}},{\"field_type\":\"text\",\"data_name\":\"sender_name\",\"db_name\":\"sender_name\",\"description\":\"The name of the sender\",\"is_required\":false,\"name\":\"sender_name\",\"oasis\":{\"name\":\"sender_name\"},\"ui\":{\"display_name\":\"Sender Name\"}},{\"field_type\":\"text\",\"data_name\":\"reply_to\",\"db_name\":\"reply_to\",\"description\":\"The email address of the reply-to\",\"is_required\":false,\"name\":\"reply_to\",\"oasis\":{\"name\":\"reply_to\"},\"ui\":{\"display_name\":\"Reply-To Email Address\"}},{\"field_type\":\"text\",\"data_name\":\"from_email\",\"db_name\":\"from_email\",\"description\":\"The email address of the sender\",\"is_required\":true,\"name\":\"from_email\",\"oasis\":{\"name\":\"from_email\"},\"ui\":{\"display_name\":\"Sender Email Address\"}},{\"field_type\":\"text\",\"data_name\":\"email_subject\",\"db_name\":\"email_subject\",\"description\":\"The subject of the email\",\"is_required\":true,\"name\":\"email_subject\",\"oasis\":{\"name\":\"email_subject\"},\"ui\":{\"display_name\":\"Email Subject\"}},{\"field_type\":\"text\",\"data_name\":\"email_body\",\"db_name\":\"email_body\",\"description\":\"The body of the email in HTML/text format. Use this field to customize the email body in workflow.\",\"name\":\"email_body\",\"oasis\":{\"name\":\"email_body\"},\"ui\":{\"display_name\":\"Email Body\"}},{\"field_type\":\"text\",\"data_name\":\"template_name\",\"db_name\":\"template_name\",\"description\":\"The name of the email template. Use this field to directly use the email template from Sendgrid.\",\"name\":\"template_name\",\"oasis\":{\"name\":\"template_name\"},\"ui\":{\"display_name\":\"Email Template Name\"}},{\"field_type\":\"text\",\"data_name\":\"fields\",\"db_name\":\"fields\",\"description\":\"The fields to be replaced in the email template. Use this field only when you choose to use the email template from Sendgrid.<Example:field1=value,field2=value>\",\"name\":\"fields\",\"oasis\":{\"name\":\"fields\"},\"ui\":{\"display_name\":\"Fields to Replace in Email Template\"}}],\"type\":\"field_descriptor\"},\"type\":\"default\"}],\"input_values\":[{\"fields\":[{\"name\":\"to_emails\",\"value\":{\"type\":\"list_value\",\"value\":{\"items\":[{\"type\":\"jsonata_expression\",\"value\":\"$append($get('contact_updated_1', 'output').email, [])\"}]}}},{\"name\":\"email_subject\",\"value\":{\"type\":\"text_template\",\"value\":\"Last Call: Register for Your DevRev Learning Journey\"}},{\"name\":\"email_body\",\"value\":{\"type\":\"text_template\",\"value\":\"```\\n<p>Hi there\\n```\\n\\n{% expr $get('contact_updated_1', 'output').display_name %}\\n\\n```\\n!</p>\\n<p>We want to make sure you’re set up to get the most value from DevRev.</p>\\n<p>To build confidence and work more effectively in the platform, please register for your learning path.</p>\\n<p><strong>Why it matters:</strong> Registration takes just a couple of minutes and unlocks structured, role-based courses tailored to how you use DevRev — helping you master workflows, avoid common setup pitfalls, and see results faster.</p>\\n<p>Teams that engage early ramp up more smoothly and gain the confidence to use DevRev efficiently in their day-to-day work — whether that’s managing support operations or shipping product features.</p>\\n<p><strong>Your learning path options:</strong></p>\\n<p><strong>Support Professional</strong> — Master DevRev’s support workflows, ticketing, and customer management</p>\\n<p><a href=\\\"https://devrevu.reach360.com/share/learning-path/56990e10-8579-472c-b723-992a686ce401\\\">Register for Support</a></p>\\n<p><strong>Builder</strong> — Master DevRev Build, product development workflows, and feature delivery</p>\\n<p><a href=\\\"https://devrevu.reach360.com/share/learning-path/c13c3943-511a-459f-b898-964ecf164df3\\\">Register for Build</a></p>\\n<p>If your team would like a live, hands-on session tailored to your workflows, simply reply to this email and we’ll coordinate one based on your availability.</p>\\n<p>Looking forward to supporting your success.</p>\\n<p>— Team DevRevU</p>\\n```\"}},{\"name\":\"from_email\",\"value\":{\"type\":\"text_template\",\"value\":\"devrevuteam@devrev.ai\"}}],\"port_name\":\"input\"}],\"name\":\"Second nudge generic\",\"next_steps\":[{\"next_port_name\":\"input\",\"next_step_reference_key\":\"sleep_for_10\",\"port_name\":\"output\"}],\"operation\":{\"namespace\":\"send-emails\",\"slug\":\"send_emails\"},\"output_ports\":[{\"name\":\"output\",\"schema\":{\"field_descriptors\":[{\"field_type\":\"bool\",\"data_name\":\"status\",\"db_name\":\"status\",\"default_value\":false,\"is_required\":true,\"name\":\"status\",\"oasis\":{\"name\":\"status\"},\"ui\":{\"display_name\":\"status\"}}],\"type\":\"field_descriptor\"},\"type\":\"default\"},{\"name\":\"error\",\"schema\":{\"field_descriptors\":[{\"field_type\":\"text\",\"data_name\":\"message\",\"db_name\":\"message\",\"description\":\"Error message with more details about the error\",\"name\":\"message\",\"oasis\":{\"name\":\"message\"},\"ui\":{\"display_name\":\"Error Message\"}},{\"field_type\":\"enum\",\"allowed_values\":[\"bad_request\",\"not_found\",\"internal\"],\"data_name\":\"type\",\"db_name\":\"type\",\"description\":\"Type of the error\",\"name\":\"type\",\"oasis\":{\"name\":\"type\"},\"ui\":{\"display_name\":\"Error Type\"}}],\"type\":\"field_descriptor\"},\"type\":\"error\"}],\"reference_key\":\"send_emails_12\",\"ui_metadata\":{\"position\":{\"x\":939.2679623438223,\"y\":2065.0447666774317}}},{\"description\":\"Pause the workflow for a specified duration\",\"input_ports\":[{\"name\":\"input\",\"schema\":{\"field_descriptors\":[{\"field_type\":\"composite\",\"composite_type\":\"devrev:duration\",\"data_name\":\"duration\",\"db_name\":\"duration\",\"description\":\"Duration to sleep for\",\"is_required\":true,\"name\":\"duration\",\"oasis\":{\"name\":\"duration\"}}],\"type\":\"field_descriptor\"},\"type\":\"default\"},{\"name\":\"callback\",\"schema\":{\"type\":\"field_descriptor\"},\"type\":\"system\"}],\"input_values\":[{\"fields\":[{\"name\":\"duration\",\"value\":{\"type\":\"literal\",\"value\":{\"days\":3}}}],\"port_name\":\"input\"}],\"name\":\"Sleep For 3 days\",\"next_steps\":[{\"next_port_name\":\"input\",\"next_step_reference_key\":\"summary_job_query_node_8\",\"port_name\":\"output\"}],\"operation\":{\"namespace\":\"devrev\",\"slug\":\"sleep_for\"},\"output_ports\":[{\"name\":\"output\",\"schema\":{\"type\":\"field_descriptor\"},\"type\":\"default\"},{\"name\":\"error\",\"schema\":{\"field_descriptors\":[{\"field_type\":\"text\",\"data_name\":\"message\",\"db_name\":\"message\",\"description\":\"Error message with more details about the error\",\"name\":\"message\",\"oasis\":{\"name\":\"message\"},\"ui\":{\"display_name\":\"Error Message\"}},{\"field_type\":\"enum\",\"allowed_values\":[\"bad_request\",\"not_found\",\"internal\"],\"data_name\":\"type\",\"db_name\":\"type\",\"description\":\"Type of the error\",\"name\":\"type\",\"oasis\":{\"name\":\"type\"},\"ui\":{\"display_name\":\"Error Type\"}}],\"type\":\"field_descriptor\"},\"type\":\"error\"}],\"reference_key\":\"sleep_for_9\",\"ui_metadata\":{\"position\":{\"x\":412.87971960720984,\"y\":2274.5314160469425}}},{\"description\":\"Pause the workflow for a specified duration\",\"input_ports\":[{\"name\":\"input\",\"schema\":{\"field_descriptors\":[{\"field_type\":\"composite\",\"composite_type\":\"devrev:duration\",\"data_name\":\"duration\",\"db_name\":\"duration\",\"description\":\"Duration to sleep for\",\"is_required\":true,\"name\":\"duration\",\"oasis\":{\"name\":\"duration\"}}],\"type\":\"field_descriptor\"},\"type\":\"default\"},{\"name\":\"callback\",\"schema\":{\"type\":\"field_descriptor\"},\"type\":\"system\"}],\"input_values\":[{\"fields\":[{\"name\":\"duration\",\"value\":{\"type\":\"literal\",\"value\":{\"days\":3}}}],\"port_name\":\"input\"}],\"name\":\"Sleep For 3 days\",\"next_steps\":[{\"next_port_name\":\"input\",\"next_step_reference_key\":\"summary_job_query_node_9\",\"port_name\":\"output\"}],\"operation\":{\"namespace\":\"devrev\",\"slug\":\"sleep_for\"},\"output_ports\":[{\"name\":\"output\",\"schema\":{\"type\":\"field_descriptor\"},\"type\":\"default\"},{\"name\":\"error\",\"schema\":{\"field_descriptors\":[{\"field_type\":\"text\",\"data_name\":\"message\",\"db_name\":\"message\",\"description\":\"Error message with more details about the error\",\"name\":\"message\",\"oasis\":{\"name\":\"message\"},\"ui\":{\"display_name\":\"Error Message\"}},{\"field_type\":\"enum\",\"allowed_values\":[\"bad_request\",\"not_found\",\"internal\"],\"data_name\":\"type\",\"db_name\":\"type\",\"description\":\"Type of the error\",\"name\":\"type\",\"oasis\":{\"name\":\"type\"},\"ui\":{\"display_name\":\"Error Type\"}}],\"type\":\"field_descriptor\"},\"type\":\"error\"}],\"reference_key\":\"sleep_for_10\",\"ui_metadata\":{\"position\":{\"x\":953.4122988151705,\"y\":2260.020710598874}}},{\"description\":\"Perform a summary job query operation\",\"input_ports\":[{\"name\":\"input\",\"schema\":{\"field_descriptors\":[{\"field_type\":\"text\",\"data_name\":\"summary_job_list\",\"db_name\":\"summary_job_list\",\"description\":\"Comma-separated list of summary job aliases i.e sum_job_1, sum_job_2, ..\",\"is_required\":true,\"name\":\"summary_job_list\",\"oasis\":{\"name\":\"summary_job_list\"},\"ui\":{\"display_name\":\"Summary Job List\"}},{\"field_type\":\"text\",\"data_name\":\"summary_job_list_query\",\"db_name\":\"summary_job_list_query\",\"description\":\"DuckDB SQL query to run against the summary jobs\",\"is_required\":true,\"name\":\"summary_job_list_query\",\"oasis\":{\"name\":\"summary_job_list_query\"},\"ui\":{\"display_name\":\"Summary Job List Query\"}}],\"type\":\"field_descriptor\"},\"type\":\"default\"}],\"input_values\":[{\"fields\":[{\"name\":\"summary_job_list_query\",\"value\":{\"type\":\"text_template\",\"value\":\"SELECT * FROM courses_completion_revu WHERE learner = '{% expr $get('contact_updated_1', 'output').id %}'\"}},{\"name\":\"summary_job_list\",\"value\":{\"type\":\"text_template\",\"value\":\"courses_completion_revu\"}}],\"port_name\":\"input\"}],\"name\":\"Summary Job Query 8\",\"next_steps\":[{\"next_port_name\":\"input\",\"next_step_reference_key\":\"if_else_10\",\"port_name\":\"output\"}],\"operation\":{\"namespace\":\"summary-job-query\",\"slug\":\"summary_job_query_node\"},\"output_ports\":[{\"name\":\"output\",\"schema\":{\"field_descriptors\":[{\"field_type\":\"array\",\"base_type\":\"json_value\",\"data_name\":\"query_result\",\"db_name\":\"query_result\",\"description\":\"Result of the summary job query\",\"name\":\"query_result\",\"oasis\":{\"name\":\"query_result\"},\"ui\":{\"display_name\":\"Query Result\"}},{\"field_type\":\"text\",\"data_name\":\"query_result_text\",\"db_name\":\"query_result_text\",\"description\":\"Result of the summary job query\",\"name\":\"query_result_text\",\"oasis\":{\"name\":\"query_result_text\"},\"ui\":{\"display_name\":\"Query Result Text\"}}],\"type\":\"field_descriptor\"},\"type\":\"default\"},{\"name\":\"error\",\"schema\":{\"field_descriptors\":[{\"field_type\":\"text\",\"data_name\":\"message\",\"db_name\":\"message\",\"description\":\"Error message with more details about the error\",\"name\":\"message\",\"oasis\":{\"name\":\"message\"},\"ui\":{\"display_name\":\"Error Message\"}},{\"field_type\":\"enum\",\"allowed_values\":[\"bad_request\",\"not_found\",\"internal\"],\"data_name\":\"type\",\"db_name\":\"type\",\"description\":\"Type of the error\",\"name\":\"type\",\"oasis\":{\"name\":\"type\"},\"ui\":{\"display_name\":\"Error Type\"}}],\"type\":\"field_descriptor\"},\"type\":\"error\"}],\"reference_key\":\"summary_job_query_node_8\",\"ui_metadata\":{\"position\":{\"x\":412.8316074500939,\"y\":2403.2372153058964}}},{\"description\":\"Branch the workflow based on a condition\",\"input_ports\":[{\"name\":\"input\",\"schema\":{\"field_descriptors\":[{\"field_type\":\"struct\",\"data_name\":\"condition\",\"db_name\":\"condition\",\"description\":\"Condition to evaluate\",\"is_required\":true,\"name\":\"condition\",\"oasis\":{\"name\":\"condition\"}}],\"type\":\"field_descriptor\"},\"type\":\"default\"}],\"input_values\":[{\"fields\":[{\"name\":\"condition\",\"value\":{\"type\":\"literal\",\"value\":{\"conditions\":[{\"conditions\":[{\"operands\":[{\"type\":\"jsonata_expression\",\"value\":\"$get('summary_job_query_node_8', 'output').query_result[]\"}],\"operator\":\"exists\",\"type\":\"rule\",\"ui_reference_key\":\"ad8265e8-aaff-4043-893b-e2a2b7c735e2\"}],\"logical_operator\":\"and\",\"negate\":false,\"type\":\"group\",\"ui_reference_key\":\"b7df0f0c-4495-4e9d-8f7b-34e5c4cb5553\"}],\"logical_operator\":\"and\",\"negate\":false,\"type\":\"group\",\"ui_reference_key\":\"f8515b07-38e8-458c-b19b-5cebcb6f413b\"}}}],\"port_name\":\"input\"}],\"name\":\"Articulate account created?\",\"next_steps\":[{\"next_port_name\":\"input\",\"next_step_reference_key\":\"send_emails_13\",\"port_name\":\"false\"}],\"operation\":{\"namespace\":\"devrev\",\"slug\":\"if_else\"},\"output_ports\":[{\"name\":\"true\",\"type\":\"default\"},{\"name\":\"false\",\"type\":\"default\"},{\"name\":\"error\",\"schema\":{\"field_descriptors\":[{\"field_type\":\"text\",\"data_name\":\"message\",\"db_name\":\"message\",\"description\":\"Error message with more details about the error\",\"name\":\"message\",\"oasis\":{\"name\":\"message\"},\"ui\":{\"display_name\":\"Error Message\"}},{\"field_type\":\"enum\",\"allowed_values\":[\"bad_request\",\"not_found\",\"internal\"],\"data_name\":\"type\",\"db_name\":\"type\",\"description\":\"Type of the error\",\"name\":\"type\",\"oasis\":{\"name\":\"type\"},\"ui\":{\"display_name\":\"Error Type\"}}],\"type\":\"field_descriptor\"},\"type\":\"error\"}],\"reference_key\":\"if_else_10\",\"ui_metadata\":{\"position\":{\"x\":420.95188784288393,\"y\":2606.886729426963}}},{\"description\":\"You can now send personalized emails using this node. Check the [Documentation](https://devrev.ai/docs/automations/send-emails) for usage details and limitations.\",\"input_ports\":[{\"name\":\"input\",\"schema\":{\"field_descriptors\":[{\"field_type\":\"array\",\"base_type\":\"text\",\"data_name\":\"to_emails\",\"db_name\":\"to_emails\",\"description\":\"The email addresses of the recipients\",\"is_required\":true,\"name\":\"to_emails\",\"oasis\":{\"name\":\"to_emails\"},\"ui\":{\"display_name\":\"Recipient Email Addresses\"}},{\"field_type\":\"array\",\"base_type\":\"text\",\"data_name\":\"cc_emails\",\"db_name\":\"cc_emails\",\"description\":\"The email addresses of the CC recipients\",\"is_required\":false,\"name\":\"cc_emails\",\"oasis\":{\"name\":\"cc_emails\"},\"ui\":{\"display_name\":\"CC Recipient Email Addresses\"}},{\"field_type\":\"array\",\"base_type\":\"text\",\"data_name\":\"bcc_emails\",\"db_name\":\"bcc_emails\",\"description\":\"The email addresses of the BCC recipients\",\"is_required\":false,\"name\":\"bcc_emails\",\"oasis\":{\"name\":\"bcc_emails\"},\"ui\":{\"display_name\":\"BCC Recipient Email Addresses\"}},{\"field_type\":\"text\",\"data_name\":\"sender_name\",\"db_name\":\"sender_name\",\"description\":\"The name of the sender\",\"is_required\":false,\"name\":\"sender_name\",\"oasis\":{\"name\":\"sender_name\"},\"ui\":{\"display_name\":\"Sender Name\"}},{\"field_type\":\"text\",\"data_name\":\"reply_to\",\"db_name\":\"reply_to\",\"description\":\"The email address of the reply-to\",\"is_required\":false,\"name\":\"reply_to\",\"oasis\":{\"name\":\"reply_to\"},\"ui\":{\"display_name\":\"Reply-To Email Address\"}},{\"field_type\":\"text\",\"data_name\":\"from_email\",\"db_name\":\"from_email\",\"description\":\"The email address of the sender\",\"is_required\":true,\"name\":\"from_email\",\"oasis\":{\"name\":\"from_email\"},\"ui\":{\"display_name\":\"Sender Email Address\"}},{\"field_type\":\"text\",\"data_name\":\"email_subject\",\"db_name\":\"email_subject\",\"description\":\"The subject of the email\",\"is_required\":true,\"name\":\"email_subject\",\"oasis\":{\"name\":\"email_subject\"},\"ui\":{\"display_name\":\"Email Subject\"}},{\"field_type\":\"text\",\"data_name\":\"email_body\",\"db_name\":\"email_body\",\"description\":\"The body of the email in HTML/text format. Use this field to customize the email body in workflow.\",\"name\":\"email_body\",\"oasis\":{\"name\":\"email_body\"},\"ui\":{\"display_name\":\"Email Body\"}},{\"field_type\":\"text\",\"data_name\":\"template_name\",\"db_name\":\"template_name\",\"description\":\"The name of the email template. Use this field to directly use the email template from Sendgrid.\",\"name\":\"template_name\",\"oasis\":{\"name\":\"template_name\"},\"ui\":{\"display_name\":\"Email Template Name\"}},{\"field_type\":\"text\",\"data_name\":\"fields\",\"db_name\":\"fields\",\"description\":\"The fields to be replaced in the email template. Use this field only when you choose to use the email template from Sendgrid.<Example:field1=value,field2=value>\",\"name\":\"fields\",\"oasis\":{\"name\":\"fields\"},\"ui\":{\"display_name\":\"Fields to Replace in Email Template\"}}],\"type\":\"field_descriptor\"},\"type\":\"default\"}],\"input_values\":[{\"fields\":[{\"name\":\"to_emails\",\"value\":{\"type\":\"list_value\",\"value\":{\"items\":[{\"type\":\"jsonata_expression\",\"value\":\"$append($get('contact_updated_1', 'output').email, [])\"}]}}},{\"name\":\"email_body\",\"value\":{\"type\":\"text_template\",\"value\":\"```\\n<p>Hi there\\n```\\n\\n{% expr $get('contact_updated_1', 'output').display_name %}\\n\\n```\\n!</p>\\n<p>This is your final reminder to register for your DevRev Build learning path.</p>\\n<p>Teams that have already registered are working through their courses and strengthening how they build in DevRev — learning how to ship features faster, design scalable workflows, leverage automation to reduce development time, and use the platform confidently in their day-to-day work.</p>\\n<p>Your peers are already getting ahead — discovering best practices, shortcuts, and smarter ways to plan and deliver features. The teams that start early ramp up faster and avoid the common workflow pitfalls that slow down delivery.</p>\\n<p>If you want to stop feeling like you’re learning on the fly and start building with clarity and momentum:</p>\\n<p><a href=\\\"https://devrevu.reach360.com/share/learning-path/c13c3943-511a-459f-b898-964ecf164df3\\\">Register now</a></p>\\n<p>If your team would like a live, hands-on session tailored to your development workflows, simply reply to this email and we’ll coordinate one based on your availability.</p>\\n<p>Your product roadmap — and your velocity — will thank you.</p>\\n<p>— Team DevRevU</p>\\n```\"}},{\"name\":\"email_subject\",\"value\":{\"type\":\"text_template\",\"value\":\"⏰ Final Reminder: Your DevRev Learning Path Closes Soon\"}},{\"name\":\"from_email\",\"value\":{\"type\":\"text_template\",\"value\":\"devrevuteam@devrev.ai\"}}],\"port_name\":\"input\"}],\"name\":\"Third nudge Build\",\"operation\":{\"namespace\":\"send-emails\",\"slug\":\"send_emails\"},\"output_ports\":[{\"name\":\"output\",\"schema\":{\"field_descriptors\":[{\"field_type\":\"bool\",\"data_name\":\"status\",\"db_name\":\"status\",\"default_value\":false,\"is_required\":true,\"name\":\"status\",\"oasis\":{\"name\":\"status\"},\"ui\":{\"display_name\":\"status\"}}],\"type\":\"field_descriptor\"},\"type\":\"default\"},{\"name\":\"error\",\"schema\":{\"field_descriptors\":[{\"field_type\":\"text\",\"data_name\":\"message\",\"db_name\":\"message\",\"description\":\"Error message with more details about the error\",\"name\":\"message\",\"oasis\":{\"name\":\"message\"},\"ui\":{\"display_name\":\"Error Message\"}},{\"field_type\":\"enum\",\"allowed_values\":[\"bad_request\",\"not_found\",\"internal\"],\"data_name\":\"type\",\"db_name\":\"type\",\"description\":\"Type of the error\",\"name\":\"type\",\"oasis\":{\"name\":\"type\"},\"ui\":{\"display_name\":\"Error Type\"}}],\"type\":\"field_descriptor\"},\"type\":\"error\"}],\"reference_key\":\"send_emails_13\",\"ui_metadata\":{\"position\":{\"x\":428.30571920150135,\"y\":2783.199458448217}}},{\"description\":\"Perform a summary job query operation\",\"input_ports\":[{\"name\":\"input\",\"schema\":{\"field_descriptors\":[{\"field_type\":\"text\",\"data_name\":\"summary_job_list\",\"db_name\":\"summary_job_list\",\"description\":\"Comma-separated list of summary job aliases i.e sum_job_1, sum_job_2, ..\",\"is_required\":true,\"name\":\"summary_job_list\",\"oasis\":{\"name\":\"summary_job_list\"},\"ui\":{\"display_name\":\"Summary Job List\"}},{\"field_type\":\"text\",\"data_name\":\"summary_job_list_query\",\"db_name\":\"summary_job_list_query\",\"description\":\"DuckDB SQL query to run against the summary jobs\",\"is_required\":true,\"name\":\"summary_job_list_query\",\"oasis\":{\"name\":\"summary_job_list_query\"},\"ui\":{\"display_name\":\"Summary Job List Query\"}}],\"type\":\"field_descriptor\"},\"type\":\"default\"}],\"input_values\":[{\"fields\":[{\"name\":\"summary_job_list_query\",\"value\":{\"type\":\"text_template\",\"value\":\"SELECT * FROM courses_completion_revu WHERE learner = '{% expr $get('contact_updated_1', 'output').id %}'\"}},{\"name\":\"summary_job_list\",\"value\":{\"type\":\"text_template\",\"value\":\"courses_completion_revu\"}}],\"port_name\":\"input\"}],\"name\":\"Summary Job Query 9\",\"next_steps\":[{\"next_port_name\":\"input\",\"next_step_reference_key\":\"if_else_11\",\"port_name\":\"output\"}],\"operation\":{\"namespace\":\"summary-job-query\",\"slug\":\"summary_job_query_node\"},\"output_ports\":[{\"name\":\"output\",\"schema\":{\"field_descriptors\":[{\"field_type\":\"array\",\"base_type\":\"json_value\",\"data_name\":\"query_result\",\"db_name\":\"query_result\",\"description\":\"Result of the summary job query\",\"name\":\"query_result\",\"oasis\":{\"name\":\"query_result\"},\"ui\":{\"display_name\":\"Query Result\"}},{\"field_type\":\"text\",\"data_name\":\"query_result_text\",\"db_name\":\"query_result_text\",\"description\":\"Result of the summary job query\",\"name\":\"query_result_text\",\"oasis\":{\"name\":\"query_result_text\"},\"ui\":{\"display_name\":\"Query Result Text\"}}],\"type\":\"field_descriptor\"},\"type\":\"default\"},{\"name\":\"error\",\"schema\":{\"field_descriptors\":[{\"field_type\":\"text\",\"data_name\":\"message\",\"db_name\":\"message\",\"description\":\"Error message with more details about the error\",\"name\":\"message\",\"oasis\":{\"name\":\"message\"},\"ui\":{\"display_name\":\"Error Message\"}},{\"field_type\":\"enum\",\"allowed_values\":[\"bad_request\",\"not_found\",\"internal\"],\"data_name\":\"type\",\"db_name\":\"type\",\"description\":\"Type of the error\",\"name\":\"type\",\"oasis\":{\"name\":\"type\"},\"ui\":{\"display_name\":\"Error Type\"}}],\"type\":\"field_descriptor\"},\"type\":\"error\"}],\"reference_key\":\"summary_job_query_node_9\",\"ui_metadata\":{\"position\":{\"x\":976.6769156793089,\"y\":2413.333439620128}}},{\"description\":\"Branch the workflow based on a condition\",\"input_ports\":[{\"name\":\"input\",\"schema\":{\"field_descriptors\":[{\"field_type\":\"struct\",\"data_name\":\"condition\",\"db_name\":\"condition\",\"description\":\"Condition to evaluate\",\"is_required\":true,\"name\":\"condition\",\"oasis\":{\"name\":\"condition\"}}],\"type\":\"field_descriptor\"},\"type\":\"default\"}],\"input_values\":[{\"fields\":[{\"name\":\"condition\",\"value\":{\"type\":\"literal\",\"value\":{\"conditions\":[{\"conditions\":[{\"operands\":[{\"type\":\"jsonata_expression\",\"value\":\"$get('summary_job_query_node_9', 'output').query_result[]\"}],\"operator\":\"exists\",\"type\":\"rule\",\"ui_reference_key\":\"3b4a0ba3-2ab3-4c05-98a5-8128e9248252\"}],\"logical_operator\":\"and\",\"negate\":false,\"type\":\"group\",\"ui_reference_key\":\"f8278b8a-bf3c-44f8-a454-8f0d3b9836cf\"}],\"logical_operator\":\"and\",\"negate\":false,\"type\":\"group\",\"ui_reference_key\":\"6af22833-d4d3-4125-81b2-c98ca75c2612\"}}}],\"port_name\":\"input\"}],\"name\":\"Articulate account created?\",\"next_steps\":[{\"next_port_name\":\"input\",\"next_step_reference_key\":\"send_emails_14\",\"port_name\":\"false\"}],\"operation\":{\"namespace\":\"devrev\",\"slug\":\"if_else\"},\"output_ports\":[{\"name\":\"true\",\"type\":\"default\"},{\"name\":\"false\",\"type\":\"default\"},{\"name\":\"error\",\"schema\":{\"field_descriptors\":[{\"field_type\":\"text\",\"data_name\":\"message\",\"db_name\":\"message\",\"description\":\"Error message with more details about the error\",\"name\":\"message\",\"oasis\":{\"name\":\"message\"},\"ui\":{\"display_name\":\"Error Message\"}},{\"field_type\":\"enum\",\"allowed_values\":[\"bad_request\",\"not_found\",\"internal\"],\"data_name\":\"type\",\"db_name\":\"type\",\"description\":\"Type of the error\",\"name\":\"type\",\"oasis\":{\"name\":\"type\"},\"ui\":{\"display_name\":\"Error Type\"}}],\"type\":\"field_descriptor\"},\"type\":\"error\"}],\"reference_key\":\"if_else_11\",\"ui_metadata\":{\"position\":{\"x\":979.6288035221928,\"y\":2607.8145611912887}}},{\"description\":\"You can now send personalized emails using this node. Check the [Documentation](https://devrev.ai/docs/automations/send-emails) for usage details and limitations.\",\"input_ports\":[{\"name\":\"input\",\"schema\":{\"field_descriptors\":[{\"field_type\":\"array\",\"base_type\":\"text\",\"data_name\":\"to_emails\",\"db_name\":\"to_emails\",\"description\":\"The email addresses of the recipients\",\"is_required\":true,\"name\":\"to_emails\",\"oasis\":{\"name\":\"to_emails\"},\"ui\":{\"display_name\":\"Recipient Email Addresses\"}},{\"field_type\":\"array\",\"base_type\":\"text\",\"data_name\":\"cc_emails\",\"db_name\":\"cc_emails\",\"description\":\"The email addresses of the CC recipients\",\"is_required\":false,\"name\":\"cc_emails\",\"oasis\":{\"name\":\"cc_emails\"},\"ui\":{\"display_name\":\"CC Recipient Email Addresses\"}},{\"field_type\":\"array\",\"base_type\":\"text\",\"data_name\":\"bcc_emails\",\"db_name\":\"bcc_emails\",\"description\":\"The email addresses of the BCC recipients\",\"is_required\":false,\"name\":\"bcc_emails\",\"oasis\":{\"name\":\"bcc_emails\"},\"ui\":{\"display_name\":\"BCC Recipient Email Addresses\"}},{\"field_type\":\"text\",\"data_name\":\"sender_name\",\"db_name\":\"sender_name\",\"description\":\"The name of the sender\",\"is_required\":false,\"name\":\"sender_name\",\"oasis\":{\"name\":\"sender_name\"},\"ui\":{\"display_name\":\"Sender Name\"}},{\"field_type\":\"text\",\"data_name\":\"reply_to\",\"db_name\":\"reply_to\",\"description\":\"The email address of the reply-to\",\"is_required\":false,\"name\":\"reply_to\",\"oasis\":{\"name\":\"reply_to\"},\"ui\":{\"display_name\":\"Reply-To Email Address\"}},{\"field_type\":\"text\",\"data_name\":\"from_email\",\"db_name\":\"from_email\",\"description\":\"The email address of the sender\",\"is_required\":true,\"name\":\"from_email\",\"oasis\":{\"name\":\"from_email\"},\"ui\":{\"display_name\":\"Sender Email Address\"}},{\"field_type\":\"text\",\"data_name\":\"email_subject\",\"db_name\":\"email_subject\",\"description\":\"The subject of the email\",\"is_required\":true,\"name\":\"email_subject\",\"oasis\":{\"name\":\"email_subject\"},\"ui\":{\"display_name\":\"Email Subject\"}},{\"field_type\":\"text\",\"data_name\":\"email_body\",\"db_name\":\"email_body\",\"description\":\"The body of the email in HTML/text format. Use this field to customize the email body in workflow.\",\"name\":\"email_body\",\"oasis\":{\"name\":\"email_body\"},\"ui\":{\"display_name\":\"Email Body\"}},{\"field_type\":\"text\",\"data_name\":\"template_name\",\"db_name\":\"template_name\",\"description\":\"The name of the email template. Use this field to directly use the email template from Sendgrid.\",\"name\":\"template_name\",\"oasis\":{\"name\":\"template_name\"},\"ui\":{\"display_name\":\"Email Template Name\"}},{\"field_type\":\"text\",\"data_name\":\"fields\",\"db_name\":\"fields\",\"description\":\"The fields to be replaced in the email template. Use this field only when you choose to use the email template from Sendgrid.<Example:field1=value,field2=value>\",\"name\":\"fields\",\"oasis\":{\"name\":\"fields\"},\"ui\":{\"display_name\":\"Fields to Replace in Email Template\"}}],\"type\":\"field_descriptor\"},\"type\":\"default\"}],\"input_values\":[{\"fields\":[{\"name\":\"to_emails\",\"value\":{\"type\":\"list_value\",\"value\":{\"items\":[{\"type\":\"jsonata_expression\",\"value\":\"$append($get('contact_updated_1', 'output').email, [])\"}]}}},{\"name\":\"email_subject\",\"value\":{\"type\":\"text_template\",\"value\":\"⏰ Final Reminder: Your DevRev Learning Path Closes Soon\"}},{\"name\":\"email_body\",\"value\":{\"type\":\"text_template\",\"value\":\"```\\n<p>Hi there\\n```\\n\\n{% expr $get('contact_updated_1', 'output').display_name %}\\n\\n```\\n!</p>\\n<p>This is your final reminder to register for your DevRev learning path.</p>\\n<p>Teams that have already signed up are working through their courses and strengthening how they use DevRev — mastering key workflows, unlocking powerful features, and building the skills that make a measurable difference in their day-to-day work.</p>\\n<p>Your peers are already getting ahead — discovering best practices, shortcuts, and smarter ways to use the platform. The teams that start early ramp up faster and gain confidence more quickly.</p>\\n<p>If you’re ready to move from getting by to truly excelling in DevRev, now’s the time to get started.</p>\\n<p><strong>Your learning path options:</strong></p>\\n<p><strong>Support Professional</strong> — Master DevRev’s support workflows, ticketing, and customer management</p>\\n<p><a href=\\\"https://devrevu.reach360.com/share/learning-path/56990e10-8579-472c-b723-992a686ce401\\\">Register for Support</a></p>\\n<p><strong>Builder</strong> — Master DevRev Build, product development workflows, and feature delivery</p>\\n<p><a href=\\\"https://devrevu.reach360.com/share/learning-path/c13c3943-511a-459f-b898-964ecf164df3\\\">Register for Build</a></p>\\n<p>If your team would like a live, hands-on session tailored to your workflows, simply reply to this email and we’ll coordinate one based on your availability.</p>\\n<p>Looking forward to supporting your success.</p>\\n<p>— Team DevRevU</p>\\n```\"}},{\"name\":\"from_email\",\"value\":{\"type\":\"text_template\",\"value\":\"devrevuteam@devrev.ai\"}}],\"port_name\":\"input\"}],\"name\":\"Third nudge Generic\",\"operation\":{\"namespace\":\"send-emails\",\"slug\":\"send_emails\"},\"output_ports\":[{\"name\":\"output\",\"schema\":{\"field_descriptors\":[{\"field_type\":\"bool\",\"data_name\":\"status\",\"db_name\":\"status\",\"default_value\":false,\"is_required\":true,\"name\":\"status\",\"oasis\":{\"name\":\"status\"},\"ui\":{\"display_name\":\"status\"}}],\"type\":\"field_descriptor\"},\"type\":\"default\"},{\"name\":\"error\",\"schema\":{\"field_descriptors\":[{\"field_type\":\"text\",\"data_name\":\"message\",\"db_name\":\"message\",\"description\":\"Error message with more details about the error\",\"name\":\"message\",\"oasis\":{\"name\":\"message\"},\"ui\":{\"display_name\":\"Error Message\"}},{\"field_type\":\"enum\",\"allowed_values\":[\"bad_request\",\"not_found\",\"internal\"],\"data_name\":\"type\",\"db_name\":\"type\",\"description\":\"Type of the error\",\"name\":\"type\",\"oasis\":{\"name\":\"type\"},\"ui\":{\"display_name\":\"Error Type\"}}],\"type\":\"field_descriptor\"},\"type\":\"error\"}],\"reference_key\":\"send_emails_14\",\"ui_metadata\":{\"position\":{\"x\":991.0307470379257,\"y\":2784.127290212543}}}],\"title\":\"DevRevU - Enablement Journey - Mailing for non enablement journey users\"}","templateVersion":"2.0.0"}
|