@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\":\"This workflow will be triggered when the opportunity is moved to the evaluate stage, but the linked account doesn't have a segment filled.\",\"serialization_version\":{\"major\":2,\"minor\":0,\"patch\":0},\"steps\":[{\"description\":\"Adds a comment to an object.\",\"input_ports\":[{\"name\":\"input\",\"schema\":{\"field_descriptors\":[{\"field_type\":\"id\",\"data_name\":\"object\",\"db_name\":\"object\",\"description\":\"ID of the object\",\"id_type\":[\"account\",\"capability\",\"conversation\",\"enhancement\",\"feature\",\"incident\",\"issue\",\"linkable\",\"opportunity\",\"product\",\"meeting\",\"revo\",\"revu\",\"runnable\",\"ticket\",\"comment\",\"dm\",\"article\",\"custom_object.chat\",\"custom_object.ai_agent_session_metrics\",\"custom_object.log_pattern\",\"custom_object.event\",\"custom_object.quota\",\"custom_object.marketing\",\"custom_object.test\",\"custom_object.webinar\",\"custom_object.reviews\",\"custom_object.deal\",\"custom_object.form\",\"custom_object.testuiobj\",\"custom_object.campaign\"],\"is_required\":true,\"name\":\"object\",\"oasis\":{\"name\":\"object\"}},{\"field_type\":\"text\",\"data_name\":\"body\",\"db_name\":\"body\",\"description\":\"Comment body\",\"is_required\":true,\"name\":\"body\",\"oasis\":{\"name\":\"body\"}},{\"field_type\":\"enum\",\"allowed_values\":[\"external\",\"internal\",\"private\"],\"data_name\":\"visibility\",\"db_name\":\"visibility\",\"default_value\":\"internal\",\"description\":\"Specifies the entry's visibility. 'Internal' limits visibility to the Dev organization, 'External' allows visibility to both the Dev organization and its customers, and 'Private' limits visibility to specified users only. Defaults to 'External' if unspecified.\",\"is_required\":false,\"name\":\"visibility\",\"oasis\":{\"name\":\"visibility\"}}],\"invalidate_on_field_update\":[\"visibility\"],\"type\":\"field_descriptor\"},\"type\":\"default\"}],\"input_values\":[{\"fields\":[{\"name\":\"object\",\"value\":{\"type\":\"jsonata_expression\",\"value\":\"$get('opportunity_updated_1', 'output').id\"}},{\"name\":\"visibility\",\"value\":{\"type\":\"literal\",\"value\":\"internal\"}},{\"name\":\"body\",\"value\":{\"type\":\"text_template\",\"value\":\"Hey {% expr $get('opportunity_updated_1', 'output').owned_by[0].id %}, the opportunity has moved to {% expr $get('opportunity_updated_1', 'output').stage.name %}, but the linked account doesn't have a segment associated with it. Please update the segment. cc: don:identity:dvrv-us-1:devo/0:group/127\"}}],\"port_name\":\"input\"}],\"name\":\"Add Comment\",\"operation\":{\"namespace\":\"devrev\",\"slug\":\"add_comment\"},\"output_ports\":[{\"name\":\"output\",\"schema\":{\"composite_schemas\":[{\"description\":\"User who created the comment\",\"fields\":[{\"field_type\":\"enum\",\"allowed_values\":[\"dev_user\",\"sys_user\",\"rev_user\",\"service_account\"],\"data_name\":\"type\",\"db_name\":\"type\",\"description\":\"Type of the user\",\"is_required\":true,\"name\":\"type\",\"oasis\":{\"name\":\"type\"}},{\"field_type\":\"id\",\"data_name\":\"id\",\"db_name\":\"id\",\"description\":\"ID of the user\",\"id_type\":[\"devu\",\"sysu\",\"revu\",\"svcacc\"],\"is_required\":true,\"name\":\"id\",\"oasis\":{\"name\":\"id\"}},{\"field_type\":\"text\",\"data_name\":\"display_id\",\"db_name\":\"display_id\",\"description\":\"Display ID of the user\",\"is_required\":true,\"name\":\"display_id\",\"oasis\":{\"name\":\"display_id\"}}],\"name\":\"created_by\"},{\"description\":\"ID of the service account who created the comment on behalf of the user\",\"fields\":[{\"field_type\":\"id\",\"data_name\":\"id\",\"db_name\":\"id\",\"description\":\"ID of the service account\",\"id_type\":[\"svcacc\"],\"name\":\"id\",\"oasis\":{\"name\":\"id\"}},{\"field_type\":\"text\",\"data_name\":\"display_id\",\"db_name\":\"display_id\",\"description\":\"Display ID of the agent\",\"is_required\":true,\"name\":\"display_id\",\"oasis\":{\"name\":\"display_id\"}}],\"name\":\"created_by_agent\"}],\"field_descriptors\":[{\"field_type\":\"id\",\"data_name\":\"id\",\"db_name\":\"id\",\"description\":\"ID of the comment\",\"id_type\":[\"comment\"],\"is_required\":true,\"name\":\"id\",\"oasis\":{\"name\":\"id\"}},{\"field_type\":\"composite\",\"composite_type\":\"created_by\",\"data_name\":\"created_by\",\"db_name\":\"created_by\",\"description\":\"ID of the user who created the comment\",\"is_required\":true,\"name\":\"created_by\",\"oasis\":{\"name\":\"created_by\"}},{\"field_type\":\"composite\",\"composite_type\":\"created_by_agent\",\"data_name\":\"created_by_agent\",\"db_name\":\"created_by_agent\",\"description\":\"ID of the service account who created the comment on behalf of the user\",\"is_required\":false,\"name\":\"created_by_agent\",\"oasis\":{\"name\":\"created_by_agent\"}}],\"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\":\"add_comment_1\",\"ui_metadata\":{\"position\":{\"x\":-315,\"y\":198}}},{\"description\":\"Gets the account details for the given account ID\",\"input_ports\":[{\"name\":\"input\",\"schema\":{\"field_descriptors\":[{\"field_type\":\"id\",\"data_name\":\"id\",\"db_name\":\"id\",\"description\":\"The id of the account.\",\"id_type\":[\"account\"],\"is_required\":true,\"name\":\"id\",\"oasis\":{\"name\":\"id\"},\"ui\":{\"display_name\":\"Account\"}},{\"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\"}}],\"invalidate_on_field_update\":[\"apps\"],\"type\":\"field_descriptor\"},\"type\":\"default\"}],\"input_values\":[{\"fields\":[{\"name\":\"id\",\"value\":{\"type\":\"jsonata_expression\",\"value\":\"$get('opportunity_updated_1', 'output').account.id\"}}],\"port_name\":\"input\"}],\"name\":\"Get Account\",\"next_steps\":[{\"next_port_name\":\"input\",\"next_step_reference_key\":\"if_else_1\",\"port_name\":\"output\"}],\"operation\":{\"namespace\":\"devrev\",\"slug\":\"get_account\"},\"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\":\"enum\",\"allowed_values\":[\"active\",\"deactivated\",\"deleted\",\"locked\",\"shadow\",\"unassigned\"],\"data_name\":\"state\",\"db_name\":\"state\",\"description\":\"State of the user.\",\"name\":\"state\",\"oasis\":{\"name\":\"state\"}},{\"field_type\":\"enum\",\"allowed_values\":[\"dev_user\",\"rev_user\",\"service_account\",\"sys_user\"],\"data_name\":\"type\",\"db_name\":\"type\",\"is_required\":true,\"name\":\"type\",\"oasis\":{\"name\":\"type\"}},{\"field_type\":\"id\",\"data_name\":\"id\",\"db_name\":\"id\",\"description\":\"The id of the user.\",\"id_type\":[\"devu\",\"sysu\",\"svcacc\"],\"is_required\":true,\"name\":\"id\",\"oasis\":{\"name\":\"id\"}}],\"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\":\"enum\",\"allowed_values\":[\"active\",\"deactivated\",\"deleted\",\"locked\",\"shadow\",\"unassigned\"],\"data_name\":\"state\",\"db_name\":\"state\",\"description\":\"State of the user.\",\"name\":\"state\",\"oasis\":{\"name\":\"state\"}},{\"field_type\":\"enum\",\"allowed_values\":[\"dev_user\",\"rev_user\",\"service_account\",\"sys_user\"],\"data_name\":\"type\",\"db_name\":\"type\",\"is_required\":true,\"name\":\"type\",\"oasis\":{\"name\":\"type\"}},{\"field_type\":\"id\",\"data_name\":\"id\",\"db_name\":\"id\",\"description\":\"The id of the user.\",\"id_type\":[\"devu\",\"sysu\",\"svcacc\"],\"is_required\":true,\"name\":\"id\",\"oasis\":{\"name\":\"id\"}}],\"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\":\"The id of the tag.\",\"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\":\"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\":\"enum\",\"allowed_values\":[\"active\",\"deactivated\",\"deleted\",\"locked\",\"shadow\",\"unassigned\"],\"data_name\":\"state\",\"db_name\":\"state\",\"description\":\"State of the user.\",\"name\":\"state\",\"oasis\":{\"name\":\"state\"}},{\"field_type\":\"enum\",\"allowed_values\":[\"dev_user\",\"rev_user\",\"service_account\",\"sys_user\"],\"data_name\":\"type\",\"db_name\":\"type\",\"is_required\":true,\"name\":\"type\",\"oasis\":{\"name\":\"type\"}},{\"field_type\":\"id\",\"data_name\":\"id\",\"db_name\":\"id\",\"description\":\"The id of the user.\",\"id_type\":[\"devu\",\"sysu\",\"svcacc\"],\"is_required\":true,\"name\":\"id\",\"oasis\":{\"name\":\"id\"}}],\"name\":\"_gen:user-summary\"}],\"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 account was created.\",\"name\":\"created_date\",\"oasis\":{\"name\":\"created_date\"}},{\"field_type\":\"text\",\"data_name\":\"description\",\"db_name\":\"description\",\"description\":\"Description of the corresponding Account.\",\"name\":\"description\",\"oasis\":{\"name\":\"description\"}},{\"field_type\":\"text\",\"data_name\":\"display_id\",\"db_name\":\"display_id\",\"description\":\"Human-readable account 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\":\"Name of the Organization.\",\"name\":\"display_name\",\"oasis\":{\"name\":\"display_name\"}},{\"field_type\":\"array\",\"base_type\":\"text\",\"data_name\":\"domains\",\"db_name\":\"domains\",\"description\":\"Company's domain names. Example - 'devrev.ai'.\",\"name\":\"domains\",\"oasis\":{\"name\":\"domains\"}},{\"field_type\":\"array\",\"base_type\":\"text\",\"data_name\":\"external_refs\",\"db_name\":\"external_refs\",\"description\":\"External refs are unique identifiers from your customer system of\\nrecords, stored as a list.\\n\",\"name\":\"external_refs\",\"oasis\":{\"name\":\"external_refs\"}},{\"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 account was modified.\",\"name\":\"modified_date\",\"oasis\":{\"name\":\"modified_date\"}},{\"field_type\":\"array\",\"base_type\":\"composite\",\"composite_type\":\"_gen:user-summary\",\"data_name\":\"owned_by\",\"db_name\":\"owned_by\",\"is_required\":true,\"name\":\"owned_by\",\"oasis\":{\"name\":\"owned_by\"}},{\"field_type\":\"array\",\"base_type\":\"composite\",\"composite_type\":\"_gen:tags\",\"data_name\":\"tags\",\"db_name\":\"tags\",\"description\":\"Tags associated with an object.\",\"name\":\"tags\",\"oasis\":{\"name\":\"tags\"}},{\"field_type\":\"text\",\"data_name\":\"tier\",\"db_name\":\"tier\",\"description\":\"The Tier of the corresponding Account.\",\"name\":\"tier\",\"oasis\":{\"name\":\"tier\"}},{\"field_type\":\"id\",\"data_name\":\"id\",\"db_name\":\"id\",\"description\":\"The id of the account.\",\"id_type\":[\"account\"],\"is_required\":true,\"name\":\"id\",\"oasis\":{\"name\":\"id\"}},{\"supported_filter_ops\":[\"any\",\"not_any\",\"empty\",\"not_empty\"],\"field_type\":\"id\",\"data_name\":\"tnt__account_executive\",\"db_name\":\"tnt__account_executive\",\"description\":\"List of Dev user IDs assigned as Account Executives for this Account.\",\"id_type\":[\"devu\"],\"is_filterable\":true,\"name\":\"tnt__account_executive\",\"oasis\":{\"name\":\"tnt__account_executive\"},\"origin\":\"account\",\"ui\":{\"display_name\":\"AE\",\"placeholder\":\"Add AE\"}},{\"field_type\":\"rich_text\",\"data_name\":\"tnt__account_research\",\"db_name\":\"tnt__account_research\",\"is_filterable\":false,\"name\":\"tnt__account_research\",\"oasis\":{\"name\":\"tnt__account_research\"},\"ui\":{\"display_name\":\"Account Research\",\"placeholder\":\"Add Account Research\"}},{\"supported_filter_ops\":[\"any\",\"not_any\",\"empty\",\"not_empty\"],\"field_type\":\"enum\",\"allowed_values\":[\"Business\",\"Personal\"],\"data_name\":\"tnt__acount_type\",\"db_name\":\"tnt__acount_type\",\"description\":\"Account type\",\"is_filterable\":true,\"name\":\"tnt__acount_type\",\"oasis\":{\"name\":\"tnt__acount_type\"},\"ui\":{\"display_name\":\"Account type\",\"placeholder\":\"Add Account type\"}},{\"field_type\":\"int\",\"data_name\":\"tnt__acv\",\"db_name\":\"tnt__acv\",\"is_filterable\":false,\"name\":\"tnt__acv\",\"oasis\":{\"name\":\"tnt__acv\"},\"ui\":{\"display_name\":\"acv\",\"placeholder\":\"Add acv\"}},{\"field_type\":\"timestamp\",\"data_name\":\"tnt__agreement_expiration_date\",\"db_name\":\"tnt__agreement_expiration_date\",\"description\":\"Agreement expiration date\",\"is_filterable\":true,\"name\":\"tnt__agreement_expiration_date\",\"oasis\":{\"name\":\"tnt__agreement_expiration_date\"},\"ui\":{\"display_name\":\"Agreement expiration date\",\"placeholder\":\"Add Agreement expiration date\"}},{\"field_type\":\"timestamp\",\"data_name\":\"tnt__agreement_signed_date\",\"db_name\":\"tnt__agreement_signed_date\",\"description\":\"Agreement Signed Date\",\"is_filterable\":true,\"name\":\"tnt__agreement_signed_date\",\"oasis\":{\"name\":\"tnt__agreement_signed_date\"},\"ui\":{\"display_name\":\"Agreement signed date\",\"placeholder\":\"Add Agreement signed date\"}},{\"field_type\":\"bool\",\"data_name\":\"tnt__alliance_partner\",\"db_name\":\"tnt__alliance_partner\",\"description\":\"\",\"is_filterable\":true,\"name\":\"tnt__alliance_partner\",\"oasis\":{\"name\":\"tnt__alliance_partner\"},\"ui\":{\"display_name\":\"Alliance Partner\",\"placeholder\":\"Is Alliance Partner\"}},{\"supported_filter_ops\":[\"any\",\"not_any\",\"empty\",\"not_empty\"],\"field_type\":\"enum\",\"allowed_values\":[\"Cloud\",\"LLM\",\"Other\",\"Voice\"],\"data_name\":\"tnt__alliance_partner_type\",\"db_name\":\"tnt__alliance_partner_type\",\"description\":\"\",\"is_filterable\":true,\"name\":\"tnt__alliance_partner_type\",\"oasis\":{\"name\":\"tnt__alliance_partner_type\"},\"ui\":{\"display_name\":\"Alliance Partner Type\",\"placeholder\":\"Add Alliance Partner Type\"}},{\"supported_filter_ops\":[\"any\",\"not_any\",\"empty\",\"not_empty\"],\"field_type\":\"int\",\"data_name\":\"tnt__annual_revenue\",\"db_name\":\"tnt__annual_revenue\",\"description\":\"Annual Revenue\",\"is_filterable\":true,\"name\":\"tnt__annual_revenue\",\"oasis\":{\"name\":\"tnt__annual_revenue\"},\"ui\":{\"display_name\":\"Annual Revenue\",\"placeholder\":\"Enter revenue generated by the company\"}},{\"supported_filter_ops\":[\"any\",\"not_any\",\"empty\",\"not_empty\"],\"field_type\":\"enum\",\"allowed_values\":[\"$100M-$500M\",\"$10M-$100M\",\"$500M-$1B\",\"Less than $10M\",\"More than $1B\"],\"data_name\":\"tnt__annual_revenue_range\",\"db_name\":\"tnt__annual_revenue_range\",\"description\":\"\",\"is_filterable\":true,\"name\":\"tnt__annual_revenue_range\",\"oasis\":{\"name\":\"tnt__annual_revenue_range\"},\"ui\":{\"display_name\":\"Annual Revenue Range\",\"placeholder\":\"Add Annual Revenue Range\"}},{\"supported_filter_ops\":[\"any\",\"not_any\",\"empty\",\"not_empty\"],\"field_type\":\"int\",\"data_name\":\"tnt__arr\",\"db_name\":\"tnt__arr\",\"description\":\"ARR\",\"is_filterable\":true,\"name\":\"tnt__arr\",\"oasis\":{\"name\":\"tnt__arr\"},\"ui\":{\"display_name\":\"ACV\",\"placeholder\":\"Enter annual contract value\"}},{\"supported_filter_ops\":[\"any\",\"not_any\",\"empty\",\"not_empty\"],\"field_type\":\"text\",\"data_name\":\"tnt__billing_address\",\"db_name\":\"tnt__billing_address\",\"description\":\"\",\"is_filterable\":true,\"name\":\"tnt__billing_address\",\"oasis\":{\"name\":\"tnt__billing_address\"},\"ui\":{\"display_name\":\"Billing Address\",\"placeholder\":\"Add Billing Address\"}},{\"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\",\"Bosnia and Herzegowina\",\"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\",\"Guernsey\",\"Guinea\",\"Guinea-Bissau\",\"Guyana\",\"Haiti\",\"Holy See\",\"Honduras\",\"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__billing_country\",\"db_name\":\"tnt__billing_country\",\"description\":\"\",\"is_filterable\":true,\"name\":\"tnt__billing_country\",\"oasis\":{\"name\":\"tnt__billing_country\"},\"ui\":{\"display_name\":\"Billing Country\",\"placeholder\":\"Add Billing Country\"}},{\"supported_filter_ops\":[\"any\",\"not_any\",\"empty\",\"not_empty\"],\"field_type\":\"rich_text\",\"data_name\":\"tnt__business_model\",\"db_name\":\"tnt__business_model\",\"is_filterable\":true,\"name\":\"tnt__business_model\",\"oasis\":{\"name\":\"tnt__business_model\"},\"ui\":{\"display_name\":\"Business Model\",\"placeholder\":\"Add Business Model\"}},{\"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\":[\"any\",\"not_any\",\"empty\",\"not_empty\"],\"field_type\":\"int\",\"data_name\":\"tnt__company_size\",\"db_name\":\"tnt__company_size\",\"description\":\"Company size\",\"is_filterable\":true,\"name\":\"tnt__company_size\",\"oasis\":{\"name\":\"tnt__company_size\"},\"ui\":{\"display_name\":\"Company size\",\"placeholder\":\"Add Company size\"}},{\"supported_filter_ops\":[\"any\",\"not_any\",\"empty\",\"not_empty\"],\"field_type\":\"text\",\"data_name\":\"tnt__competitor\",\"db_name\":\"tnt__competitor\",\"description\":\"Competitor\",\"is_filterable\":true,\"name\":\"tnt__competitor\",\"oasis\":{\"name\":\"tnt__competitor\"},\"ui\":{\"display_name\":\"Competitor\",\"placeholder\":\"Add Competitor\"}},{\"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\",\"Bosnia and Herzegowina\",\"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\",\"Guernsey\",\"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\"}},{\"supported_filter_ops\":[\"any\",\"not_any\",\"empty\",\"not_empty\"],\"field_type\":\"id\",\"data_name\":\"tnt__css_implementation_tracker\",\"db_name\":\"tnt__css_implementation_tracker\",\"id_type\":[\"part\"],\"is_filterable\":true,\"name\":\"tnt__css_implementation_tracker\",\"oasis\":{\"name\":\"tnt__css_implementation_tracker\"},\"ui\":{\"display_name\":\"CSS Implementation Tracker\",\"placeholder\":\"Add CSS Implementation Tracker\",\"tooltip\":\"ENH used for tracking the customer's implementation progress\"}},{\"supported_filter_ops\":[\"all\",\"any\",\"not_any\",\"empty\",\"not_empty\"],\"field_type\":\"array\",\"base_type\":\"enum\",\"allowed_values\":[\"Asana\",\"Jira\",\"Monday.com\",\"Notion\",\"Pivotal Tracker\",\"Project Tracker\",\"Trello\",\"Wrike\",\"Zoho Projects\"],\"data_name\":\"tnt__current_techstack_build\",\"db_name\":\"tnt__current_techstack_build\",\"description\":\"Current Techstack - Build\",\"is_filterable\":true,\"name\":\"tnt__current_techstack_build\",\"oasis\":{\"name\":\"tnt__current_techstack_build\"},\"ui\":{\"display_name\":\"Current Techstack - Build\",\"placeholder\":\"Add Current Techstack - Build\"}},{\"supported_filter_ops\":[\"all\",\"any\",\"not_any\",\"empty\",\"not_empty\"],\"field_type\":\"array\",\"base_type\":\"enum\",\"allowed_values\":[\"Freshsales\",\"Hubspot SalesHub\",\"Pipedrive\",\"SFDC SalesCloud\",\"ZohoCRM\"],\"data_name\":\"tnt__current_techstack_grow\",\"db_name\":\"tnt__current_techstack_grow\",\"description\":\"Current Techstack - Grow\",\"is_filterable\":true,\"name\":\"tnt__current_techstack_grow\",\"oasis\":{\"name\":\"tnt__current_techstack_grow\"},\"ui\":{\"display_name\":\"Current Techstack - Grow\",\"placeholder\":\"Add Current Techstack - Grow\"}},{\"supported_filter_ops\":[\"all\",\"any\",\"not_any\",\"empty\",\"not_empty\"],\"field_type\":\"array\",\"base_type\":\"enum\",\"allowed_values\":[\"Ada Chat\",\"Freshdesk\",\"Front App\",\"HubSpot Service Hub\",\"Intercom\",\"Jira Servicedesk\",\"SFDC ServiceCloud\",\"Slack Connect\",\"Zendesk\",\"Zoho Desk\"],\"data_name\":\"tnt__current_techstack_support\",\"db_name\":\"tnt__current_techstack_support\",\"description\":\"Current Techstack - Support\",\"is_filterable\":true,\"name\":\"tnt__current_techstack_support\",\"oasis\":{\"name\":\"tnt__current_techstack_support\"},\"ui\":{\"display_name\":\"Current Techstack - Support\",\"placeholder\":\"Add Current Techstack - Support\"}},{\"supported_filter_ops\":[\"any\",\"not_any\",\"empty\",\"not_empty\"],\"field_type\":\"int\",\"data_name\":\"tnt__custom_payment_terms\",\"db_name\":\"tnt__custom_payment_terms\",\"description\":\"Custom Payment Terms\",\"is_filterable\":true,\"name\":\"tnt__custom_payment_terms\",\"oasis\":{\"name\":\"tnt__custom_payment_terms\"},\"ui\":{\"display_name\":\"Custom Payment Terms\",\"placeholder\":\"Enter custom payment terms\"}},{\"supported_filter_ops\":[\"any\",\"not_any\",\"empty\",\"not_empty\"],\"field_type\":\"int\",\"data_name\":\"tnt__customer_base\",\"db_name\":\"tnt__customer_base\",\"description\":\"Total customers\",\"is_filterable\":true,\"name\":\"tnt__customer_base\",\"oasis\":{\"name\":\"tnt__customer_base\"},\"ui\":{\"display_name\":\"Customer Base\",\"placeholder\":\"Add Customer Base\"}},{\"supported_filter_ops\":[\"any\",\"not_any\",\"empty\",\"not_empty\"],\"field_type\":\"enum\",\"allowed_values\":[\"Engaged\",\"Relaxed\",\"Restored\",\"Stressed\"],\"data_name\":\"tnt__customer_state\",\"db_name\":\"tnt__customer_state\",\"is_filterable\":true,\"name\":\"tnt__customer_state\",\"oasis\":{\"name\":\"tnt__customer_state\"},\"ui\":{\"display_name\":\"Customer State\",\"placeholder\":\"Add Customer State\",\"tooltip\":\"Defines the state of a customer according to this doc: https://www.notion.so/devrev/Leveling-UP-29b81946d8338012b9fbf73cd539172d\"}},{\"supported_filter_ops\":[\"any\",\"not_any\",\"empty\",\"not_empty\"],\"field_type\":\"id\",\"data_name\":\"tnt__customer_success\",\"db_name\":\"tnt__customer_success\",\"description\":\"List of Dev user IDs assigned as Customer Success for this Account.\",\"id_type\":[\"devu\"],\"is_filterable\":true,\"name\":\"tnt__customer_success\",\"oasis\":{\"name\":\"tnt__customer_success\"},\"origin\":\"account\",\"ui\":{\"display_name\":\"CS\",\"placeholder\":\"Add CS\"}},{\"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 all the users of a given account, 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\":\"int\",\"data_name\":\"tnt__days_in_state\",\"db_name\":\"tnt__days_in_state\",\"description\":\"Number of Days the customer is in a particular implementation or Usage state\",\"is_filterable\":true,\"name\":\"tnt__days_in_state\",\"oasis\":{\"name\":\"tnt__days_in_state\"},\"ui\":{\"display_name\":\"Days in State\",\"placeholder\":\"Number of Days the customer is in a particular implementation or Usage state\",\"tooltip\":\"Number of Days the customer is in a particular implementation or Usage state\"}},{\"supported_filter_ops\":[\"all\",\"any\",\"not_any\",\"empty\",\"not_empty\"],\"field_type\":\"array\",\"base_type\":\"id\",\"data_name\":\"tnt__deal_new\",\"db_name\":\"tnt__deal_new\",\"description\":\"\",\"id_type\":[\"custom_object.deal\"],\"is_filterable\":true,\"name\":\"tnt__deal_new\",\"oasis\":{\"name\":\"tnt__deal_new\"},\"ui\":{\"display_name\":\"Deal\",\"placeholder\":\"Add Deal\"}},{\"supported_filter_ops\":[\"any\",\"not_any\",\"empty\",\"not_empty\"],\"field_type\":\"int\",\"data_name\":\"tnt__employee_count\",\"db_name\":\"tnt__employee_count\",\"description\":\"Employee count\",\"is_filterable\":true,\"name\":\"tnt__employee_count\",\"oasis\":{\"name\":\"tnt__employee_count\"},\"ui\":{\"display_name\":\"Employee count\",\"placeholder\":\"Add Employee count\"}},{\"supported_filter_ops\":[\"any\",\"not_any\",\"empty\",\"not_empty\"],\"field_type\":\"enum\",\"allowed_values\":[\"1001-2500\",\"101-500\",\"11-50\",\"2501-5000\",\"501-1000\",\"51-100\",\"Less than 10\",\"More than 5000\"],\"data_name\":\"tnt__employee_count_range\",\"db_name\":\"tnt__employee_count_range\",\"description\":\"This field indicates the number of employees in the company.\",\"is_filterable\":true,\"name\":\"tnt__employee_count_range\",\"oasis\":{\"name\":\"tnt__employee_count_range\"},\"ui\":{\"display_name\":\"Employee Count Range\",\"placeholder\":\"Add Employee Count Range\"}},{\"supported_filter_ops\":[\"any\",\"not_any\",\"empty\",\"not_empty\"],\"field_type\":\"enum\",\"allowed_values\":[\"1001-2500\",\"101-500\",\"11-50\",\"2501-5000\",\"501-1000\",\"51-100\",\"Less than 10\",\"More than 5000\"],\"data_name\":\"tnt__employee_range\",\"db_name\":\"tnt__employee_range\",\"description\":\"This field indicates the number of employees in the company.\",\"is_filterable\":true,\"name\":\"tnt__employee_range\",\"oasis\":{\"name\":\"tnt__employee_range\"},\"ui\":{\"display_name\":\"Employee Range\",\"placeholder\":\"Add Employee Range\"}},{\"supported_filter_ops\":[\"any\",\"not_any\",\"empty\",\"not_empty\"],\"field_type\":\"enum\",\"allowed_values\":[\"Cool\",\"Hot\",\"Ice\",\"Warm\"],\"data_name\":\"tnt__engagement_level\",\"db_name\":\"tnt__engagement_level\",\"description\":\"Engagement level of the Account\",\"is_filterable\":true,\"name\":\"tnt__engagement_level\",\"oasis\":{\"name\":\"tnt__engagement_level\"},\"ui\":{\"display_name\":\"Engagement Level\",\"placeholder\":\"Add Engagement Level\"}},{\"supported_filter_ops\":[\"any\",\"not_any\",\"empty\",\"not_empty\"],\"field_type\":\"int\",\"data_name\":\"tnt__engagement_score\",\"db_name\":\"tnt__engagement_score\",\"description\":\"Engagement Score\",\"is_filterable\":true,\"name\":\"tnt__engagement_score\",\"oasis\":{\"name\":\"tnt__engagement_score\"},\"ui\":{\"display_name\":\"Engagement Score\",\"placeholder\":\"Add Engagement Score\"}},{\"field_type\":\"bool\",\"data_name\":\"tnt__enriched\",\"db_name\":\"tnt__enriched\",\"description\":\"Enrichment Flag - indicates if account has been enriched by any provider\",\"is_filterable\":true,\"name\":\"tnt__enriched\",\"oasis\":{\"name\":\"tnt__enriched\"},\"ui\":{\"display_name\":\"Enriched\",\"placeholder\":\"Add Enriched\"}},{\"field_type\":\"array\",\"base_type\":\"text\",\"data_name\":\"tnt__fields_modified_during_import\",\"db_name\":\"tnt__fields_modified_during_import\",\"description\":\"The fields that were modified while loading from the external system to satisfy uniqueness constraints in DevRev.\",\"is_required\":false,\"name\":\"tnt__fields_modified_during_import\",\"oasis\":{\"name\":\"tnt__fields_modified_during_import\"},\"ui\":{\"display_name\":\"Fields modified during import\",\"placeholder\":\"Add Fields modified during import\"}},{\"supported_filter_ops\":[\"any\",\"not_any\",\"empty\",\"not_empty\"],\"field_type\":\"id\",\"data_name\":\"tnt__first_signed_in_user\",\"db_name\":\"tnt__first_signed_in_user\",\"description\":\"The device used by the first user of an account in their first interaction or touchpoint with the website/app.\",\"id_type\":[\"revu\"],\"is_filterable\":true,\"name\":\"tnt__first_signed_in_user\",\"oasis\":{\"name\":\"tnt__first_signed_in_user\"},\"ui\":{\"display_name\":\"First signed-in user\",\"placeholder\":\"Add First signed-in user\"}},{\"supported_filter_ops\":[\"any\",\"not_any\",\"empty\",\"not_empty\"],\"field_type\":\"text\",\"data_name\":\"tnt__first_user_utm_campaign\",\"db_name\":\"tnt__first_user_utm_campaign\",\"description\":\"The specific marketing campaign or initiative associated with the marketing links that the first user of an account clicks to visit the webpage/app.\",\"is_filterable\":true,\"name\":\"tnt__first_user_utm_campaign\",\"oasis\":{\"name\":\"tnt__first_user_utm_campaign\"},\"ui\":{\"display_name\":\"First User UTM Campaign\",\"placeholder\":\"Add First User UTM Campaign\"}},{\"supported_filter_ops\":[\"any\",\"not_any\",\"empty\",\"not_empty\"],\"field_type\":\"text\",\"data_name\":\"tnt__first_user_utm_content\",\"db_name\":\"tnt__first_user_utm_content\",\"description\":\"The specific content variant or element within a campaign that is targeted when the account’s first user visits the website/app.\",\"is_filterable\":true,\"name\":\"tnt__first_user_utm_content\",\"oasis\":{\"name\":\"tnt__first_user_utm_content\"},\"ui\":{\"display_name\":\"First User UTM Content\",\"placeholder\":\"Add First User UTM Content\"}},{\"supported_filter_ops\":[\"any\",\"not_any\",\"empty\",\"not_empty\"],\"field_type\":\"text\",\"data_name\":\"tnt__first_user_utm_medium\",\"db_name\":\"tnt__first_user_utm_medium\",\"description\":\"The medium or type of marketing channel through which the account lead was brought into the website/app.\",\"is_filterable\":true,\"name\":\"tnt__first_user_utm_medium\",\"oasis\":{\"name\":\"tnt__first_user_utm_medium\"},\"ui\":{\"display_name\":\"First User UTM Medium\",\"placeholder\":\"Add First User UTM Medium\"}},{\"supported_filter_ops\":[\"any\",\"not_any\",\"empty\",\"not_empty\"],\"field_type\":\"text\",\"data_name\":\"tnt__first_user_utm_source\",\"db_name\":\"tnt__first_user_utm_source\",\"description\":\"The source or referring channel (digital/physical) that directed the user of an account to a specific page in the website/app.\",\"is_filterable\":true,\"name\":\"tnt__first_user_utm_source\",\"oasis\":{\"name\":\"tnt__first_user_utm_source\"},\"ui\":{\"display_name\":\"First User UTM Source\",\"placeholder\":\"Add First User UTM Source\"}},{\"supported_filter_ops\":[\"any\",\"not_any\",\"empty\",\"not_empty\"],\"field_type\":\"text\",\"data_name\":\"tnt__first_user_utm_term\",\"db_name\":\"tnt__first_user_utm_term\",\"description\":\"The keyword or search term associated with a specific ad or campaign when an account’s first user visits the website/app.\",\"is_filterable\":true,\"name\":\"tnt__first_user_utm_term\",\"oasis\":{\"name\":\"tnt__first_user_utm_term\"},\"ui\":{\"display_name\":\"First User UTM Term\",\"placeholder\":\"Add First User 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 the first user of an account 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\"}},{\"field_type\":\"timestamp\",\"data_name\":\"tnt__first_visit_timestamp\",\"db_name\":\"tnt__first_visit_timestamp\",\"description\":\"The timestamp indicating the timestamp of the first user visit of a particular account on the webpage/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\":\"enum\",\"allowed_values\":[\"Churned: Lost\",\"Churned: Shrunk\",\"Closed\",\"Closed Lost\",\"Closed Won\",\"Commit\",\"Free Tier\",\"PLG\",\"Pipeline\",\"Strong Upside\",\"Upside\"],\"data_name\":\"tnt__forecast_category\",\"db_name\":\"tnt__forecast_category\",\"description\":\"Forecast Category\",\"is_filterable\":true,\"name\":\"tnt__forecast_category\",\"oasis\":{\"name\":\"tnt__forecast_category\"},\"ui\":{\"display_name\":\"Forecast Category\",\"placeholder\":\"Add Forecast Category\"}},{\"supported_filter_ops\":[\"any\",\"not_any\",\"empty\",\"not_empty\"],\"field_type\":\"int\",\"data_name\":\"tnt__founded_year\",\"db_name\":\"tnt__founded_year\",\"description\":\"Founded year\",\"is_filterable\":true,\"name\":\"tnt__founded_year\",\"oasis\":{\"name\":\"tnt__founded_year\"},\"ui\":{\"display_name\":\"Founded year\",\"placeholder\":\"Add Founded year\"}},{\"field_type\":\"int\",\"data_name\":\"tnt__funding_amount\",\"db_name\":\"tnt__funding_amount\",\"description\":\"Funding Amount\",\"is_filterable\":false,\"name\":\"tnt__funding_amount\",\"oasis\":{\"name\":\"tnt__funding_amount\"},\"ui\":{\"display_name\":\"Funding Amount\",\"placeholder\":\"Add Funding Amount\"}},{\"field_type\":\"date\",\"data_name\":\"tnt__funding_date\",\"db_name\":\"tnt__funding_date\",\"description\":\"Funding date\",\"is_filterable\":true,\"name\":\"tnt__funding_date\",\"oasis\":{\"name\":\"tnt__funding_date\"},\"ui\":{\"display_name\":\"Funding date\",\"placeholder\":\"Add Funding date\"}},{\"field_type\":\"text\",\"data_name\":\"tnt__funding_round\",\"db_name\":\"tnt__funding_round\",\"description\":\"Funding Round\",\"is_filterable\":false,\"name\":\"tnt__funding_round\",\"oasis\":{\"name\":\"tnt__funding_round\"},\"ui\":{\"display_name\":\"Funding Round\",\"placeholder\":\"Add Funding Round\"}},{\"supported_filter_ops\":[\"any\",\"not_any\",\"empty\",\"not_empty\"],\"field_type\":\"enum\",\"allowed_values\":[\"Seed\",\"Series A\",\"Unfunded\"],\"data_name\":\"tnt__funding_stage\",\"db_name\":\"tnt__funding_stage\",\"is_filterable\":true,\"name\":\"tnt__funding_stage\",\"oasis\":{\"name\":\"tnt__funding_stage\"},\"ui\":{\"display_name\":\"Funding Stage\",\"placeholder\":\"Add Funding Stage\"}},{\"supported_filter_ops\":[\"any\",\"not_any\",\"empty\",\"not_empty\"],\"field_type\":\"enum\",\"allowed_values\":[\"AMER\",\"APJ\",\"EMEA\"],\"data_name\":\"tnt__geo\",\"db_name\":\"tnt__geo\",\"description\":\"Geo\",\"is_filterable\":true,\"name\":\"tnt__geo\",\"oasis\":{\"name\":\"tnt__geo\"},\"ui\":{\"display_name\":\"Geo\",\"placeholder\":\"Add geo\"}},{\"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\":[\"High\",\"Low\",\"Medium\",\"No Growth\"],\"data_name\":\"tnt__growth_opportunity\",\"db_name\":\"tnt__growth_opportunity\",\"is_filterable\":true,\"name\":\"tnt__growth_opportunity\",\"oasis\":{\"name\":\"tnt__growth_opportunity\"},\"ui\":{\"display_name\":\"Growth Opportunity\",\"placeholder\":\"Add Growth Opportunity\"}},{\"supported_filter_ops\":[\"any\",\"not_any\",\"empty\",\"not_empty\"],\"field_type\":\"enum\",\"allowed_values\":[\"No\",\"Yes\"],\"data_name\":\"tnt__has_app_users\",\"db_name\":\"tnt__has_app_users\",\"description\":\"Indicates if there are app users on the account.\",\"is_filterable\":true,\"name\":\"tnt__has_app_users\",\"oasis\":{\"name\":\"tnt__has_app_users\"},\"ui\":{\"display_name\":\"Has App Users\",\"placeholder\":\"Add Has App Users\"}},{\"supported_filter_ops\":[\"any\",\"not_any\",\"empty\",\"not_empty\"],\"field_type\":\"text\",\"data_name\":\"tnt__hubspot_companies_account_id_cfid\",\"db_name\":\"tnt__hubspot_companies_account_id_cfid\",\"description\":\"\",\"is_filterable\":true,\"is_required\":false,\"name\":\"tnt__hubspot_companies_account_id_cfid\",\"oasis\":{\"name\":\"tnt__hubspot_companies_account_id_cfid\"},\"ui\":{\"display_name\":\"Hubspot account_id\",\"placeholder\":\"Add Hubspot account_id\"}},{\"field_type\":\"double\",\"data_name\":\"tnt__hubspot_companies_annualrevenue_cfid\",\"db_name\":\"tnt__hubspot_companies_annualrevenue_cfid\",\"description\":\"The actual or estimated annual revenue of the company.\",\"is_filterable\":false,\"is_required\":false,\"name\":\"tnt__hubspot_companies_annualrevenue_cfid\",\"oasis\":{\"name\":\"tnt__hubspot_companies_annualrevenue_cfid\"},\"ui\":{\"display_name\":\"Hubspot Annual Revenue\",\"placeholder\":\"Add Hubspot Annual Revenue\"}},{\"supported_filter_ops\":[\"any\",\"not_any\",\"empty\",\"not_empty\"],\"field_type\":\"text\",\"data_name\":\"tnt__hubspot_companies_city_cfid\",\"db_name\":\"tnt__hubspot_companies_city_cfid\",\"description\":\"City where the company is located.\",\"is_filterable\":true,\"is_required\":false,\"name\":\"tnt__hubspot_companies_city_cfid\",\"oasis\":{\"name\":\"tnt__hubspot_companies_city_cfid\"},\"ui\":{\"display_name\":\"Hubspot City\",\"placeholder\":\"Add Hubspot City\"}},{\"field_type\":\"timestamp\",\"data_name\":\"tnt__hubspot_companies_closedate_cfid\",\"db_name\":\"tnt__hubspot_companies_closedate_cfid\",\"description\":\"The date the company or organization was closed as a customer\",\"is_filterable\":false,\"is_required\":false,\"name\":\"tnt__hubspot_companies_closedate_cfid\",\"oasis\":{\"name\":\"tnt__hubspot_companies_closedate_cfid\"},\"ui\":{\"display_name\":\"Hubspot Close Date\",\"placeholder\":\"Add Hubspot Close Date\"}},{\"supported_filter_ops\":[\"any\",\"not_any\",\"empty\",\"not_empty\"],\"field_type\":\"text\",\"data_name\":\"tnt__hubspot_companies_country_cfid\",\"db_name\":\"tnt__hubspot_companies_country_cfid\",\"description\":\"Country in which the company or organization is located.\",\"is_filterable\":true,\"is_required\":false,\"name\":\"tnt__hubspot_companies_country_cfid\",\"oasis\":{\"name\":\"tnt__hubspot_companies_country_cfid\"},\"ui\":{\"display_name\":\"Hubspot Country/Region\",\"placeholder\":\"Add Hubspot Country/Region\"}},{\"field_type\":\"timestamp\",\"data_name\":\"tnt__hubspot_companies_createdate_cfid\",\"db_name\":\"tnt__hubspot_companies_createdate_cfid\",\"description\":\"The date the company or organization was added to the database\",\"is_filterable\":false,\"is_required\":false,\"name\":\"tnt__hubspot_companies_createdate_cfid\",\"oasis\":{\"name\":\"tnt__hubspot_companies_createdate_cfid\"},\"ui\":{\"display_name\":\"Hubspot Create Date\",\"placeholder\":\"Add Hubspot Create Date\"}},{\"field_type\":\"double\",\"data_name\":\"tnt__hubspot_companies_days_to_close_cfid\",\"db_name\":\"tnt__hubspot_companies_days_to_close_cfid\",\"description\":\"The number of days between when the company record was created and when they closed as a customer.\",\"is_filterable\":false,\"is_required\":false,\"name\":\"tnt__hubspot_companies_days_to_close_cfid\",\"oasis\":{\"name\":\"tnt__hubspot_companies_days_to_close_cfid\"},\"ui\":{\"display_name\":\"Hubspot Days to Close\",\"placeholder\":\"Add Hubspot Days to Close\"}},{\"supported_filter_ops\":[\"any\",\"not_any\",\"empty\",\"not_empty\"],\"field_type\":\"text\",\"data_name\":\"tnt__hubspot_companies_domain_cfid\",\"db_name\":\"tnt__hubspot_companies_domain_cfid\",\"description\":\"The domain name of the company or organization\",\"is_filterable\":true,\"is_required\":false,\"name\":\"tnt__hubspot_companies_domain_cfid\",\"oasis\":{\"name\":\"tnt__hubspot_companies_domain_cfid\"},\"ui\":{\"display_name\":\"Hubspot Company Domain Name\",\"placeholder\":\"Add Hubspot Company Domain Name\"}},{\"field_type\":\"timestamp\",\"data_name\":\"tnt__hubspot_companies_first_contact_createdate_cfid\",\"db_name\":\"tnt__hubspot_companies_first_contact_createdate_cfid\",\"description\":\"The date that the first contact from this company entered the system, which could pre-date the company's create date\",\"is_filterable\":false,\"is_required\":false,\"name\":\"tnt__hubspot_companies_first_contact_createdate_cfid\",\"oasis\":{\"name\":\"tnt__hubspot_companies_first_contact_createdate_cfid\"},\"ui\":{\"display_name\":\"Hubspot First Contact Create Date\",\"placeholder\":\"Add Hubspot First Contact Create Date\"}},{\"field_type\":\"timestamp\",\"data_name\":\"tnt__hubspot_companies_first_deal_created_date_cfid\",\"db_name\":\"tnt__hubspot_companies_first_deal_created_date_cfid\",\"description\":\"Date the first deal was associated with this company record.\",\"is_filterable\":false,\"is_required\":false,\"name\":\"tnt__hubspot_companies_first_deal_created_date_cfid\",\"oasis\":{\"name\":\"tnt__hubspot_companies_first_deal_created_date_cfid\"},\"ui\":{\"display_name\":\"Hubspot First Deal Created Date\",\"placeholder\":\"Add Hubspot First Deal Created Date\"}},{\"field_type\":\"timestamp\",\"data_name\":\"tnt__hubspot_companies_hs_analytics_first_timestamp_cfid\",\"db_name\":\"tnt__hubspot_companies_hs_analytics_first_timestamp_cfid\",\"description\":\"The first activity for any contact associated with this company or organization\",\"is_filterable\":false,\"is_required\":false,\"name\":\"tnt__hubspot_companies_hs_analytics_first_timestamp_cfid\",\"oasis\":{\"name\":\"tnt__hubspot_companies_hs_analytics_first_timestamp_cfid\"},\"ui\":{\"display_name\":\"Hubspot Time First Seen\",\"placeholder\":\"Add Hubspot Time First Seen\"}},{\"supported_filter_ops\":[\"any\",\"not_any\",\"empty\",\"not_empty\"],\"field_type\":\"enum\",\"allowed_values\":[\"AI Referrals\",\"Direct Traffic\",\"Email Marketing\",\"Offline Sources\",\"Organic Search\",\"Organic Social\",\"Other Campaigns\",\"Paid Search\",\"Paid Social\",\"Referrals\"],\"data_name\":\"tnt__hubspot_companies_hs_analytics_latest_source_cfid\",\"db_name\":\"tnt__hubspot_companies_hs_analytics_latest_source_cfid\",\"description\":\"Source of the last session attributed to any contacts that are associated with this company\",\"is_filterable\":true,\"is_required\":false,\"name\":\"tnt__hubspot_companies_hs_analytics_latest_source_cfid\",\"oasis\":{\"name\":\"tnt__hubspot_companies_hs_analytics_latest_source_cfid\"},\"ui\":{\"display_name\":\"Hubspot Latest Traffic Source\",\"placeholder\":\"Add Hubspot Latest Traffic Source\"}},{\"supported_filter_ops\":[\"any\",\"not_any\",\"empty\",\"not_empty\"],\"field_type\":\"text\",\"data_name\":\"tnt__hubspot_companies_hs_analytics_latest_source_data_1_cfid\",\"db_name\":\"tnt__hubspot_companies_hs_analytics_latest_source_data_1_cfid\",\"description\":\"Additional source details of the last session attributed to any contacts that are associated with this company\",\"is_filterable\":true,\"is_required\":false,\"name\":\"tnt__hubspot_companies_hs_analytics_latest_source_data_1_cfid\",\"oasis\":{\"name\":\"tnt__hubspot_companies_hs_analytics_latest_source_data_1_cfid\"},\"ui\":{\"display_name\":\"Hubspot Latest Traffic Source Data 1\",\"placeholder\":\"Add Hubspot Latest Traffic Source Data 1\"}},{\"supported_filter_ops\":[\"any\",\"not_any\",\"empty\",\"not_empty\"],\"field_type\":\"text\",\"data_name\":\"tnt__hubspot_companies_hs_analytics_latest_source_data_2_cfid\",\"db_name\":\"tnt__hubspot_companies_hs_analytics_latest_source_data_2_cfid\",\"description\":\"Additional source details of the last session attributed to any contacts that are associated with this company\",\"is_filterable\":true,\"is_required\":false,\"name\":\"tnt__hubspot_companies_hs_analytics_latest_source_data_2_cfid\",\"oasis\":{\"name\":\"tnt__hubspot_companies_hs_analytics_latest_source_data_2_cfid\"},\"ui\":{\"display_name\":\"Hubspot Latest Traffic Source Data 2\",\"placeholder\":\"Add Hubspot Latest Traffic Source Data 2\"}},{\"field_type\":\"timestamp\",\"data_name\":\"tnt__hubspot_companies_hs_analytics_latest_source_timestamp_cfid\",\"db_name\":\"tnt__hubspot_companies_hs_analytics_latest_source_timestamp_cfid\",\"description\":\"Timestamp of when latest source occurred\",\"is_filterable\":false,\"is_required\":false,\"name\":\"tnt__hubspot_companies_hs_analytics_latest_source_timestamp_cfid\",\"oasis\":{\"name\":\"tnt__hubspot_companies_hs_analytics_latest_source_timestamp_cfid\"},\"ui\":{\"display_name\":\"Hubspot Latest Traffic Source Timestamp\",\"placeholder\":\"Add Hubspot Latest Traffic Source Timestamp\"}},{\"field_type\":\"double\",\"data_name\":\"tnt__hubspot_companies_hs_analytics_num_page_views_cfid\",\"db_name\":\"tnt__hubspot_companies_hs_analytics_num_page_views_cfid\",\"description\":\"Total number of page views across all contacts associated with this company or organization\",\"is_filterable\":false,\"is_required\":false,\"name\":\"tnt__hubspot_companies_hs_analytics_num_page_views_cfid\",\"oasis\":{\"name\":\"tnt__hubspot_companies_hs_analytics_num_page_views_cfid\"},\"ui\":{\"display_name\":\"Hubspot Number of Pageviews\",\"placeholder\":\"Add Hubspot Number of Pageviews\"}},{\"field_type\":\"double\",\"data_name\":\"tnt__hubspot_companies_hs_analytics_num_visits_cfid\",\"db_name\":\"tnt__hubspot_companies_hs_analytics_num_visits_cfid\",\"description\":\"Total number of sessions across all contacts associated with this company or organization\",\"is_filterable\":false,\"is_required\":false,\"name\":\"tnt__hubspot_companies_hs_analytics_num_visits_cfid\",\"oasis\":{\"name\":\"tnt__hubspot_companies_hs_analytics_num_visits_cfid\"},\"ui\":{\"display_name\":\"Hubspot Number of Sessions\",\"placeholder\":\"Add Hubspot Number of Sessions\"}},{\"supported_filter_ops\":[\"any\",\"not_any\",\"empty\",\"not_empty\"],\"field_type\":\"enum\",\"allowed_values\":[\"AI Referrals\",\"Direct Traffic\",\"Email Marketing\",\"Offline Sources\",\"Organic Search\",\"Organic Social\",\"Other Campaigns\",\"Paid Search\",\"Paid Social\",\"Referrals\"],\"data_name\":\"tnt__hubspot_companies_hs_analytics_source_cfid\",\"db_name\":\"tnt__hubspot_companies_hs_analytics_source_cfid\",\"description\":\"Original source for the contact with the earliest activity for this company or organization\",\"is_filterable\":true,\"is_required\":false,\"name\":\"tnt__hubspot_companies_hs_analytics_source_cfid\",\"oasis\":{\"name\":\"tnt__hubspot_companies_hs_analytics_source_cfid\"},\"ui\":{\"display_name\":\"Hubspot Original Traffic Source\",\"placeholder\":\"Add Hubspot Original Traffic Source\"}},{\"supported_filter_ops\":[\"any\",\"not_any\",\"empty\",\"not_empty\"],\"field_type\":\"text\",\"data_name\":\"tnt__hubspot_companies_hs_analytics_source_data_1_cfid\",\"db_name\":\"tnt__hubspot_companies_hs_analytics_source_data_1_cfid\",\"description\":\"Additional information about the original source for the contact with the earliest activity for this company or organization\",\"is_filterable\":true,\"is_required\":false,\"name\":\"tnt__hubspot_companies_hs_analytics_source_data_1_cfid\",\"oasis\":{\"name\":\"tnt__hubspot_companies_hs_analytics_source_data_1_cfid\"},\"ui\":{\"display_name\":\"Hubspot Original Traffic Source Drill-Down 1\",\"placeholder\":\"Add Hubspot Original Traffic Source Drill-Down 1\"}},{\"supported_filter_ops\":[\"any\",\"not_any\",\"empty\",\"not_empty\"],\"field_type\":\"text\",\"data_name\":\"tnt__hubspot_companies_hs_analytics_source_data_2_cfid\",\"db_name\":\"tnt__hubspot_companies_hs_analytics_source_data_2_cfid\",\"description\":\"Additional information about the original source for the contact with the earliest activity for this company or organization\",\"is_filterable\":true,\"is_required\":false,\"name\":\"tnt__hubspot_companies_hs_analytics_source_data_2_cfid\",\"oasis\":{\"name\":\"tnt__hubspot_companies_hs_analytics_source_data_2_cfid\"},\"ui\":{\"display_name\":\"Hubspot Original Traffic Source Drill-Down 2\",\"placeholder\":\"Add Hubspot Original Traffic Source Drill-Down 2\"}},{\"supported_filter_ops\":[\"any\",\"not_any\",\"empty\",\"not_empty\"],\"field_type\":\"text\",\"data_name\":\"tnt__hubspot_companies_hs_annual_revenue_currency_code_cfid\",\"db_name\":\"tnt__hubspot_companies_hs_annual_revenue_currency_code_cfid\",\"description\":\"The currency code associated with the annual revenue amount\",\"is_filterable\":true,\"is_required\":false,\"name\":\"tnt__hubspot_companies_hs_annual_revenue_currency_code_cfid\",\"oasis\":{\"name\":\"tnt__hubspot_companies_hs_annual_revenue_currency_code_cfid\"},\"ui\":{\"display_name\":\"Hubspot Annual Revenue Currency Code\",\"placeholder\":\"Add Hubspot Annual Revenue Currency Code\"}},{\"supported_filter_ops\":[\"any\",\"not_any\",\"empty\",\"not_empty\"],\"field_type\":\"enum\",\"allowed_values\":[\"82250651\"],\"data_name\":\"tnt__hubspot_companies_hs_created_by_user_id_cfid\",\"db_name\":\"tnt__hubspot_companies_hs_created_by_user_id_cfid\",\"description\":\"The user who created this record. This value is set automatically by HubSpot.\",\"is_filterable\":true,\"is_required\":false,\"name\":\"tnt__hubspot_companies_hs_created_by_user_id_cfid\",\"oasis\":{\"name\":\"tnt__hubspot_companies_hs_created_by_user_id_cfid\"},\"ui\":{\"display_name\":\"Hubspot Created by user ID\",\"placeholder\":\"Add Hubspot Created by user ID\"}},{\"field_type\":\"timestamp\",\"data_name\":\"tnt__hubspot_companies_hs_date_entered_customer_cfid\",\"db_name\":\"tnt__hubspot_companies_hs_date_entered_customer_cfid\",\"description\":\"The date and time when the company entered the 'Customer' stage, 'Lifecycle Stage Pipeline' pipeline\",\"is_filterable\":false,\"is_required\":false,\"name\":\"tnt__hubspot_companies_hs_date_entered_customer_cfid\",\"oasis\":{\"name\":\"tnt__hubspot_companies_hs_date_entered_customer_cfid\"},\"ui\":{\"display_name\":\"Hubspot Date entered 'Customer (Lifecycle Stage Pi\",\"placeholder\":\"Add Hubspot Date entered 'Customer (Lifecycle Stage Pi\"}},{\"field_type\":\"timestamp\",\"data_name\":\"tnt__hubspot_companies_hs_date_entered_lead_cfid\",\"db_name\":\"tnt__hubspot_companies_hs_date_entered_lead_cfid\",\"description\":\"The date and time when the company entered the 'Lead' stage, 'Lifecycle Stage Pipeline' pipeline\",\"is_filterable\":false,\"is_required\":false,\"name\":\"tnt__hubspot_companies_hs_date_entered_lead_cfid\",\"oasis\":{\"name\":\"tnt__hubspot_companies_hs_date_entered_lead_cfid\"},\"ui\":{\"display_name\":\"Hubspot Date entered 'Lead (Lifecycle Stage Pipeli\",\"placeholder\":\"Add Hubspot Date entered 'Lead (Lifecycle Stage Pipeli\"}},{\"field_type\":\"timestamp\",\"data_name\":\"tnt__hubspot_companies_hs_date_entered_opportunity_cfid\",\"db_name\":\"tnt__hubspot_companies_hs_date_entered_opportunity_cfid\",\"description\":\"The date and time when the company entered the 'Opportunity' stage, 'Lifecycle Stage Pipeline' pipeline\",\"is_filterable\":false,\"is_required\":false,\"name\":\"tnt__hubspot_companies_hs_date_entered_opportunity_cfid\",\"oasis\":{\"name\":\"tnt__hubspot_companies_hs_date_entered_opportunity_cfid\"},\"ui\":{\"display_name\":\"Hubspot Date entered 'Opportunity (Lifecycle Stage\",\"placeholder\":\"Add Hubspot Date entered 'Opportunity (Lifecycle Stage\"}},{\"field_type\":\"timestamp\",\"data_name\":\"tnt__hubspot_companies_hs_date_exited_lead_cfid\",\"db_name\":\"tnt__hubspot_companies_hs_date_exited_lead_cfid\",\"description\":\"The date and time when the company exited the 'Lead' stage, 'Lifecycle Stage Pipeline' pipeline\",\"is_filterable\":false,\"is_required\":false,\"name\":\"tnt__hubspot_companies_hs_date_exited_lead_cfid\",\"oasis\":{\"name\":\"tnt__hubspot_companies_hs_date_exited_lead_cfid\"},\"ui\":{\"display_name\":\"Hubspot Date exited 'Lead (Lifecycle Stage Pipelin\",\"placeholder\":\"Add Hubspot Date exited 'Lead (Lifecycle Stage Pipelin\"}},{\"field_type\":\"timestamp\",\"data_name\":\"tnt__hubspot_companies_hs_date_exited_opportunity_cfid\",\"db_name\":\"tnt__hubspot_companies_hs_date_exited_opportunity_cfid\",\"description\":\"The date and time when the company exited the 'Opportunity' stage, 'Lifecycle Stage Pipeline' pipeline\",\"is_filterable\":false,\"is_required\":false,\"name\":\"tnt__hubspot_companies_hs_date_exited_opportunity_cfid\",\"oasis\":{\"name\":\"tnt__hubspot_companies_hs_date_exited_opportunity_cfid\"},\"ui\":{\"display_name\":\"Hubspot Date exited 'Opportunity (Lifecycle Stage \",\"placeholder\":\"Add Hubspot Date exited 'Opportunity (Lifecycle Stage \"}},{\"supported_filter_ops\":[\"any\",\"not_any\",\"empty\",\"not_empty\"],\"field_type\":\"text\",\"data_name\":\"tnt__hubspot_companies_hs_industry_group_cfid\",\"db_name\":\"tnt__hubspot_companies_hs_industry_group_cfid\",\"description\":\"Second tier of company industry classification.\",\"is_filterable\":true,\"is_required\":false,\"name\":\"tnt__hubspot_companies_hs_industry_group_cfid\",\"oasis\":{\"name\":\"tnt__hubspot_companies_hs_industry_group_cfid\"},\"ui\":{\"display_name\":\"Hubspot Industry group\",\"placeholder\":\"Add Hubspot Industry group\"}},{\"supported_filter_ops\":[\"any\",\"not_any\",\"empty\",\"not_empty\"],\"field_type\":\"enum\",\"allowed_values\":[\"No\",\"Yes\"],\"data_name\":\"tnt__hubspot_companies_hs_is_enriched_cfid\",\"db_name\":\"tnt__hubspot_companies_hs_is_enriched_cfid\",\"description\":\"Indicates whether this object has ever had enriched properties written to it.\",\"is_filterable\":true,\"is_required\":false,\"name\":\"tnt__hubspot_companies_hs_is_enriched_cfid\",\"oasis\":{\"name\":\"tnt__hubspot_companies_hs_is_enriched_cfid\"},\"ui\":{\"display_name\":\"Hubspot Has been enriched\",\"placeholder\":\"Add Hubspot Has been enriched\"}},{\"field_type\":\"timestamp\",\"data_name\":\"tnt__hubspot_companies_hs_last_booked_meeting_date_cfid\",\"db_name\":\"tnt__hubspot_companies_hs_last_booked_meeting_date_cfid\",\"description\":\"The last date of booked meetings associated with the company\",\"is_filterable\":false,\"is_required\":false,\"name\":\"tnt__hubspot_companies_hs_last_booked_meeting_date_cfid\",\"oasis\":{\"name\":\"tnt__hubspot_companies_hs_last_booked_meeting_date_cfid\"},\"ui\":{\"display_name\":\"Hubspot Last Booked Meeting Date\",\"placeholder\":\"Add Hubspot Last Booked Meeting Date\"}},{\"field_type\":\"timestamp\",\"data_name\":\"tnt__hubspot_companies_hs_last_logged_call_date_cfid\",\"db_name\":\"tnt__hubspot_companies_hs_last_logged_call_date_cfid\",\"description\":\"The last date of logged calls associated with the company\",\"is_filterable\":false,\"is_required\":false,\"name\":\"tnt__hubspot_companies_hs_last_logged_call_date_cfid\",\"oasis\":{\"name\":\"tnt__hubspot_companies_hs_last_logged_call_date_cfid\"},\"ui\":{\"display_name\":\"Hubspot Last Logged Call Date\",\"placeholder\":\"Add Hubspot Last Logged Call Date\"}},{\"field_type\":\"timestamp\",\"data_name\":\"tnt__hubspot_companies_hs_last_logged_outgoing_email_date_cfid\",\"db_name\":\"tnt__hubspot_companies_hs_last_logged_outgoing_email_date_cfid\",\"description\":\"The last date of logged outgoing emails associated with the company\",\"is_filterable\":false,\"is_required\":false,\"name\":\"tnt__hubspot_companies_hs_last_logged_outgoing_email_date_cfid\",\"oasis\":{\"name\":\"tnt__hubspot_companies_hs_last_logged_outgoing_email_date_cfid\"},\"ui\":{\"display_name\":\"Hubspot Last Logged Outgoing Email Date\",\"placeholder\":\"Add Hubspot Last Logged Outgoing Email Date\"}},{\"field_type\":\"timestamp\",\"data_name\":\"tnt__hubspot_companies_hs_lastmodifieddate_cfid\",\"db_name\":\"tnt__hubspot_companies_hs_lastmodifieddate_cfid\",\"description\":\"Most recent timestamp of any property update for this company. This includes HubSpot internal properties, which can be visible or hidden. This property is updated automatically.\",\"is_filterable\":false,\"is_required\":false,\"name\":\"tnt__hubspot_companies_hs_lastmodifieddate_cfid\",\"oasis\":{\"name\":\"tnt__hubspot_companies_hs_lastmodifieddate_cfid\"},\"ui\":{\"display_name\":\"Hubspot Last Modified Date\",\"placeholder\":\"Add Hubspot Last Modified Date\"}},{\"field_type\":\"timestamp\",\"data_name\":\"tnt__hubspot_companies_hs_latest_meeting_activity_cfid\",\"db_name\":\"tnt__hubspot_companies_hs_latest_meeting_activity_cfid\",\"description\":\"The date of the most recent meeting (past or upcoming) logged for, scheduled with, or booked by a contact associated with this company.\",\"is_filterable\":false,\"is_required\":false,\"name\":\"tnt__hubspot_companies_hs_latest_meeting_activity_cfid\",\"oasis\":{\"name\":\"tnt__hubspot_companies_hs_latest_meeting_activity_cfid\"},\"ui\":{\"display_name\":\"Hubspot Latest meeting activity\",\"placeholder\":\"Add Hubspot Latest meeting activity\"}},{\"supported_filter_ops\":[\"any\",\"not_any\",\"empty\",\"not_empty\"],\"field_type\":\"text\",\"data_name\":\"tnt__hubspot_companies_hs_logo_url_cfid\",\"db_name\":\"tnt__hubspot_companies_hs_logo_url_cfid\",\"description\":\"URL of the company logo\",\"is_filterable\":true,\"is_required\":false,\"name\":\"tnt__hubspot_companies_hs_logo_url_cfid\",\"oasis\":{\"name\":\"tnt__hubspot_companies_hs_logo_url_cfid\"},\"ui\":{\"display_name\":\"Hubspot Logo URL\",\"placeholder\":\"Add Hubspot Logo URL\"}},{\"supported_filter_ops\":[\"any\",\"not_any\",\"empty\",\"not_empty\"],\"field_type\":\"text\",\"data_name\":\"tnt__hubspot_companies_hs_notes_last_activity_cfid\",\"db_name\":\"tnt__hubspot_companies_hs_notes_last_activity_cfid\",\"description\":\"The coordinates of the last activity for a company. This is set automatically by HubSpot based on user actions in the company record.\",\"is_filterable\":true,\"is_required\":false,\"name\":\"tnt__hubspot_companies_hs_notes_last_activity_cfid\",\"oasis\":{\"name\":\"tnt__hubspot_companies_hs_notes_last_activity_cfid\"},\"ui\":{\"display_name\":\"Hubspot Last Activity\",\"placeholder\":\"Add Hubspot Last Activity\"}},{\"supported_filter_ops\":[\"any\",\"not_any\",\"empty\",\"not_empty\"],\"field_type\":\"text\",\"data_name\":\"tnt__hubspot_companies_hs_notes_next_activity_cfid\",\"db_name\":\"tnt__hubspot_companies_hs_notes_next_activity_cfid\",\"description\":\"The coordinates of the next upcoming activity for a company. This is set automatically by HubSpot based on user actions in the company record.\",\"is_filterable\":true,\"is_required\":false,\"name\":\"tnt__hubspot_companies_hs_notes_next_activity_cfid\",\"oasis\":{\"name\":\"tnt__hubspot_companies_hs_notes_next_activity_cfid\"},\"ui\":{\"display_name\":\"Hubspot Next Activity\",\"placeholder\":\"Add Hubspot Next Activity\"}},{\"supported_filter_ops\":[\"any\",\"not_any\",\"empty\",\"not_empty\"],\"field_type\":\"enum\",\"allowed_values\":[\"Call\",\"Conversation session\",\"Email reply from contact\",\"Email sent to contact\",\"Forwarded email\",\"LinkedIn message\",\"Meeting\",\"Note\",\"Postal mail\",\"Publishing task\",\"SMS\",\"Task\",\"WhatsApp\"],\"data_name\":\"tnt__hubspot_companies_hs_notes_next_activity_type_cfid\",\"db_name\":\"tnt__hubspot_companies_hs_notes_next_activity_type_cfid\",\"description\":\"The type of the next upcoming scheduled sales activity for this company record.\",\"is_filterable\":true,\"is_required\":false,\"name\":\"tnt__hubspot_companies_hs_notes_next_activity_type_cfid\",\"oasis\":{\"name\":\"tnt__hubspot_companies_hs_notes_next_activity_type_cfid\"},\"ui\":{\"display_name\":\"Hubspot Next Activity Type\",\"placeholder\":\"Add Hubspot Next Activity Type\"}},{\"field_type\":\"double\",\"data_name\":\"tnt__hubspot_companies_hs_num_blockers_cfid\",\"db_name\":\"tnt__hubspot_companies_hs_num_blockers_cfid\",\"description\":\"The number of contacts associated with this company with the role of blocker.\",\"is_filterable\":false,\"is_required\":false,\"name\":\"tnt__hubspot_companies_hs_num_blockers_cfid\",\"oasis\":{\"name\":\"tnt__hubspot_companies_hs_num_blockers_cfid\"},\"ui\":{\"display_name\":\"Hubspot Number of blockers\",\"placeholder\":\"Add Hubspot Number of blockers\"}},{\"field_type\":\"double\",\"data_name\":\"tnt__hubspot_companies_hs_num_child_companies_cfid\",\"db_name\":\"tnt__hubspot_companies_hs_num_child_companies_cfid\",\"description\":\"The number of child companies of this company\",\"is_filterable\":false,\"is_required\":false,\"name\":\"tnt__hubspot_companies_hs_num_child_companies_cfid\",\"oasis\":{\"name\":\"tnt__hubspot_companies_hs_num_child_companies_cfid\"},\"ui\":{\"display_name\":\"Hubspot Number of child companies\",\"placeholder\":\"Add Hubspot Number of child companies\"}},{\"field_type\":\"double\",\"data_name\":\"tnt__hubspot_companies_hs_num_contacts_with_buying_roles_cfid\",\"db_name\":\"tnt__hubspot_companies_hs_num_contacts_with_buying_roles_cfid\",\"description\":\"The number of contacts associated with this company with a buying role.\",\"is_filterable\":false,\"is_required\":false,\"name\":\"tnt__hubspot_companies_hs_num_contacts_with_buying_roles_cfid\",\"oasis\":{\"name\":\"tnt__hubspot_companies_hs_num_contacts_with_buying_roles_cfid\"},\"ui\":{\"display_name\":\"Hubspot Number of contacts with a buying role\",\"placeholder\":\"Add Hubspot Number of contacts with a buying role\"}},{\"field_type\":\"double\",\"data_name\":\"tnt__hubspot_companies_hs_num_decision_makers_cfid\",\"db_name\":\"tnt__hubspot_companies_hs_num_decision_makers_cfid\",\"description\":\"The number of contacts associated with this company with the role of decision maker.\",\"is_filterable\":false,\"is_required\":false,\"name\":\"tnt__hubspot_companies_hs_num_decision_makers_cfid\",\"oasis\":{\"name\":\"tnt__hubspot_companies_hs_num_decision_makers_cfid\"},\"ui\":{\"display_name\":\"Hubspot Number of decision makers\",\"placeholder\":\"Add Hubspot Number of decision makers\"}},{\"field_type\":\"double\",\"data_name\":\"tnt__hubspot_companies_hs_num_open_deals_cfid\",\"db_name\":\"tnt__hubspot_companies_hs_num_open_deals_cfid\",\"description\":\"The number of open deals associated with this company.\",\"is_filterable\":false,\"is_required\":false,\"name\":\"tnt__hubspot_companies_hs_num_open_deals_cfid\",\"oasis\":{\"name\":\"tnt__hubspot_companies_hs_num_open_deals_cfid\"},\"ui\":{\"display_name\":\"Hubspot Number of open deals\",\"placeholder\":\"Add Hubspot Number of open deals\"}},{\"field_type\":\"double\",\"data_name\":\"tnt__hubspot_companies_hs_object_id_cfid\",\"db_name\":\"tnt__hubspot_companies_hs_object_id_cfid\",\"description\":\"The unique ID for this record. This value is set automatically by HubSpot.\",\"is_filterable\":false,\"is_required\":false,\"name\":\"tnt__hubspot_companies_hs_object_id_cfid\",\"oasis\":{\"name\":\"tnt__hubspot_companies_hs_object_id_cfid\"},\"ui\":{\"display_name\":\"Hubspot Record ID\",\"placeholder\":\"Add Hubspot Record ID\"}},{\"supported_filter_ops\":[\"any\",\"not_any\",\"empty\",\"not_empty\"],\"field_type\":\"text\",\"data_name\":\"tnt__hubspot_companies_hs_object_source_cfid\",\"db_name\":\"tnt__hubspot_companies_hs_object_source_cfid\",\"description\":\"Raw internal PropertySource present in the RequestMeta when this record was created.\",\"is_filterable\":true,\"is_required\":false,\"name\":\"tnt__hubspot_companies_hs_object_source_cfid\",\"oasis\":{\"name\":\"tnt__hubspot_companies_hs_object_source_cfid\"},\"ui\":{\"display_name\":\"Hubspot Record creation source\",\"placeholder\":\"Add Hubspot Record creation source\"}},{\"supported_filter_ops\":[\"any\",\"not_any\",\"empty\",\"not_empty\"],\"field_type\":\"text\",\"data_name\":\"tnt__hubspot_companies_hs_object_source_detail_1_cfid\",\"db_name\":\"tnt__hubspot_companies_hs_object_source_detail_1_cfid\",\"description\":\"First level of detail on how this record was created.\",\"is_filterable\":true,\"is_required\":false,\"name\":\"tnt__hubspot_companies_hs_object_source_detail_1_cfid\",\"oasis\":{\"name\":\"tnt__hubspot_companies_hs_object_source_detail_1_cfid\"},\"ui\":{\"display_name\":\"Hubspot Record source detail 1\",\"placeholder\":\"Add Hubspot Record source detail 1\"}},{\"supported_filter_ops\":[\"any\",\"not_any\",\"empty\",\"not_empty\"],\"field_type\":\"text\",\"data_name\":\"tnt__hubspot_companies_hs_object_source_id_cfid\",\"db_name\":\"tnt__hubspot_companies_hs_object_source_id_cfid\",\"description\":\"Raw internal sourceId present in the RequestMeta when this record was created.\",\"is_filterable\":true,\"is_required\":false,\"name\":\"tnt__hubspot_companies_hs_object_source_id_cfid\",\"oasis\":{\"name\":\"tnt__hubspot_companies_hs_object_source_id_cfid\"},\"ui\":{\"display_name\":\"Hubspot Record creation source ID\",\"placeholder\":\"Add Hubspot Record creation source ID\"}},{\"supported_filter_ops\":[\"any\",\"not_any\",\"empty\",\"not_empty\"],\"field_type\":\"enum\",\"allowed_values\":[\"CRM_SETTING\",\"IMPORT\"],\"data_name\":\"tnt__hubspot_companies_hs_object_source_label_cfid\",\"db_name\":\"tnt__hubspot_companies_hs_object_source_label_cfid\",\"description\":\"How this record was created.\",\"is_filterable\":true,\"is_required\":false,\"name\":\"tnt__hubspot_companies_hs_object_source_label_cfid\",\"oasis\":{\"name\":\"tnt__hubspot_companies_hs_object_source_label_cfid\"},\"ui\":{\"display_name\":\"Hubspot Record source\",\"placeholder\":\"Add Hubspot Record source\"}},{\"field_type\":\"double\",\"data_name\":\"tnt__hubspot_companies_hs_object_source_user_id_cfid\",\"db_name\":\"tnt__hubspot_companies_hs_object_source_user_id_cfid\",\"description\":\"Raw internal userId present in the RequestMeta when this record was created.\",\"is_filterable\":false,\"is_required\":false,\"name\":\"tnt__hubspot_companies_hs_object_source_user_id_cfid\",\"oasis\":{\"name\":\"tnt__hubspot_companies_hs_object_source_user_id_cfid\"},\"ui\":{\"display_name\":\"Hubspot Record creation source user ID\",\"placeholder\":\"Add Hubspot Record creation source user ID\"}},{\"supported_filter_ops\":[\"any\",\"not_any\",\"empty\",\"not_empty\"],\"field_type\":\"enum\",\"allowed_values\":[\"companies-lifecycle-pipeline\"],\"data_name\":\"tnt__hubspot_companies_hs_pipeline_cfid\",\"db_name\":\"tnt__hubspot_companies_hs_pipeline_cfid\",\"description\":\"The pipeline with which this company is currently associated\",\"is_filterable\":true,\"is_required\":false,\"name\":\"tnt__hubspot_companies_hs_pipeline_cfid\",\"oasis\":{\"name\":\"tnt__hubspot_companies_hs_pipeline_cfid\"},\"ui\":{\"display_name\":\"Hubspot Pipeline\",\"placeholder\":\"Add Hubspot Pipeline\"}},{\"field_type\":\"double\",\"data_name\":\"tnt__hubspot_companies_hs_target_account_probability_cfid\",\"db_name\":\"tnt__hubspot_companies_hs_target_account_probability_cfid\",\"description\":\"The probability a company is marked as a target account\",\"is_filterable\":false,\"is_required\":false,\"name\":\"tnt__hubspot_companies_hs_target_account_probability_cfid\",\"oasis\":{\"name\":\"tnt__hubspot_companies_hs_target_account_probability_cfid\"},\"ui\":{\"display_name\":\"Hubspot Target Account Probability\",\"placeholder\":\"Add Hubspot Target Account Probability\"}},{\"supported_filter_ops\":[\"any\",\"not_any\",\"empty\",\"not_empty\"],\"field_type\":\"text\",\"data_name\":\"tnt__hubspot_companies_hs_task_label_cfid\",\"db_name\":\"tnt__hubspot_companies_hs_task_label_cfid\",\"description\":\"A company name, fall back to its domain\",\"is_filterable\":true,\"is_required\":false,\"name\":\"tnt__hubspot_companies_hs_task_label_cfid\",\"oasis\":{\"name\":\"tnt__hubspot_companies_hs_task_label_cfid\"},\"ui\":{\"display_name\":\"Hubspot Company task label\",\"placeholder\":\"Add Hubspot Company task label\"}},{\"field_type\":\"double\",\"data_name\":\"tnt__hubspot_companies_hs_time_in_customer_cfid\",\"db_name\":\"tnt__hubspot_companies_hs_time_in_customer_cfid\",\"description\":\"The total time in seconds spent by the company in the 'Customer' stage, 'Lifecycle Stage Pipeline' pipeline\",\"is_filterable\":false,\"is_required\":false,\"name\":\"tnt__hubspot_companies_hs_time_in_customer_cfid\",\"oasis\":{\"name\":\"tnt__hubspot_companies_hs_time_in_customer_cfid\"},\"ui\":{\"display_name\":\"Hubspot Time in 'Customer (Lifecycle Stage Pipelin\",\"placeholder\":\"Add Hubspot Time in 'Customer (Lifecycle Stage Pipelin\"}},{\"field_type\":\"double\",\"data_name\":\"tnt__hubspot_companies_hs_time_in_lead_cfid\",\"db_name\":\"tnt__hubspot_companies_hs_time_in_lead_cfid\",\"description\":\"The total time in seconds spent by the company in the 'Lead' stage, 'Lifecycle Stage Pipeline' pipeline\",\"is_filterable\":false,\"is_required\":false,\"name\":\"tnt__hubspot_companies_hs_time_in_lead_cfid\",\"oasis\":{\"name\":\"tnt__hubspot_companies_hs_time_in_lead_cfid\"},\"ui\":{\"display_name\":\"Hubspot Time in 'Lead (Lifecycle Stage Pipeline)'\",\"placeholder\":\"Add Hubspot Time in 'Lead (Lifecycle Stage Pipeline)'\"}},{\"field_type\":\"double\",\"data_name\":\"tnt__hubspot_companies_hs_time_in_opportunity_cfid\",\"db_name\":\"tnt__hubspot_companies_hs_time_in_opportunity_cfid\",\"description\":\"The total time in seconds spent by the company in the 'Opportunity' stage, 'Lifecycle Stage Pipeline' pipeline\",\"is_filterable\":false,\"is_required\":false,\"name\":\"tnt__hubspot_companies_hs_time_in_opportunity_cfid\",\"oasis\":{\"name\":\"tnt__hubspot_companies_hs_time_in_opportunity_cfid\"},\"ui\":{\"display_name\":\"Hubspot Time in 'Opportunity (Lifecycle Stage Pipe\",\"placeholder\":\"Add Hubspot Time in 'Opportunity (Lifecycle Stage Pipe\"}},{\"supported_filter_ops\":[\"any\",\"not_any\",\"empty\",\"not_empty\"],\"field_type\":\"text\",\"data_name\":\"tnt__hubspot_companies_hs_unique_creation_key_cfid\",\"db_name\":\"tnt__hubspot_companies_hs_unique_creation_key_cfid\",\"description\":\"Unique property used for idempotent creates\",\"is_filterable\":true,\"is_required\":false,\"name\":\"tnt__hubspot_companies_hs_unique_creation_key_cfid\",\"oasis\":{\"name\":\"tnt__hubspot_companies_hs_unique_creation_key_cfid\"},\"ui\":{\"display_name\":\"Hubspot Unique creation key\",\"placeholder\":\"Add Hubspot Unique creation key\"}},{\"supported_filter_ops\":[\"any\",\"not_any\",\"empty\",\"not_empty\"],\"field_type\":\"enum\",\"allowed_values\":[\"82250651\"],\"data_name\":\"tnt__hubspot_companies_hs_updated_by_user_id_cfid\",\"db_name\":\"tnt__hubspot_companies_hs_updated_by_user_id_cfid\",\"description\":\"The user who last updated this record. This value is set automatically by HubSpot.\",\"is_filterable\":true,\"is_required\":false,\"name\":\"tnt__hubspot_companies_hs_updated_by_user_id_cfid\",\"oasis\":{\"name\":\"tnt__hubspot_companies_hs_updated_by_user_id_cfid\"},\"ui\":{\"display_name\":\"Hubspot Updated by user ID\",\"placeholder\":\"Add Hubspot Updated by user ID\"}},{\"supported_filter_ops\":[\"any\",\"not_any\",\"empty\",\"not_empty\"],\"field_type\":\"enum\",\"allowed_values\":[\"False\",\"True\"],\"data_name\":\"tnt__hubspot_companies_hs_was_imported_cfid\",\"db_name\":\"tnt__hubspot_companies_hs_was_imported_cfid\",\"description\":\"Object is part of an import\",\"is_filterable\":true,\"is_required\":false,\"name\":\"tnt__hubspot_companies_hs_was_imported_cfid\",\"oasis\":{\"name\":\"tnt__hubspot_companies_hs_was_imported_cfid\"},\"ui\":{\"display_name\":\"Hubspot Performed in an import\",\"placeholder\":\"Add Hubspot Performed in an import\"}},{\"supported_filter_ops\":[\"any\",\"not_any\",\"empty\",\"not_empty\"],\"field_type\":\"enum\",\"allowed_values\":[\"Customer\",\"Evangelist\",\"Lead\",\"Marketing Qualified Lead\",\"Opportunity\",\"Other\",\"Sales Qualified Lead\",\"Subscriber\"],\"data_name\":\"tnt__hubspot_companies_lifecyclestage_cfid\",\"db_name\":\"tnt__hubspot_companies_lifecyclestage_cfid\",\"description\":\"The qualification of companies to sales readiness throughout the buying journey\",\"is_filterable\":true,\"is_required\":false,\"name\":\"tnt__hubspot_companies_lifecyclestage_cfid\",\"oasis\":{\"name\":\"tnt__hubspot_companies_lifecyclestage_cfid\"},\"ui\":{\"display_name\":\"Hubspot Lifecycle Stage\",\"placeholder\":\"Add Hubspot Lifecycle Stage\"}},{\"supported_filter_ops\":[\"any\",\"not_any\",\"empty\",\"not_empty\"],\"field_type\":\"text\",\"data_name\":\"tnt__hubspot_companies_membership_tier_cfid\",\"db_name\":\"tnt__hubspot_companies_membership_tier_cfid\",\"description\":\"\",\"is_filterable\":true,\"is_required\":false,\"name\":\"tnt__hubspot_companies_membership_tier_cfid\",\"oasis\":{\"name\":\"tnt__hubspot_companies_membership_tier_cfid\"},\"ui\":{\"display_name\":\"Hubspot membership_tier\",\"placeholder\":\"Add Hubspot membership_tier\"}},{\"supported_filter_ops\":[\"any\",\"not_any\",\"empty\",\"not_empty\"],\"field_type\":\"text\",\"data_name\":\"tnt__hubspot_companies_name_cfid\",\"db_name\":\"tnt__hubspot_companies_name_cfid\",\"description\":\"The name of the company or organization.\",\"is_filterable\":true,\"is_required\":false,\"name\":\"tnt__hubspot_companies_name_cfid\",\"oasis\":{\"name\":\"tnt__hubspot_companies_name_cfid\"},\"ui\":{\"display_name\":\"Hubspot Company name\",\"placeholder\":\"Add Hubspot Company name\"}},{\"field_type\":\"timestamp\",\"data_name\":\"tnt__hubspot_companies_notes_last_contacted_cfid\",\"db_name\":\"tnt__hubspot_companies_notes_last_contacted_cfid\",\"description\":\"The last time a call, chat conversation, LinkedIn message, postal mail, meeting, sales email, SMS, or WhatsApp message was logged for a company. This is set automatically by HubSpot based on user actions in the company record.\",\"is_filterable\":false,\"is_required\":false,\"name\":\"tnt__hubspot_companies_notes_last_contacted_cfid\",\"oasis\":{\"name\":\"tnt__hubspot_companies_notes_last_contacted_cfid\"},\"ui\":{\"display_name\":\"Hubspot Last Contacted\",\"placeholder\":\"Add Hubspot Last Contacted\"}},{\"field_type\":\"timestamp\",\"data_name\":\"tnt__hubspot_companies_notes_last_updated_cfid\",\"db_name\":\"tnt__hubspot_companies_notes_last_updated_cfid\",\"description\":\"The last time a call, chat conversation, LinkedIn message, postal mail, meeting, note, sales email, SMS, or WhatsApp message was logged for a company. This is set automatically by HubSpot based on user actions in the company record.\",\"is_filterable\":false,\"is_required\":false,\"name\":\"tnt__hubspot_companies_notes_last_updated_cfid\",\"oasis\":{\"name\":\"tnt__hubspot_companies_notes_last_updated_cfid\"},\"ui\":{\"display_name\":\"Hubspot Last Activity Date\",\"placeholder\":\"Add Hubspot Last Activity Date\"}},{\"field_type\":\"timestamp\",\"data_name\":\"tnt__hubspot_companies_notes_next_activity_date_cfid\",\"db_name\":\"tnt__hubspot_companies_notes_next_activity_date_cfid\",\"description\":\"Date of the next upcoming scheduled sales activity for this company record.\",\"is_filterable\":false,\"is_required\":false,\"name\":\"tnt__hubspot_companies_notes_next_activity_date_cfid\",\"oasis\":{\"name\":\"tnt__hubspot_companies_notes_next_activity_date_cfid\"},\"ui\":{\"display_name\":\"Hubspot Next Activity Date\",\"placeholder\":\"Add Hubspot Next Activity Date\"}},{\"field_type\":\"double\",\"data_name\":\"tnt__hubspot_companies_num_associated_contacts_cfid\",\"db_name\":\"tnt__hubspot_companies_num_associated_contacts_cfid\",\"description\":\"The number of contacts associated with this company\",\"is_filterable\":false,\"is_required\":false,\"name\":\"tnt__hubspot_companies_num_associated_contacts_cfid\",\"oasis\":{\"name\":\"tnt__hubspot_companies_num_associated_contacts_cfid\"},\"ui\":{\"display_name\":\"Hubspot Number of Associated Contacts\",\"placeholder\":\"Add Hubspot Number of Associated Contacts\"}},{\"field_type\":\"double\",\"data_name\":\"tnt__hubspot_companies_num_associated_deals_cfid\",\"db_name\":\"tnt__hubspot_companies_num_associated_deals_cfid\",\"description\":\"The number of deals associated with this company\",\"is_filterable\":false,\"is_required\":false,\"name\":\"tnt__hubspot_companies_num_associated_deals_cfid\",\"oasis\":{\"name\":\"tnt__hubspot_companies_num_associated_deals_cfid\"},\"ui\":{\"display_name\":\"Hubspot Number of Associated Deals\",\"placeholder\":\"Add Hubspot Number of Associated Deals\"}},{\"field_type\":\"double\",\"data_name\":\"tnt__hubspot_companies_num_contacted_notes_cfid\",\"db_name\":\"tnt__hubspot_companies_num_contacted_notes_cfid\",\"description\":\"The number of times a call, chat conversation, LinkedIn message, postal mail, meeting, sales email, SMS, or WhatsApp message was logged for a company record. This is set automatically by HubSpot based on user actions in the company record.\",\"is_filterable\":false,\"is_required\":false,\"name\":\"tnt__hubspot_companies_num_contacted_notes_cfid\",\"oasis\":{\"name\":\"tnt__hubspot_companies_num_contacted_notes_cfid\"},\"ui\":{\"display_name\":\"Hubspot Number of times contacted\",\"placeholder\":\"Add Hubspot Number of times contacted\"}},{\"field_type\":\"double\",\"data_name\":\"tnt__hubspot_companies_num_conversion_events_cfid\",\"db_name\":\"tnt__hubspot_companies_num_conversion_events_cfid\",\"description\":\"The number of form submissions for all contacts which have this company as their Primary company.\",\"is_filterable\":false,\"is_required\":false,\"name\":\"tnt__hubspot_companies_num_conversion_events_cfid\",\"oasis\":{\"name\":\"tnt__hubspot_companies_num_conversion_events_cfid\"},\"ui\":{\"display_name\":\"Hubspot Number of Form Submissions\",\"placeholder\":\"Add Hubspot Number of Form Submissions\"}},{\"field_type\":\"double\",\"data_name\":\"tnt__hubspot_companies_num_notes_cfid\",\"db_name\":\"tnt__hubspot_companies_num_notes_cfid\",\"description\":\"The number of times a call, chat conversation, LinkedIn message, postal mail, meeting, note, sales email, SMS, task, or WhatsApp message was logged for a company record. This is set automatically by HubSpot based on user actions in the company record.\",\"is_filterable\":false,\"is_required\":false,\"name\":\"tnt__hubspot_companies_num_notes_cfid\",\"oasis\":{\"name\":\"tnt__hubspot_companies_num_notes_cfid\"},\"ui\":{\"display_name\":\"Hubspot Number of Sales Activities\",\"placeholder\":\"Add Hubspot Number of Sales Activities\"}},{\"field_type\":\"double\",\"data_name\":\"tnt__hubspot_companies_recent_deal_amount_cfid\",\"db_name\":\"tnt__hubspot_companies_recent_deal_amount_cfid\",\"description\":\"Amount of last closed won deal associated with this company. Set automatically.\",\"is_filterable\":false,\"is_required\":false,\"name\":\"tnt__hubspot_companies_recent_deal_amount_cfid\",\"oasis\":{\"name\":\"tnt__hubspot_companies_recent_deal_amount_cfid\"},\"ui\":{\"display_name\":\"Hubspot Recent Deal Amount\",\"placeholder\":\"Add Hubspot Recent Deal Amount\"}},{\"field_type\":\"timestamp\",\"data_name\":\"tnt__hubspot_companies_recent_deal_close_date_cfid\",\"db_name\":\"tnt__hubspot_companies_recent_deal_close_date_cfid\",\"description\":\"Date of the last \\\"closed won\\\" deal associated with this company record.\",\"is_filterable\":false,\"is_required\":false,\"name\":\"tnt__hubspot_companies_recent_deal_close_date_cfid\",\"oasis\":{\"name\":\"tnt__hubspot_companies_recent_deal_close_date_cfid\"},\"ui\":{\"display_name\":\"Hubspot Recent Deal Close Date\",\"placeholder\":\"Add Hubspot Recent Deal Close Date\"}},{\"field_type\":\"double\",\"data_name\":\"tnt__hubspot_companies_total_revenue_cfid\",\"db_name\":\"tnt__hubspot_companies_total_revenue_cfid\",\"description\":\"The total amount of closed won deals\",\"is_filterable\":false,\"is_required\":false,\"name\":\"tnt__hubspot_companies_total_revenue_cfid\",\"oasis\":{\"name\":\"tnt__hubspot_companies_total_revenue_cfid\"},\"ui\":{\"display_name\":\"Hubspot Total Revenue\",\"placeholder\":\"Add Hubspot Total Revenue\"}},{\"supported_filter_ops\":[\"any\",\"not_any\",\"empty\",\"not_empty\"],\"field_type\":\"text\",\"data_name\":\"tnt__hubspot_companies_website_cfid\",\"db_name\":\"tnt__hubspot_companies_website_cfid\",\"description\":\"The main website of the company or organization. This property is used to identify unique companies.\",\"is_filterable\":true,\"is_required\":false,\"name\":\"tnt__hubspot_companies_website_cfid\",\"oasis\":{\"name\":\"tnt__hubspot_companies_website_cfid\"},\"ui\":{\"display_name\":\"Hubspot Website URL\",\"placeholder\":\"Add Hubspot Website URL\"}},{\"supported_filter_ops\":[\"all\",\"any\",\"not_any\",\"empty\",\"not_empty\"],\"field_type\":\"array\",\"base_type\":\"enum\",\"allowed_values\":[\"Accounting Services\",\"Advertising & Marketing\",\"Aerospace & Defense\",\"Agriculture\",\"Airlines, Airports & Air Services\",\"Ambulance Services\",\"Amusement Parks, Arcades & Attractions\",\"Animals & Livestock\",\"Apparel & Accessories Retail\",\"Appliances\",\"Architecture, Engineering & Design\",\"Auctions\",\"Automobile Dealers\",\"Automobile Parts Stores\",\"Automotive Parts\",\"Automotive Service & Collision Repair\",\"Banking\",\"Barber Shops & Beauty Salons\",\"Blood & Organ Banks\",\"Boats & Submarines\",\"Broadcasting\",\"Building Materials\",\"Business Intelligence (BI) Software\",\"Business Services\",\"Cable & Satellite\",\"Call Centers & Business Centers\",\"Car & Truck Rental\",\"Chambers of Commerce\",\"Chemicals & Related Products\",\"Childcare\",\"Civil Engineering Construction\",\"Cleaning Products\",\"Cleaning Services\",\"Colleges & Universities\",\"Commercial & Residential Construction\",\"Commercial Printing\",\"Computer Equipment & Peripherals\",\"Construction\",\"Consumer Electronics & Computers Retail\",\"Consumer Services\",\"Content & Collaboration Software\",\"Convenience Stores, Gas Stations & Liquor Stores\",\"Cosmetics, Beauty Supply & Personal Care Products\",\"Credit Cards & Transaction Processing\",\"Crops\",\"Cultural & Informational Centers\",\"Custom Software & IT Services\",\"Customer Relationship Management (CRM) Software\",\"Data Collection & Internet Portals\",\"Database & File Management Software\",\"Debt Collection\",\"Dental Offices\",\"Department Stores, Shopping Centers & Superstores\",\"Drug Stores & Pharmacies\",\"Education\",\"Elderly Care Services\",\"Electricity, Oil & Gas\",\"Electronics\",\"Energy, Utilities & Waste\",\"Engineering Software\",\"Enterprise Resource Planning (ERP) Software\",\"Facilities Management & Commercial Cleaning\",\"Federal\",\"Finance\",\"Financial Software\",\"Fitness & Dance Facilities\",\"Flowers, Gifts & Specialty Stores\",\"Food & Beverage\",\"Food Service\",\"Forestry\",\"Freight & Logistics Services\",\"Funeral Homes & Funeral Related Services\",\"Furniture\",\"Furniture\",\"Gambling & Gaming\",\"Glass & Clay\",\"Government\",\"Grocery Retail\",\"HR & Staffing\",\"Hand, Power & Lawn-care Tools\",\"Health & Nutrition Products\",\"Healthcare Services\",\"Healthcare Software\",\"Holding Companies & Conglomerates\",\"Home Improvement & Hardware Retail\",\"Hospitality\",\"Hospitals & Physicians Clinics\",\"Household Goods\",\"Human Resources Software\",\"Industrial Machinery & Equipment\",\"Information & Document Management\",\"Insurance\",\"Internet Service Providers, Website Hosting & Internet-related Services\",\"Investment Banking\",\"Jewelry & Watch Retail\",\"K-12 Schools\",\"Landscape Services\",\"Law Firms & Legal Services\",\"Legal Software\",\"Lending & Brokerage\",\"Libraries\",\"Local\",\"Lodging & Resorts\",\"Management Consulting\",\"Manufacturing\",\"Marine Shipping & Transportation\",\"Media & Internet\",\"Medical & Surgical Hospitals\",\"Medical Devices & Equipment\",\"Medical Laboratories & Imaging Centers\",\"Medical Specialists\",\"Membership Organizations\",\"Mental Health & Rehabilitation Facilities\",\"Minerals & Mining\",\"Mobile App Development\",\"Motor Vehicles\",\"Movie Theaters\",\"Multimedia & Graphic Design\",\"Multimedia, Games & Graphics Software\",\"Museums & Art Galleries\",\"Music Production & Services\",\"Networking Software\",\"Newspapers & News Services\",\"Non-Profit & Charitable Organizations\",\"Office Products Retail & Distribution\",\"Oil & Gas Exploration & Services\",\"Organizations\",\"Other Rental Stores (Furniture, A/V, Construction & Industrial Equipment)\",\"Performing Arts Theaters\",\"Pet Products\",\"Pet Products\",\"Pharmaceuticals\",\"Photographic & Optical Equipment\",\"Photography Studio\",\"Physicians Clinics\",\"Plastic, Packaging & Containers\",\"Publishing\",\"Pulp & Paper\",\"Rail, Bus & Taxi\",\"Real Estate\",\"Record, Video & Book Stores\",\"Religious Organizations\",\"Repair Services\",\"Research & Development\",\"Restaurants\",\"Retail\",\"Security Products & Services\",\"Security Software\",\"Social Networks\",\"Software\",\"Sporting & Recreational Equipment Retail\",\"Sporting Goods\",\"Sports Teams & Leagues\",\"State\",\"Storage & System Management Software\",\"Supply Chain Management (SCM) Software\",\"Telecommunication Equipment\",\"Telecommunications\",\"Telephony & Wireless\",\"Test & Measurement Equipment\",\"Textiles & Apparel\",\"Ticket Sales\",\"Tires & Rubber\",\"Toys & Games\",\"Toys & Games\",\"Training\",\"Translation & Linguistic Services\",\"Transportation\",\"Travel Agencies & Services\",\"Tribal Nations\",\"Trucking, Moving & Storage\",\"Venture Capital & Private Equity\",\"Veterinary Services\",\"Vitamins, Supplements & Health Stores\",\"Waste Treatment, Environmental Services & Recycling\",\"Watches & Jewelry\",\"Water Treatment\",\"Weight & Health Management\",\"Wire & Cable\",\"Zoos & National Parks\"],\"data_name\":\"tnt__industry\",\"db_name\":\"tnt__industry\",\"description\":\"Company Industry\",\"is_filterable\":true,\"name\":\"tnt__industry\",\"oasis\":{\"name\":\"tnt__industry\"},\"ui\":{\"display_name\":\"Industry\",\"placeholder\":\"Add Industry\"}},{\"supported_filter_ops\":[\"any\",\"not_any\",\"empty\",\"not_empty\"],\"field_type\":\"enum\",\"allowed_values\":[\"High\",\"Low\",\"Med\"],\"data_name\":\"tnt__internal_rating\",\"db_name\":\"tnt__internal_rating\",\"description\":\"\",\"is_filterable\":true,\"name\":\"tnt__internal_rating\",\"oasis\":{\"name\":\"tnt__internal_rating\"},\"ui\":{\"display_name\":\"Internal Rating\",\"placeholder\":\"Add Internal Rating\"}},{\"field_type\":\"bool\",\"data_name\":\"tnt__is_icp\",\"db_name\":\"tnt__is_icp\",\"description\":\"Identifies whether an account is an Ideal Customer Profile\",\"is_filterable\":true,\"name\":\"tnt__is_icp\",\"oasis\":{\"name\":\"tnt__is_icp\"},\"ui\":{\"display_name\":\"ICP\",\"placeholder\":\"Add ICP\"}},{\"supported_filter_ops\":[\"any\",\"not_any\",\"empty\",\"not_empty\"],\"field_type\":\"int\",\"data_name\":\"tnt__it_budget\",\"db_name\":\"tnt__it_budget\",\"description\":\"IT Budget\",\"is_filterable\":true,\"name\":\"tnt__it_budget\",\"oasis\":{\"name\":\"tnt__it_budget\"},\"ui\":{\"display_name\":\"IT Budget\",\"placeholder\":\"Enter IT budget for the company\"}},{\"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 all the users of an account 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\"}},{\"field_type\":\"text\",\"data_name\":\"tnt__linkedin_profile\",\"db_name\":\"tnt__linkedin_profile\",\"description\":\"linkedin company page\",\"is_filterable\":false,\"name\":\"tnt__linkedin_profile\",\"oasis\":{\"name\":\"tnt__linkedin_profile\"},\"ui\":{\"display_name\":\"LinkedIn Profile\",\"placeholder\":\"Add linkedin company page\"}},{\"supported_filter_ops\":[\"any\",\"not_any\",\"empty\",\"not_empty\"],\"field_type\":\"enum\",\"allowed_values\":[\"approved\",\"rejected\",\"waiting for approval\"],\"data_name\":\"tnt__logo_approval\",\"db_name\":\"tnt__logo_approval\",\"default_value\":\"waiting for approval\",\"is_filterable\":true,\"is_required\":true,\"name\":\"tnt__logo_approval\",\"oasis\":{\"name\":\"tnt__logo_approval\"},\"ui\":{\"display_name\":\"Logo Approval\",\"placeholder\":\"Add Logo Approval\"}},{\"supported_filter_ops\":[\"any\",\"not_any\",\"empty\",\"not_empty\"],\"field_type\":\"id\",\"data_name\":\"tnt__marketing_development_representative\",\"db_name\":\"tnt__marketing_development_representative\",\"description\":\"List of Dev user IDs assigned as Marketing Development Representatives for this Account.\",\"id_type\":[\"devu\"],\"is_filterable\":true,\"name\":\"tnt__marketing_development_representative\",\"oasis\":{\"name\":\"tnt__marketing_development_representative\"},\"origin\":\"account\",\"ui\":{\"display_name\":\"MDR\",\"placeholder\":\"Add MDR\"}},{\"field_type\":\"timestamp\",\"data_name\":\"tnt__most_recent_timestamp\",\"db_name\":\"tnt__most_recent_timestamp\",\"description\":\"The most recent 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\"}},{\"field_type\":\"bool\",\"data_name\":\"tnt__nda_signed\",\"db_name\":\"tnt__nda_signed\",\"description\":\"\",\"is_filterable\":true,\"name\":\"tnt__nda_signed\",\"oasis\":{\"name\":\"tnt__nda_signed\"},\"ui\":{\"display_name\":\"NDA Signed\",\"placeholder\":\"Is NDA Signed\"}},{\"field_type\":\"text\",\"data_name\":\"tnt__news_enrich\",\"db_name\":\"tnt__news_enrich\",\"description\":\"News Enrich\",\"is_filterable\":false,\"name\":\"tnt__news_enrich\",\"oasis\":{\"name\":\"tnt__news_enrich\"},\"ui\":{\"display_name\":\"News Enrich\",\"placeholder\":\"Add News Enrich\"}},{\"supported_filter_ops\":[\"any\",\"not_any\",\"empty\",\"not_empty\"],\"field_type\":\"text\",\"data_name\":\"tnt__news_last_updated\",\"db_name\":\"tnt__news_last_updated\",\"description\":\"News Enrich last updated\",\"is_filterable\":true,\"name\":\"tnt__news_last_updated\",\"oasis\":{\"name\":\"tnt__news_last_updated\"},\"ui\":{\"display_name\":\"News Enrich last updated date\",\"placeholder\":\"Add News Enrich last updated date\"}},{\"supported_filter_ops\":[\"any\",\"not_any\",\"empty\",\"not_empty\"],\"field_type\":\"int\",\"data_name\":\"tnt__number_of_licenses\",\"db_name\":\"tnt__number_of_licenses\",\"description\":\"Number of licenses\",\"is_filterable\":true,\"name\":\"tnt__number_of_licenses\",\"oasis\":{\"name\":\"tnt__number_of_licenses\"},\"ui\":{\"display_name\":\"Number of licenses\",\"placeholder\":\"Add Number of licenses\"}},{\"supported_filter_ops\":[\"any\",\"not_any\",\"empty\",\"not_empty\"],\"field_type\":\"int\",\"data_name\":\"tnt__number_of_open_opportunities\",\"db_name\":\"tnt__number_of_open_opportunities\",\"description\":\"\",\"is_filterable\":true,\"name\":\"tnt__number_of_open_opportunities\",\"oasis\":{\"name\":\"tnt__number_of_open_opportunities\"},\"ui\":{\"display_name\":\"Number of Open Opportunities\",\"placeholder\":\"Add Number of Open Opportunities\"}},{\"supported_filter_ops\":[\"any\",\"not_any\",\"empty\",\"not_empty\"],\"field_type\":\"id\",\"data_name\":\"tnt__onecrm_eng\",\"db_name\":\"tnt__onecrm_eng\",\"id_type\":[\"devu\"],\"is_filterable\":true,\"name\":\"tnt__onecrm_eng\",\"oasis\":{\"name\":\"tnt__onecrm_eng\"},\"ui\":{\"display_name\":\"OneCRM Eng\",\"placeholder\":\"Add OneCRM Eng\",\"tooltip\":\"Supporting OneCRM Eng for Tier 1 accounts\"}},{\"supported_filter_ops\":[\"any\",\"not_any\",\"empty\",\"not_empty\"],\"field_type\":\"text\",\"data_name\":\"tnt__operational_address\",\"db_name\":\"tnt__operational_address\",\"description\":\"\",\"is_filterable\":true,\"name\":\"tnt__operational_address\",\"oasis\":{\"name\":\"tnt__operational_address\"},\"ui\":{\"display_name\":\"Operational Address\",\"placeholder\":\"Add Operational Address\"}},{\"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\",\"Bosnia and Herzegowina\",\"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\",\"Guernsey\",\"Guinea\",\"Guinea-Bissau\",\"Guyana\",\"Haiti\",\"Holy See\",\"Honduras\",\"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__operational_country\",\"db_name\":\"tnt__operational_country\",\"description\":\"\",\"is_filterable\":true,\"name\":\"tnt__operational_country\",\"oasis\":{\"name\":\"tnt__operational_country\"},\"ui\":{\"display_name\":\"Operational Country\",\"placeholder\":\"Add Operational Country\"}},{\"field_type\":\"text\",\"data_name\":\"tnt__original_display_name\",\"db_name\":\"tnt__original_display_name\",\"description\":\"The original display name in the source system\",\"is_required\":false,\"name\":\"tnt__original_display_name\",\"oasis\":{\"name\":\"tnt__original_display_name\"},\"ui\":{\"display_name\":\"Display name\",\"placeholder\":\"Add Display name\"}},{\"field_type\":\"array\",\"base_type\":\"tokens\",\"data_name\":\"tnt__original_websites\",\"db_name\":\"tnt__original_websites\",\"description\":\"The original websites in the source system\",\"is_required\":false,\"name\":\"tnt__original_websites\",\"oasis\":{\"name\":\"tnt__original_websites\"},\"ui\":{\"display_name\":\"Websites\",\"placeholder\":\"Add Websites\"}},{\"supported_filter_ops\":[\"any\",\"not_any\",\"empty\",\"not_empty\"],\"field_type\":\"enum\",\"allowed_values\":[\"val1\",\"val2\"],\"data_name\":\"tnt__outreach_status\",\"db_name\":\"tnt__outreach_status\",\"is_filterable\":true,\"name\":\"tnt__outreach_status\",\"oasis\":{\"name\":\"tnt__outreach_status\"},\"ui\":{\"display_name\":\"Outreach status\",\"placeholder\":\"Add Outreach status\"}},{\"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 all the users of an account 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\":[\"ANZ\",\"Canada\",\"Central & Eastern Europe\",\"Central Asia\",\"East ASIA\",\"Eastern Mediterranean Middle East & North Affrica\",\"India\",\"LATAM\",\"Northern Europe & Eastern Emerging Markets\",\"SEA\",\"South & Mediterranean Europe\",\"South ASIA\",\"Sub Saharan Africa\",\"US\",\"Western Europe\"],\"data_name\":\"tnt__partner_region\",\"db_name\":\"tnt__partner_region\",\"description\":\"Partner Region\",\"is_filterable\":true,\"name\":\"tnt__partner_region\",\"oasis\":{\"name\":\"tnt__partner_region\"},\"ui\":{\"display_name\":\"Partner Region\",\"placeholder\":\"Add partner region\"}},{\"supported_filter_ops\":[\"all\",\"any\",\"not_any\",\"empty\",\"not_empty\"],\"field_type\":\"array\",\"base_type\":\"enum\",\"allowed_values\":[\"Argentina\",\"Australia\",\"Bangladesh\",\"Benelux\",\"Bhutan\",\"Brazil\",\"Brunei\",\"Burma\",\"Cambodia\",\"Canada Central\",\"Canada East\",\"Canada North\",\"Canada West\",\"Central US\",\"China\",\"DAC\",\"East US\",\"Eastern Emerging Markets\",\"Eastern Europe\",\"Eastern Mediterranean\",\"Fiji\",\"France\",\"Hong Kong\",\"Iberia\",\"India\",\"Indonesia\",\"Japan\",\"Kazakhstan\",\"Kyrgyzstan\",\"Laos\",\"Malaysia\",\"Maldives\",\"Mediterranean\",\"Middle East\",\"Mongolia\",\"Nepal\",\"New Zealand\",\"Nordics\",\"North Africa\",\"Papua New Guinea\",\"Phillipines\",\"Samoa\",\"Singapore\",\"Solomon Islands\",\"South Korea\",\"Sri Lanka\",\"Sub Saharan Africa\",\"Taiwan\",\"Tajikistan\",\"Thailand\",\"Tonga\",\"Turkmenistan\",\"UK/I\",\"Uzbekistan\",\"Vanuatu\",\"Vietnam\",\"West US\"],\"data_name\":\"tnt__partner_sub_region\",\"db_name\":\"tnt__partner_sub_region\",\"description\":\"Partner Sub Region\",\"is_filterable\":true,\"name\":\"tnt__partner_sub_region\",\"oasis\":{\"name\":\"tnt__partner_sub_region\"},\"ui\":{\"display_name\":\"Partner Sub Region\",\"placeholder\":\"Add partner sub_region\"}},{\"supported_filter_ops\":[\"any\",\"not_any\",\"empty\",\"not_empty\"],\"field_type\":\"enum\",\"allowed_values\":[\"Ecosystem\",\"Growth\",\"Scale\",\"Strategic\",\"customers\"],\"data_name\":\"tnt__partnership_level\",\"db_name\":\"tnt__partnership_level\",\"description\":\"\",\"is_filterable\":true,\"name\":\"tnt__partnership_level\",\"oasis\":{\"name\":\"tnt__partnership_level\"},\"ui\":{\"display_name\":\"Partnership Level\",\"placeholder\":\"Add Partnership Level\"}},{\"supported_filter_ops\":[\"any\",\"not_any\",\"empty\",\"not_empty\"],\"field_type\":\"enum\",\"allowed_values\":[\"Co-sell\",\"Commission\",\"Implemetation\",\"Marketplace\",\"Referral\",\"Resell\"],\"data_name\":\"tnt__partnership_model\",\"db_name\":\"tnt__partnership_model\",\"description\":\"\",\"is_filterable\":true,\"name\":\"tnt__partnership_model\",\"oasis\":{\"name\":\"tnt__partnership_model\"},\"ui\":{\"display_name\":\"Partnership Model\",\"placeholder\":\"Add Partnership Model\"}},{\"supported_filter_ops\":[\"any\",\"not_any\",\"empty\",\"not_empty\"],\"field_type\":\"enum\",\"allowed_values\":[\"In Progress\",\"Prospect\",\"Signed\"],\"data_name\":\"tnt__partnership_status\",\"db_name\":\"tnt__partnership_status\",\"description\":\"\",\"is_filterable\":true,\"name\":\"tnt__partnership_status\",\"oasis\":{\"name\":\"tnt__partnership_status\"},\"ui\":{\"display_name\":\"Partnership Status\",\"placeholder\":\"Add Partnership Status\"}},{\"supported_filter_ops\":[\"any\",\"not_any\",\"empty\",\"not_empty\"],\"field_type\":\"enum\",\"allowed_values\":[\"Custom\",\"Net 30\",\"Net 45\",\"Net 60\",\"Net 90\"],\"data_name\":\"tnt__payment_terms\",\"db_name\":\"tnt__payment_terms\",\"description\":\"\",\"is_filterable\":true,\"name\":\"tnt__payment_terms\",\"oasis\":{\"name\":\"tnt__payment_terms\"},\"ui\":{\"display_name\":\"Payment Terms\",\"placeholder\":\"Enter Payment Terms\"}},{\"field_type\":\"array\",\"base_type\":\"text\",\"data_name\":\"tnt__phone_numbers\",\"db_name\":\"tnt__phone_numbers\",\"description\":\"phone_numbers\",\"name\":\"tnt__phone_numbers\",\"oasis\":{\"name\":\"tnt__phone_numbers\"},\"ui\":{\"display_name\":\"Phone Numbers\",\"placeholder\":\"Add Phone Numbers\"}},{\"supported_filter_ops\":[\"all\",\"any\",\"not_any\",\"empty\",\"not_empty\"],\"field_type\":\"array\",\"base_type\":\"enum\",\"allowed_values\":[\"Additional Base Storage\",\"Build Pro Subscription\",\"Build Starter Subscription\",\"Build Ultimate Subscription\",\"Build and Support Pro\",\"Build and Support Ultimate\",\"Grow Pro\",\"Grow Starter\",\"OneCRM Ultimate\",\"PLuG (UE)\",\"PLuG (UE) Onetime Additional Sessions\",\"PLuG Pro Subscription\",\"PLuG Starter Subscription\",\"PLuG Ultimate Subscription\",\"Support Pro Subscription\",\"Support Starter Subscription\",\"Support Ultimate Subscription\"],\"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\":\"id\",\"data_name\":\"tnt__primary_partner_contact\",\"db_name\":\"tnt__primary_partner_contact\",\"description\":\"\",\"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\":[\"all\",\"any\",\"not_any\",\"empty\",\"not_empty\"],\"field_type\":\"array\",\"base_type\":\"enum\",\"allowed_values\":[\"Enterprise\",\"Mid-Market\",\"SMB\",\"Start-Up\"],\"data_name\":\"tnt__primary_segment\",\"db_name\":\"tnt__primary_segment\",\"description\":\"This field indicates the segment of the partner.\",\"is_filterable\":true,\"name\":\"tnt__primary_segment\",\"oasis\":{\"name\":\"tnt__primary_segment\"},\"ui\":{\"display_name\":\"Primary Segment\",\"placeholder\":\"Add primary segment\"}},{\"field_type\":\"rich_text\",\"data_name\":\"tnt__products_services\",\"db_name\":\"tnt__products_services\",\"is_filterable\":false,\"name\":\"tnt__products_services\",\"oasis\":{\"name\":\"tnt__products_services\"},\"ui\":{\"display_name\":\"Products & Services \",\"placeholder\":\"Add Products & Services \"}},{\"supported_filter_ops\":[\"any\",\"not_any\",\"empty\",\"not_empty\"],\"field_type\":\"text\",\"data_name\":\"tnt__program_name\",\"db_name\":\"tnt__program_name\",\"description\":\"\",\"is_filterable\":true,\"name\":\"tnt__program_name\",\"oasis\":{\"name\":\"tnt__program_name\"},\"ui\":{\"display_name\":\"Program Name\",\"placeholder\":\"Add Program Name\"}},{\"supported_filter_ops\":[\"any\",\"not_any\",\"empty\",\"not_empty\"],\"field_type\":\"enum\",\"allowed_values\":[\"ANZ\",\"Canada\",\"Central & Eastern Europe\",\"Central Asia\",\"East ASIA\",\"Eastern Mediterranean Middle East & North Affrica\",\"India\",\"LATAM\",\"Northern Europe & Eastern Emerging Markets\",\"SEA\",\"South & Mediterranean Europe\",\"South ASIA\",\"Sub Saharan Africa\",\"US\",\"Western Europe\"],\"data_name\":\"tnt__region\",\"db_name\":\"tnt__region\",\"description\":\"Region\",\"is_filterable\":true,\"name\":\"tnt__region\",\"oasis\":{\"name\":\"tnt__region\"},\"ui\":{\"display_name\":\"Region\",\"placeholder\":\"Add region\"}},{\"supported_filter_ops\":[\"any\",\"not_any\",\"empty\",\"not_empty\"],\"field_type\":\"text\",\"data_name\":\"tnt__ro_source_item\",\"db_name\":\"tnt__ro_source_item\",\"description\":\"The matching record in the source system\",\"is_filterable\":true,\"is_required\":false,\"name\":\"tnt__ro_source_item\",\"oasis\":{\"name\":\"tnt__ro_source_item\"},\"ui\":{\"display_name\":\"JIRA Source\",\"placeholder\":\"Add External Source\"}},{\"supported_filter_ops\":[\"all\",\"any\",\"not_any\",\"empty\",\"not_empty\"],\"field_type\":\"array\",\"base_type\":\"id\",\"data_name\":\"tnt__sales_development_representative\",\"db_name\":\"tnt__sales_development_representative\",\"description\":\"List of Dev user IDs assigned as Sales Development Representative for this Account.\",\"id_type\":[\"devu\"],\"is_filterable\":true,\"name\":\"tnt__sales_development_representative\",\"oasis\":{\"name\":\"tnt__sales_development_representative\"},\"origin\":\"account\",\"ui\":{\"display_name\":\"SDR\",\"placeholder\":\"Add SDR\"}},{\"supported_filter_ops\":[\"all\",\"any\",\"not_any\",\"empty\",\"not_empty\"],\"field_type\":\"array\",\"base_type\":\"id\",\"data_name\":\"tnt__sales_engineer\",\"db_name\":\"tnt__sales_engineer\",\"description\":\"List of Dev user IDs assigned as Sales Engineer for this Account.\",\"id_type\":[\"devu\"],\"is_filterable\":true,\"name\":\"tnt__sales_engineer\",\"oasis\":{\"name\":\"tnt__sales_engineer\"},\"origin\":\"account\",\"ui\":{\"display_name\":\"SE\",\"placeholder\":\"Add SE\"}},{\"field_type\":\"text\",\"data_name\":\"tnt__scoop_enrich\",\"db_name\":\"tnt__scoop_enrich\",\"description\":\"Scoop Enrich\",\"is_filterable\":false,\"name\":\"tnt__scoop_enrich\",\"oasis\":{\"name\":\"tnt__scoop_enrich\"},\"ui\":{\"display_name\":\"Scoop Enrich\",\"placeholder\":\"Add Scoop Enrich\"}},{\"supported_filter_ops\":[\"any\",\"not_any\",\"empty\",\"not_empty\"],\"field_type\":\"text\",\"data_name\":\"tnt__scoop_last_updated\",\"db_name\":\"tnt__scoop_last_updated\",\"description\":\"Scoop Enrich last updated\",\"is_filterable\":true,\"name\":\"tnt__scoop_last_updated\",\"oasis\":{\"name\":\"tnt__scoop_last_updated\"},\"ui\":{\"display_name\":\"Scoop Enrich last updated date\",\"placeholder\":\"Add Scoop Enrich last updated date\"}},{\"supported_filter_ops\":[\"any\",\"not_any\",\"empty\",\"not_empty\"],\"field_type\":\"text\",\"data_name\":\"tnt__sector\",\"db_name\":\"tnt__sector\",\"is_filterable\":true,\"name\":\"tnt__sector\",\"oasis\":{\"name\":\"tnt__sector\"},\"ui\":{\"display_name\":\"Sector\",\"placeholder\":\"Add Sector\"}},{\"supported_filter_ops\":[\"any\",\"not_any\",\"empty\",\"not_empty\"],\"field_type\":\"enum\",\"allowed_values\":[\"Enterprise\",\"Mid-Market\",\"SMB\",\"Start-Up\"],\"data_name\":\"tnt__segment\",\"db_name\":\"tnt__segment\",\"description\":\"This field indicates the segment of the company.\",\"is_filterable\":true,\"name\":\"tnt__segment\",\"oasis\":{\"name\":\"tnt__segment\"},\"ui\":{\"display_name\":\"Segment\",\"placeholder\":\"Add company segment\"}},{\"supported_filter_ops\":[\"any\",\"not_any\",\"empty\",\"not_empty\"],\"field_type\":\"text\",\"data_name\":\"tnt__shipping_address\",\"db_name\":\"tnt__shipping_address\",\"description\":\"\",\"is_filterable\":true,\"name\":\"tnt__shipping_address\",\"oasis\":{\"name\":\"tnt__shipping_address\"},\"ui\":{\"display_name\":\"Shipping Address\",\"placeholder\":\"Add Shipping Address\"}},{\"supported_filter_ops\":[\"all\",\"any\",\"not_any\",\"empty\",\"not_empty\"],\"field_type\":\"array\",\"base_type\":\"id\",\"data_name\":\"tnt__similar_accounts\",\"db_name\":\"tnt__similar_accounts\",\"id_type\":[\"account\"],\"is_filterable\":true,\"name\":\"tnt__similar_accounts\",\"oasis\":{\"name\":\"tnt__similar_accounts\"},\"ui\":{\"display_name\":\"Similar Accounts\"}},{\"supported_filter_ops\":[\"any\",\"not_any\",\"empty\",\"not_empty\"],\"field_type\":\"enum\",\"allowed_values\":[\"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\":\"enum\",\"allowed_values\":[\"Activated: Integrated\",\"Archived\",\"Converted: Consuming\",\"Converted: Expanding\",\"Converted: Renewing\",\"Deactivated\",\"Discovered: Engage later\",\"Discovered: Pre-qualified\",\"Discovered: Pursuing\",\"Discovered: Qualified\",\"Discovered: Stalled\",\"Duplicate\",\"Expanded\",\"Renewed\",\"Started: Exploring\",\"Started: Signed up\",\"Test/ DevRev\"],\"data_name\":\"tnt__stage\",\"db_name\":\"tnt__stage\",\"description\":\"Stage\",\"is_filterable\":true,\"name\":\"tnt__stage\",\"oasis\":{\"name\":\"tnt__stage\"},\"ui\":{\"display_name\":\"Activity Status\",\"placeholder\":\"Add Stage\"}},{\"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\":[\"Activated\",\"Deactivated\"],\"data_name\":\"tnt__status\",\"db_name\":\"tnt__status\",\"default_value\":\"Activated\",\"description\":\"\",\"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\":[\"Argentina\",\"Australia\",\"Bangladesh\",\"Benelux\",\"Bhutan\",\"Brazil\",\"Brunei\",\"Burma\",\"Cambodia\",\"Canada Central\",\"Canada East\",\"Canada North\",\"Canada West\",\"Central US\",\"China\",\"DAC\",\"East US\",\"Eastern Emerging Markets\",\"Eastern Europe\",\"Eastern Mediterranean\",\"Fiji\",\"France\",\"Hong Kong\",\"Iberia\",\"India\",\"India East\",\"India North\",\"India South\",\"India West\",\"Indonesia\",\"Japan\",\"Kazakhstan\",\"Kyrgyzstan\",\"Laos\",\"Malaysia\",\"Maldives\",\"Mediterranean\",\"Middle East\",\"Mongolia\",\"Nepal\",\"New Zealand\",\"Nordics\",\"North Africa\",\"Papua New Guinea\",\"Phillipines\",\"Samoa\",\"Singapore\",\"Solomon Islands\",\"South Korea\",\"Sri Lanka\",\"Sub Saharan Africa\",\"Taiwan\",\"Tajikistan\",\"Thailand\",\"Tonga\",\"Turkmenistan\",\"UK/I\",\"Uzbekistan\",\"Vanuatu\",\"Vietnam\",\"West US\"],\"data_name\":\"tnt__sub_region\",\"db_name\":\"tnt__sub_region\",\"description\":\"Sub Region\",\"is_filterable\":true,\"name\":\"tnt__sub_region\",\"oasis\":{\"name\":\"tnt__sub_region\"},\"ui\":{\"display_name\":\"Sub Region\",\"placeholder\":\"Add sub_region\"}},{\"supported_filter_ops\":[\"any\",\"not_any\",\"empty\",\"not_empty\"],\"field_type\":\"text\",\"data_name\":\"tnt__sub_sector\",\"db_name\":\"tnt__sub_sector\",\"is_filterable\":true,\"name\":\"tnt__sub_sector\",\"oasis\":{\"name\":\"tnt__sub_sector\"},\"ui\":{\"display_name\":\"Sub-Sector\",\"placeholder\":\"Add Sub-Sector\"}},{\"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 Roundtable'23\",\"AWS:re-invent2022\",\"Aditi Jain\",\"Agustin Vivas\",\"Ameena Beevi\",\"Anindya Misra\",\"Argentinameetup23\",\"Atlassian Team'23\",\"Austinmeetup23\",\"Beta Launch\",\"BillBoardSept2023\",\"Billing Campaign: Responded\",\"Blrtechsummit2022\",\"Boomer Banaag\",\"BrandCampaign\",\"CIO-VirtualEvent\",\"CIO-summit23\",\"CIOKulb event\",\"CSISRAEL23\",\"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\",\"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\",\"Gaurish Lawande\",\"Gayathri Balasubramanian\",\"Geektimecode23\",\"Gowri S\",\"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\",\"Mubin Khan\",\"Mumbai 8-10th Jan 23 Outreach\",\"Neeraj Matiyani\",\"Noor J\",\"Omkar Babar\",\"Ophir Rom\",\"PM List\",\"Paige Caldwell\",\"Paul Park\",\"PerformanceCampaign\",\"PerformanceMax\",\"Podim'23\",\"Press\",\"Product-Unconference'23\",\"Q1FY25_CSS_Exec_Event_London\",\"Q2FY25_Effortless_New_York\",\"Q4FY23-Closed\",\"Ramya Iyer\",\"Relationship\",\"Retarget campaign\",\"Rohan Soj\",\"SG-Booth23\",\"SG-DGB23\",\"SG-ExhibitingComp23\",\"SG-OfficeHours23\",\"SG-Roundtable23\",\"SG-TargetedList23\",\"SXSW\",\"SaaS Central'23\",\"SaaS Con'23\",\"SaaSboomi Annual 2023\",\"SaaStock-Happyhour'23\",\"SaaStrAug2023\",\"Saastr Europe 23\",\"Sabari Prasanth\",\"Sanjay Somashekar\",\"Shamanth Kengeri\",\"Start-Up Spark\",\"Startup\",\"Strong Relationship\",\"Sunil Mahale\",\"Swapnil Pancholi\",\"TPF'23\",\"Tech and Leadership Meetup\",\"Tom Emmanual\",\"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\",\"peopleops\",\"physicalinvites\",\"prasoon\",\"product-newsletter\",\"product_posts\",\"qkdivya\",\"qkhimanshu\",\"qkmanisha\",\"qkmaulik\",\"qkmayur\",\"qkrahul\",\"qkshivshankar\",\"qkshweta\",\"qksiddharth\",\"qksk\",\"qksnehashree\",\"qksocial\",\"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\"],\"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\":[\"any\",\"not_any\",\"empty\",\"not_empty\"],\"field_type\":\"rich_text\",\"data_name\":\"tnt__target_market\",\"db_name\":\"tnt__target_market\",\"is_filterable\":true,\"name\":\"tnt__target_market\",\"oasis\":{\"name\":\"tnt__target_market\"},\"ui\":{\"display_name\":\"Target Market\",\"placeholder\":\"Add Target Market\"}},{\"supported_filter_ops\":[\"any\",\"not_any\",\"empty\",\"not_empty\"],\"field_type\":\"enum\",\"allowed_values\":[\"Advanced\",\"Expert\",\"Select\"],\"data_name\":\"tnt__technical_capabilities\",\"db_name\":\"tnt__technical_capabilities\",\"description\":\"\",\"is_filterable\":true,\"name\":\"tnt__technical_capabilities\",\"oasis\":{\"name\":\"tnt__technical_capabilities\"},\"ui\":{\"display_name\":\"Technical Capabilities\",\"placeholder\":\"Add Technical Capabilities\"}},{\"field_type\":\"array\",\"base_type\":\"text\",\"data_name\":\"tnt__technologies\",\"db_name\":\"tnt__technologies\",\"description\":\"technologies\",\"name\":\"tnt__technologies\",\"oasis\":{\"name\":\"tnt__technologies\"},\"ui\":{\"display_name\":\"Technologies\",\"placeholder\":\"Add Technologies\"}},{\"supported_filter_ops\":[\"any\",\"not_any\",\"empty\",\"not_empty\"],\"field_type\":\"int\",\"data_name\":\"tnt__telephone_number\",\"db_name\":\"tnt__telephone_number\",\"description\":\"\",\"is_filterable\":true,\"name\":\"tnt__telephone_number\",\"oasis\":{\"name\":\"tnt__telephone_number\"},\"ui\":{\"display_name\":\"Telephone Number\",\"placeholder\":\"Add Telephone Number\"}},{\"field_type\":\"text\",\"data_name\":\"tnt__teritory\",\"db_name\":\"tnt__teritory\",\"is_filterable\":false,\"name\":\"tnt__teritory\",\"oasis\":{\"name\":\"tnt__teritory\"},\"ui\":{\"display_name\":\"Teritory\",\"placeholder\":\"Add Teritory\"}},{\"supported_filter_ops\":[\"any\",\"not_any\",\"empty\",\"not_empty\"],\"field_type\":\"text\",\"data_name\":\"tnt__tnt_api_test_field\",\"db_name\":\"tnt__tnt_api_test_field\",\"description\":\"Test field created by API test script\",\"is_filterable\":true,\"name\":\"tnt__tnt_api_test_field\",\"oasis\":{\"name\":\"tnt__tnt_api_test_field\"},\"ui\":{\"display_name\":\"API Test Field\",\"placeholder\":\"Test field\"}},{\"supported_filter_ops\":[\"all\",\"any\",\"not_any\",\"empty\",\"not_empty\"],\"field_type\":\"array\",\"base_type\":\"enum\",\"allowed_values\":[\"CS Home Page\",\"CS Page Visitor\",\"Paid Demo Page View\",\"Paid Website Session\",\"Visited Website\"],\"data_name\":\"tnt__top_engagement_signals\",\"db_name\":\"tnt__top_engagement_signals\",\"description\":\"Engagement level of the Account\",\"is_filterable\":true,\"name\":\"tnt__top_engagement_signals\",\"oasis\":{\"name\":\"tnt__top_engagement_signals\"},\"ui\":{\"display_name\":\"Top Engagement Signals\",\"placeholder\":\"Add Top Engagement Signals\"}},{\"supported_filter_ops\":[\"any\",\"not_any\",\"empty\",\"not_empty\"],\"field_type\":\"int\",\"data_name\":\"tnt__total_sessions\",\"db_name\":\"tnt__total_sessions\",\"description\":\"The total number of sessions of the user on the website/app.\",\"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\":\"double\",\"data_name\":\"tnt__tracxn_score\",\"db_name\":\"tnt__tracxn_score\",\"is_filterable\":true,\"name\":\"tnt__tracxn_score\",\"oasis\":{\"name\":\"tnt__tracxn_score\"},\"ui\":{\"display_name\":\"Tracxn Score\",\"placeholder\":\"Add Tracxn Score\"}},{\"supported_filter_ops\":[\"any\",\"not_any\",\"empty\",\"not_empty\"],\"field_type\":\"text\",\"data_name\":\"tnt__tracxn_url\",\"db_name\":\"tnt__tracxn_url\",\"is_filterable\":true,\"name\":\"tnt__tracxn_url\",\"oasis\":{\"name\":\"tnt__tracxn_url\"},\"ui\":{\"display_name\":\"Tracxn URL\",\"placeholder\":\"Add Tracxn URL\"}},{\"supported_filter_ops\":[\"any\",\"not_any\",\"empty\",\"not_empty\"],\"field_type\":\"enum\",\"allowed_values\":[\"Completed\",\"Completed - Failed\",\"Completed - Technical Success\",\"Expected\",\"No\",\"Testing\",\"Yes\"],\"data_name\":\"tnt__trial\",\"db_name\":\"tnt__trial\",\"description\":\"Trial\",\"is_filterable\":true,\"name\":\"tnt__trial\",\"oasis\":{\"name\":\"tnt__trial\"},\"ui\":{\"display_name\":\"Trial\",\"placeholder\":\"Add Trial\"}},{\"supported_filter_ops\":[\"any\",\"not_any\",\"empty\",\"not_empty\"],\"field_type\":\"enum\",\"allowed_values\":[\"Customer\",\"Customer: Self-serve\",\"Former Customer\",\"Partner\",\"Prospect\"],\"data_name\":\"tnt__type\",\"db_name\":\"tnt__type\",\"default_value\":\"Prospect\",\"description\":\"\",\"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\":\"int\",\"data_name\":\"tnt__users\",\"db_name\":\"tnt__users\",\"description\":\"The count or number of individual signed in users of a given account on the website/app.\",\"is_filterable\":true,\"name\":\"tnt__users\",\"oasis\":{\"name\":\"tnt__users\"},\"ui\":{\"display_name\":\"Users\",\"placeholder\":\"Add Users\"}},{\"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\":\"text\",\"data_name\":\"tnt__zoominfo_enrich\",\"db_name\":\"tnt__zoominfo_enrich\",\"description\":\"ZoomInfo Enrich\",\"is_filterable\":false,\"name\":\"tnt__zoominfo_enrich\",\"oasis\":{\"name\":\"tnt__zoominfo_enrich\"},\"ui\":{\"display_name\":\"ZoomInfo Enrich\",\"placeholder\":\"Add ZoomInfo Enrich\"}},{\"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\"}}],\"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\":\"get_account_1\",\"ui_metadata\":{\"position\":{\"x\":-141,\"y\":-101}}},{\"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('get_account_1', 'output').tnt__segment\"}],\"operator\":\"exists\",\"type\":\"rule\",\"ui_reference_key\":\"f945d1d3-d7c4-49fc-8251-889d66e7c2a0\"}],\"logical_operator\":\"and\",\"negate\":true,\"type\":\"group\",\"ui_reference_key\":\"4bf2205a-7abc-46f7-8bbf-8cfe80e0e551\"}],\"logical_operator\":\"and\",\"negate\":false,\"type\":\"group\",\"ui_reference_key\":\"295fa1c3-95a1-4088-9a16-b74680e87ec4\"}}}],\"port_name\":\"input\"}],\"name\":\"If Else\",\"next_steps\":[{\"next_port_name\":\"input\",\"next_step_reference_key\":\"add_comment_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\":-143,\"y\":45}}},{\"description\":\"Triggers when an opportunity is updated\",\"input_ports\":[{\"name\":\"input\",\"schema\":{\"field_descriptors\":[{\"field_type\":\"uenum\",\"allowed_values\":[{\"id\":1111170702,\"label\":\"Hubspot/devrev.ai/deals:Sales Pipeline\",\"ordinal\":1,\"tooltip\":\"deals.Sales Pipeline/devrev.ai/Hubspot\",\"value\":\"nb2ye43qn52f6zdfozzgk5romfux6njqgq2teobzgbpyizlbnrzs4zdfmzqvk3du\"},{\"id\":1111171576,\"label\":\"Test\",\"ordinal\":2,\"value\":\"test\"}],\"data_name\":\"subtype\",\"db_name\":\"subtype\",\"description\":\"Subtype whose custom fields to watch for updates\",\"name\":\"subtype\",\"oasis\":{\"name\":\"subtype\"},\"ui\":{\"display_name\":\"Subtype\"}},{\"field_type\":\"array\",\"base_type\":\"uenum\",\"allowed_values\":[{\"id\":0,\"label\":\"Account\",\"ordinal\":0,\"value\":\"account\"},{\"id\":1,\"label\":\"Actual Close Date\",\"ordinal\":1,\"value\":\"actual_close_date\"},{\"id\":2,\"label\":\"Annual Contract Value\",\"ordinal\":2,\"value\":\"annual_contract_value\"},{\"id\":3,\"label\":\"Body\",\"ordinal\":3,\"value\":\"body\"},{\"id\":4,\"label\":\"Contacts\",\"ordinal\":4,\"value\":\"contacts\"},{\"id\":5,\"label\":\"Owned By\",\"ordinal\":5,\"value\":\"owned_by\"},{\"id\":6,\"label\":\"Stage\",\"ordinal\":6,\"value\":\"stage\"},{\"id\":7,\"label\":\"Tags\",\"ordinal\":7,\"value\":\"tags\"},{\"id\":8,\"label\":\"Target Close Date\",\"ordinal\":8,\"value\":\"target_close_date\"},{\"id\":9,\"label\":\"Title\",\"ordinal\":9,\"value\":\"title\"},{\"id\":10,\"label\":\"Value\",\"ordinal\":10,\"value\":\"value\"},{\"id\":11,\"label\":\"Advisor\",\"ordinal\":11,\"value\":\"tnt__advisor\"},{\"id\":12,\"label\":\"Advisor Contact\",\"ordinal\":12,\"value\":\"tnt__advisor_contact\"},{\"id\":13,\"label\":\"Advisor Name\",\"ordinal\":13,\"value\":\"tnt__advisor_name\"},{\"id\":14,\"label\":\"Age\",\"ordinal\":14,\"value\":\"tnt__age\"},{\"id\":15,\"label\":\"Agreement Expiration Date\",\"ordinal\":15,\"value\":\"tnt__agreement_expiration_date\"},{\"id\":16,\"label\":\"AWS Reps\",\"ordinal\":16,\"value\":\"tnt__aws_reps\"},{\"id\":17,\"label\":\"Bill through\",\"ordinal\":17,\"value\":\"tnt__bill_through\"},{\"id\":18,\"label\":\"Champion\",\"ordinal\":18,\"value\":\"tnt__champion\"},{\"id\":19,\"label\":\"Closed Lost Reasons Details\",\"ordinal\":19,\"value\":\"tnt__closed_lost_reason_details\"},{\"id\":20,\"label\":\"Closed Lost Reasons\",\"ordinal\":20,\"value\":\"tnt__closed_lost_reasons\"},{\"id\":21,\"label\":\"Co-sell with AWS\",\"ordinal\":21,\"value\":\"tnt__co_sell_with_aws\"},{\"id\":22,\"label\":\"Competition\",\"ordinal\":22,\"value\":\"tnt__competition\"},{\"id\":23,\"label\":\"Contract End Date\",\"ordinal\":23,\"value\":\"tnt__contract_end_date\"},{\"id\":24,\"label\":\"Contract Months\",\"ordinal\":24,\"value\":\"tnt__contract_months\"},{\"id\":25,\"label\":\"Contract Signed Date\",\"ordinal\":25,\"value\":\"tnt__contract_signed_date\"},{\"id\":26,\"label\":\"Contract Start Date\",\"ordinal\":26,\"value\":\"tnt__contract_start_date\"},{\"id\":27,\"label\":\"Incumbent-Conversational PM\",\"ordinal\":27,\"value\":\"tnt__current_techstack_build\"},{\"id\":28,\"label\":\"Conversational CRM\",\"ordinal\":28,\"value\":\"tnt__current_techstack_grow\"},{\"id\":29,\"label\":\"Incumbent-Support\",\"ordinal\":29,\"value\":\"tnt__current_techstack_support\"},{\"id\":30,\"label\":\"CSM\",\"ordinal\":30,\"value\":\"tnt__customer_success\"},{\"id\":31,\"label\":\"Days in Current Stage\",\"ordinal\":31,\"value\":\"tnt__days_in_current_stage\"},{\"id\":32,\"label\":\"Days in Sales Cycle\",\"ordinal\":32,\"value\":\"tnt__days_in_sales_cycle\"},{\"id\":33,\"label\":\"Decision criteria\",\"ordinal\":33,\"value\":\"tnt__decision_criteria\"},{\"id\":34,\"label\":\"Decision process\",\"ordinal\":34,\"value\":\"tnt__decision_process\"},{\"id\":35,\"label\":\"Economic Buyer\",\"ordinal\":35,\"value\":\"tnt__economic_buyer\"},{\"id\":36,\"label\":\"Fiscal Quarter Close\",\"ordinal\":36,\"value\":\"tnt__fiscal_quarter_close\"},{\"id\":37,\"label\":\"Fiscal Quarter Opp Creation\",\"ordinal\":37,\"value\":\"tnt__fiscal_quarter_created\"},{\"id\":38,\"label\":\"Fiscal Quarter Pipeline Creation\",\"ordinal\":38,\"value\":\"tnt__fiscal_quarter_pipeline\"},{\"id\":39,\"label\":\"Theater\",\"ordinal\":39,\"value\":\"tnt__geo\"},{\"id\":40,\"label\":\"Identified Pain\",\"ordinal\":40,\"value\":\"tnt__identified_pain\"},{\"id\":41,\"label\":\"Incumbent-CCX\",\"ordinal\":41,\"value\":\"tnt__incumbent_ccx\"},{\"id\":42,\"label\":\"Incumbent-Enterprise Search\",\"ordinal\":42,\"value\":\"tnt__incumbent_enterprise_search\"},{\"id\":43,\"label\":\"Infosec\",\"ordinal\":43,\"value\":\"tnt__infosec\"},{\"id\":44,\"label\":\"Legal \",\"ordinal\":44,\"value\":\"tnt__legal\"},{\"id\":45,\"label\":\"Paper Process Notes\",\"ordinal\":45,\"value\":\"tnt__legal_process_complete\"},{\"id\":46,\"label\":\"Manager Override\",\"ordinal\":46,\"value\":\"tnt__manager_forecast\"},{\"id\":47,\"label\":\"MDR\",\"ordinal\":47,\"value\":\"tnt__marketing_development_representative\"},{\"id\":48,\"label\":\"Meeting stage\",\"ordinal\":48,\"value\":\"tnt__meeting_stage\"},{\"id\":49,\"label\":\"Metrics\",\"ordinal\":49,\"value\":\"tnt__metrics\"},{\"id\":50,\"label\":\"NDA\",\"ordinal\":50,\"value\":\"tnt__nda\"},{\"id\":51,\"label\":\"Next step due date\",\"ordinal\":51,\"value\":\"tnt__next_step_due_date\"},{\"id\":52,\"label\":\"Next Steps\",\"ordinal\":52,\"value\":\"tnt__next_steps\"},{\"id\":53,\"label\":\"Notification Date\",\"ordinal\":53,\"value\":\"tnt__notification_date\"},{\"id\":54,\"label\":\"Number of Build Licenses\",\"ordinal\":54,\"value\":\"tnt__number_of_build_licenses\"},{\"id\":55,\"label\":\"Number of Grow Licenses\",\"ordinal\":55,\"value\":\"tnt__number_of_grow_licenses\"},{\"id\":56,\"label\":\"Number of Plug Licenses\",\"ordinal\":56,\"value\":\"tnt__number_of_plug_licenses\"},{\"id\":57,\"label\":\"Number of Support Licenses\",\"ordinal\":57,\"value\":\"tnt__number_of_support_licenses\"},{\"id\":58,\"label\":\"Type\",\"ordinal\":58,\"value\":\"tnt__opportunity_type\"},{\"id\":59,\"label\":\"Partner Comp Model\",\"ordinal\":59,\"value\":\"tnt__partner_comp_model\"},{\"id\":60,\"label\":\"Partner Contact\",\"ordinal\":60,\"value\":\"tnt__partner_contact\"},{\"id\":61,\"label\":\"Partner Led Implementation\",\"ordinal\":61,\"value\":\"tnt__partner_led_implementation\"},{\"id\":62,\"label\":\"Partner Name\",\"ordinal\":62,\"value\":\"tnt__partner_name\"},{\"id\":63,\"label\":\"Partner Role\",\"ordinal\":63,\"value\":\"tnt__partner_role\"},{\"id\":64,\"label\":\"Partner Sales Notes\",\"ordinal\":64,\"value\":\"tnt__partner_sales_notes\"},{\"id\":65,\"label\":\"Partner Sourced\",\"ordinal\":65,\"value\":\"tnt__partner_sourced\"},{\"id\":66,\"label\":\"PBM\",\"ordinal\":66,\"value\":\"tnt__pbm\"},{\"id\":67,\"label\":\"Pipeline Created Date\",\"ordinal\":67,\"value\":\"tnt__pipeline_created_date\"},{\"id\":68,\"label\":\"Pipeline Source\",\"ordinal\":68,\"value\":\"tnt__pipeline_source\"},{\"id\":69,\"label\":\"Plans\",\"ordinal\":69,\"value\":\"tnt__plans\"},{\"id\":70,\"label\":\"Playbook\",\"ordinal\":70,\"value\":\"tnt__playbook\"},{\"id\":71,\"label\":\"POC\",\"ordinal\":71,\"value\":\"tnt__poc\"},{\"id\":72,\"label\":\"POC End Date\",\"ordinal\":72,\"value\":\"tnt__poc_end_date\"},{\"id\":73,\"label\":\"POC Notes\",\"ordinal\":73,\"value\":\"tnt__poc_notes\"},{\"id\":74,\"label\":\"POC Start Date\",\"ordinal\":74,\"value\":\"tnt__poc_start_date\"},{\"id\":75,\"label\":\"Attribution Contact\",\"ordinal\":75,\"value\":\"tnt__primary_contact\"},{\"id\":76,\"label\":\"Primary Products\",\"ordinal\":76,\"value\":\"tnt__primary_products\"},{\"id\":77,\"label\":\"Probability By Forecast Category\",\"ordinal\":77,\"value\":\"tnt__probability_by_forecast\"},{\"id\":78,\"label\":\"Products\",\"ordinal\":78,\"value\":\"tnt__products\"},{\"id\":79,\"label\":\"Ramped ARR\",\"ordinal\":79,\"value\":\"tnt__ramped_arr\"},{\"id\":80,\"label\":\"Region\",\"ordinal\":80,\"value\":\"tnt__region\"},{\"id\":81,\"label\":\"Registration ID\",\"ordinal\":81,\"value\":\"tnt__registration_id\"},{\"id\":82,\"label\":\"Registration Status\",\"ordinal\":82,\"value\":\"tnt__registration_status\"},{\"id\":83,\"label\":\"Required Capability\",\"ordinal\":83,\"value\":\"tnt__required_capability\"},{\"id\":84,\"label\":\"SDR\",\"ordinal\":84,\"value\":\"tnt__sales_development_representative\"},{\"id\":85,\"label\":\"SE\",\"ordinal\":85,\"value\":\"tnt__sales_engineer\"},{\"id\":86,\"label\":\"Segment\",\"ordinal\":86,\"value\":\"tnt__segment\"},{\"id\":87,\"label\":\"Shared with Partners\",\"ordinal\":87,\"value\":\"tnt__shared_with_partners\"},{\"id\":88,\"label\":\"Source\",\"ordinal\":88,\"value\":\"tnt__source\"},{\"id\":89,\"label\":\"Sub-Region\",\"ordinal\":89,\"value\":\"tnt__sub_region\"},{\"id\":90,\"label\":\"Technical VOC\",\"ordinal\":90,\"value\":\"tnt__technical_voc\"},{\"id\":91,\"label\":\"Weighted Pipeline (Forecast Category)\",\"ordinal\":91,\"value\":\"tnt__weighted_pipeline_forecast_category\"},{\"id\":92,\"label\":\"Weighted Pipeline (Stage)\",\"ordinal\":92,\"value\":\"tnt__weighted_pipeline_stage\"},{\"id\":93,\"label\":\"Why Anything?\",\"ordinal\":93,\"value\":\"tnt__why_anything\"},{\"id\":94,\"label\":\"Why DevRev?\",\"ordinal\":94,\"value\":\"tnt__why_devrev\"},{\"id\":95,\"label\":\"Why Now?\",\"ordinal\":95,\"value\":\"tnt__why_now\"},{\"id\":96,\"label\":\"Win Notes\",\"ordinal\":96,\"value\":\"tnt__win_notes\"}],\"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\":[\"bulk_timeline_snapin\",\"bulk_work_item_snapin\",\"bulk_work_item_creation\",\"bulk_work_item_creation_a\",\"new_primary_competitor_af\"],\"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\":[\"subtype\",\"apps\"],\"type\":\"field_descriptor\"},\"type\":\"default\"}],\"input_values\":[{\"fields\":[{\"name\":\"fields_to_watch\",\"value\":{\"type\":\"list_value\",\"value\":{\"items\":[{\"type\":\"literal\",\"value\":[\"stage\"]}]}}},{\"name\":\"_filter\",\"value\":{\"type\":\"literal\",\"value\":{\"conditions\":[{\"conditions\":[{\"operands\":[{\"type\":\"jsonata_expression\",\"value\":\"$get('opportunity_updated_1', 'output').stage.name\"},{\"type\":\"literal\",\"value\":\"3-evaluate\"}],\"operator\":\"equals\",\"type\":\"rule\",\"ui_reference_key\":\"daffafa2-9a2d-47ea-8977-812d85db909e\"}],\"logical_operator\":\"and\",\"negate\":false,\"type\":\"group\",\"ui_reference_key\":\"e8132209-a60b-4b89-a63d-9c272e263911\"}],\"logical_operator\":\"and\",\"negate\":false,\"type\":\"group\",\"ui_reference_key\":\"41a39975-0bc3-4a7c-bbb9-d12f4540a052\"}}}],\"port_name\":\"input\"}],\"name\":\"Opportunity Updated\",\"next_steps\":[{\"next_port_name\":\"input\",\"next_step_reference_key\":\"get_account_1\",\"port_name\":\"output\"}],\"operation\":{\"namespace\":\"devrev\",\"slug\":\"opportunity_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\":\"Name of the Organization.\",\"name\":\"display_name\",\"oasis\":{\"name\":\"display_name\"}},{\"field_type\":\"id\",\"data_name\":\"id\",\"db_name\":\"id\",\"description\":\"The id of the account.\",\"id_type\":[\"account\"],\"is_required\":true,\"name\":\"id\",\"oasis\":{\"name\":\"id\"}}],\"name\":\"_gen:account\"},{\"description\":\"Money.\",\"fields\":[{\"field_type\":\"text\",\"data_name\":\"amount\",\"db_name\":\"amount\",\"description\":\"Amount of the money.\",\"name\":\"amount\",\"oasis\":{\"name\":\"amount\"}},{\"field_type\":\"text\",\"data_name\":\"currency\",\"db_name\":\"currency\",\"description\":\"Currency of the money.\",\"name\":\"currency\",\"oasis\":{\"name\":\"currency\"}}],\"name\":\"_gen:annual_contract_value\"},{\"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\":\"composite\",\"composite_type\":\"_gen:display_picture\",\"data_name\":\"display_picture\",\"db_name\":\"display_picture\",\"name\":\"display_picture\",\"oasis\":{\"name\":\"display_picture\"}},{\"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\":\"enum\",\"allowed_values\":[\"active\",\"deactivated\",\"deleted\",\"locked\",\"shadow\",\"unassigned\"],\"data_name\":\"state\",\"db_name\":\"state\",\"description\":\"State of the user.\",\"name\":\"state\",\"oasis\":{\"name\":\"state\"}},{\"field_type\":\"enum\",\"allowed_values\":[\"dev_user\",\"rev_user\",\"service_account\",\"sys_user\"],\"data_name\":\"type\",\"db_name\":\"type\",\"is_required\":true,\"name\":\"type\",\"oasis\":{\"name\":\"type\"}},{\"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\"}}],\"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\":\"composite\",\"composite_type\":\"_gen:display_picture\",\"data_name\":\"display_picture\",\"db_name\":\"display_picture\",\"name\":\"display_picture\",\"oasis\":{\"name\":\"display_picture\"}},{\"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\":\"enum\",\"allowed_values\":[\"active\",\"deactivated\",\"deleted\",\"locked\",\"shadow\",\"unassigned\"],\"data_name\":\"state\",\"db_name\":\"state\",\"description\":\"State of the user.\",\"name\":\"state\",\"oasis\":{\"name\":\"state\"}},{\"field_type\":\"enum\",\"allowed_values\":[\"dev_user\",\"rev_user\",\"service_account\",\"sys_user\"],\"data_name\":\"type\",\"db_name\":\"type\",\"is_required\":true,\"name\":\"type\",\"oasis\":{\"name\":\"type\"}},{\"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\"}}],\"name\":\"_gen:modified_by\"},{\"description\":\"Describes the current stage of a work item.\",\"fields\":[{\"field_type\":\"text\",\"data_name\":\"name\",\"db_name\":\"name\",\"description\":\"Describes the current stage of a opportunity\",\"is_required\":true,\"name\":\"name\",\"oasis\":{\"name\":\"name\"}}],\"name\":\"_gen:stage\"},{\"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\":\"name\",\"db_name\":\"name\",\"description\":\"The name of the tag, which denotes the logical concept by which all\\ntagged objects will be associated. The name is guaranteed to be\\nunique.\\n\",\"is_required\":true,\"name\":\"name\",\"oasis\":{\"name\":\"name\"}},{\"field_type\":\"id\",\"data_name\":\"id\",\"db_name\":\"id\",\"description\":\"Globally unique object 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\":\"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\":\"enum\",\"allowed_values\":[\"active\",\"deactivated\",\"deleted\",\"locked\",\"shadow\",\"unassigned\"],\"data_name\":\"state\",\"db_name\":\"state\",\"description\":\"State of the user.\",\"name\":\"state\",\"oasis\":{\"name\":\"state\"}},{\"field_type\":\"id\",\"data_name\":\"id\",\"db_name\":\"id\",\"description\":\"The id of the user.\",\"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\",\"is_required\":true,\"name\":\"type\",\"oasis\":{\"name\":\"type\"}}],\"name\":\"_gen:user-summary\"},{\"description\":\"Money.\",\"fields\":[{\"field_type\":\"text\",\"data_name\":\"amount\",\"db_name\":\"amount\",\"description\":\"Amount of the money.\",\"name\":\"amount\",\"oasis\":{\"name\":\"amount\"}},{\"field_type\":\"text\",\"data_name\":\"currency\",\"db_name\":\"currency\",\"description\":\"Currency of the money.\",\"name\":\"currency\",\"oasis\":{\"name\":\"currency\"}}],\"name\":\"_gen:value\"},{\"fields\":[{\"field_type\":\"uenum\",\"allowed_values\":[{\"id\":1111170702,\"label\":\"Hubspot/devrev.ai/deals:Sales Pipeline\",\"ordinal\":1,\"tooltip\":\"deals.Sales Pipeline/devrev.ai/Hubspot\",\"value\":\"nb2ye43qn52f6zdfozzgk5romfux6njqgq2teobzgbpyizlbnrzs4zdfmzqvk3du\"},{\"id\":1111171576,\"label\":\"Test\",\"ordinal\":2,\"value\":\"test\"}],\"data_name\":\"subtype\",\"db_name\":\"subtype\",\"description\":\"Subtype of the object.\",\"name\":\"subtype\",\"oasis\":{\"name\":\"subtype\"},\"ui\":{\"display_name\":\"Subtype\"}},{\"field_type\":\"composite\",\"composite_type\":\"_gen:account\",\"data_name\":\"account\",\"db_name\":\"account\",\"name\":\"account\",\"oasis\":{\"name\":\"account\"}},{\"field_type\":\"timestamp\",\"data_name\":\"actual_close_date\",\"db_name\":\"actual_close_date\",\"description\":\"Timestamp when the opportunity was actually closed\",\"name\":\"actual_close_date\",\"oasis\":{\"name\":\"actual_close_date\"}},{\"field_type\":\"composite\",\"composite_type\":\"_gen:annual_contract_value\",\"data_name\":\"annual_contract_value\",\"db_name\":\"annual_contract_value\",\"description\":\"Money.\",\"name\":\"annual_contract_value\",\"oasis\":{\"name\":\"annual_contract_value\"}},{\"field_type\":\"text\",\"data_name\":\"body\",\"db_name\":\"body\",\"description\":\"Body of the opportunity\",\"name\":\"body\",\"oasis\":{\"name\":\"body\"}},{\"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 opportunity was created.\",\"name\":\"created_date\",\"oasis\":{\"name\":\"created_date\"}},{\"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\":\"external_ref\",\"db_name\":\"external_ref\",\"description\":\"An opaque key that's associated with the work item that's\\nguaranteed to be unique across all work items of same type (issue,\\nticket, etc).\\n\",\"name\":\"external_ref\",\"oasis\":{\"name\":\"external_ref\"}},{\"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 opportunity was last modified.\",\"name\":\"modified_date\",\"oasis\":{\"name\":\"modified_date\"}},{\"field_type\":\"array\",\"base_type\":\"composite\",\"composite_type\":\"_gen:user-summary\",\"data_name\":\"owned_by\",\"db_name\":\"owned_by\",\"is_required\":true,\"name\":\"owned_by\",\"oasis\":{\"name\":\"owned_by\"}},{\"field_type\":\"array\",\"base_type\":\"composite\",\"composite_type\":\"_gen:user-summary\",\"data_name\":\"reported_by\",\"db_name\":\"reported_by\",\"name\":\"reported_by\",\"oasis\":{\"name\":\"reported_by\"}},{\"field_type\":\"composite\",\"composite_type\":\"_gen:stage\",\"data_name\":\"stage\",\"db_name\":\"stage\",\"description\":\"Describes the current stage of a opportunity\",\"name\":\"stage\",\"oasis\":{\"name\":\"stage\"}},{\"field_type\":\"text\",\"data_name\":\"state_display_name\",\"db_name\":\"state_display_name\",\"description\":\"Display name for current state.\",\"name\":\"state_display_name\",\"oasis\":{\"name\":\"state_display_name\"}},{\"field_type\":\"array\",\"base_type\":\"composite\",\"composite_type\":\"_gen:tags\",\"data_name\":\"tags\",\"db_name\":\"tags\",\"description\":\"Tags associated with the opportunity\",\"name\":\"tags\",\"oasis\":{\"name\":\"tags\"}},{\"field_type\":\"timestamp\",\"data_name\":\"target_close_date\",\"db_name\":\"target_close_date\",\"description\":\"Timestamp when the opportunity is expected to be closed\",\"name\":\"target_close_date\",\"oasis\":{\"name\":\"target_close_date\"}},{\"field_type\":\"text\",\"data_name\":\"title\",\"db_name\":\"title\",\"description\":\"Title of the opportunity\",\"is_required\":true,\"name\":\"title\",\"oasis\":{\"name\":\"title\"}},{\"field_type\":\"composite\",\"composite_type\":\"_gen:value\",\"data_name\":\"value\",\"db_name\":\"value\",\"description\":\"Money.\",\"name\":\"value\",\"oasis\":{\"name\":\"value\"}},{\"field_type\":\"id\",\"data_name\":\"id\",\"db_name\":\"id\",\"description\":\"Globally unique object ID.\",\"id_type\":[\"opportunity\"],\"is_required\":true,\"name\":\"id\",\"oasis\":{\"name\":\"id\"}},{\"supported_filter_ops\":[\"all\",\"any\",\"not_any\",\"empty\",\"not_empty\"],\"field_type\":\"array\",\"base_type\":\"id\",\"data_name\":\"tnt__advisor\",\"db_name\":\"tnt__advisor\",\"description\":\"Add Advisor contact\",\"id_type\":[\"revu\"],\"is_filterable\":true,\"name\":\"tnt__advisor\",\"oasis\":{\"name\":\"tnt__advisor\"},\"ui\":{\"display_name\":\"Advisor\",\"placeholder\":\"Add Advisor contact\",\"tooltip\":\"Add the Advisor contact involved in the deal\"}},{\"supported_filter_ops\":[\"any\",\"not_any\",\"empty\",\"not_empty\"],\"field_type\":\"id\",\"data_name\":\"tnt__advisor_contact\",\"db_name\":\"tnt__advisor_contact\",\"description\":\"Advisor Contact\",\"id_type\":[\"revu\"],\"is_filterable\":true,\"name\":\"tnt__advisor_contact\",\"oasis\":{\"name\":\"tnt__advisor_contact\"},\"ui\":{\"display_name\":\"Advisor Contact\",\"placeholder\":\"Add Advisor Contact\"}},{\"supported_filter_ops\":[\"any\",\"not_any\",\"empty\",\"not_empty\"],\"field_type\":\"id\",\"data_name\":\"tnt__advisor_name\",\"db_name\":\"tnt__advisor_name\",\"description\":\"ID of the associated account advisor\",\"id_type\":[\"account\"],\"is_filterable\":true,\"name\":\"tnt__advisor_name\",\"oasis\":{\"name\":\"tnt__advisor_name\"},\"ui\":{\"display_name\":\"Advisor Name\",\"placeholder\":\"Add Advisor Name\"}},{\"supported_filter_ops\":[\"any\",\"not_any\",\"empty\",\"not_empty\"],\"field_type\":\"int\",\"data_name\":\"tnt__age\",\"db_name\":\"tnt__age\",\"description\":\"Age of the opportunity in days\",\"is_filterable\":true,\"name\":\"tnt__age\",\"oasis\":{\"name\":\"tnt__age\"},\"ui\":{\"display_name\":\"Age\",\"placeholder\":\"Add Age\"}},{\"field_type\":\"date\",\"data_name\":\"tnt__agreement_expiration_date\",\"db_name\":\"tnt__agreement_expiration_date\",\"description\":\"Agreement Expiration Date\",\"is_filterable\":true,\"name\":\"tnt__agreement_expiration_date\",\"oasis\":{\"name\":\"tnt__agreement_expiration_date\"},\"ui\":{\"display_name\":\"Agreement Expiration Date\",\"placeholder\":\"Add Agreement Expiration Date\"}},{\"supported_filter_ops\":[\"all\",\"any\",\"not_any\",\"empty\",\"not_empty\"],\"field_type\":\"array\",\"base_type\":\"id\",\"data_name\":\"tnt__aws_reps\",\"db_name\":\"tnt__aws_reps\",\"description\":\"Tag contacts from AWS who are involved in Co-sell motion\",\"id_type\":[\"revu\"],\"is_filterable\":true,\"name\":\"tnt__aws_reps\",\"oasis\":{\"name\":\"tnt__aws_reps\"},\"ui\":{\"display_name\":\"AWS Reps\",\"placeholder\":\"AWS contacts engaged\",\"tooltip\":\"Add the AWS contacts who are involved in this deal\"}},{\"supported_filter_ops\":[\"any\",\"not_any\",\"empty\",\"not_empty\"],\"field_type\":\"enum\",\"allowed_values\":[\"AWS Market Place\",\"DevRev\"],\"data_name\":\"tnt__bill_through\",\"db_name\":\"tnt__bill_through\",\"default_value\":\"DevRev\",\"description\":\"If the customer is billed through AWS Market place, select AWS Market Place\",\"is_filterable\":true,\"name\":\"tnt__bill_through\",\"oasis\":{\"name\":\"tnt__bill_through\"},\"ui\":{\"display_name\":\"Bill through\",\"placeholder\":\"Select the right Bill Through option from the dropdown\",\"tooltip\":\"Select the right Bill Through Partner option from the dropdown\"}},{\"supported_filter_ops\":[\"any\",\"not_any\",\"empty\",\"not_empty\"],\"field_type\":\"id\",\"data_name\":\"tnt__champion\",\"db_name\":\"tnt__champion\",\"description\":\"ID of the associated Rev user championing the opportunity\",\"id_type\":[\"revu\"],\"is_filterable\":true,\"name\":\"tnt__champion\",\"oasis\":{\"name\":\"tnt__champion\"},\"ui\":{\"display_name\":\"Champion\",\"placeholder\":\"Add Champion\"}},{\"supported_filter_ops\":[\"any\",\"not_any\",\"empty\",\"not_empty\"],\"field_type\":\"rich_text\",\"data_name\":\"tnt__closed_lost_reason_details\",\"db_name\":\"tnt__closed_lost_reason_details\",\"description\":\"Closed Lost Reasons Details\",\"is_filterable\":true,\"name\":\"tnt__closed_lost_reason_details\",\"oasis\":{\"name\":\"tnt__closed_lost_reason_details\"},\"ui\":{\"display_name\":\"Closed Lost Reasons Details\",\"placeholder\":\"Add Closed Lost Reasons Details\"}},{\"supported_filter_ops\":[\"all\",\"any\",\"not_any\",\"empty\",\"not_empty\"],\"field_type\":\"array\",\"base_type\":\"enum\",\"allowed_values\":[\"Competitor relationship was Stronger\",\"Duplicate Opportunity\",\"EB buy in not secured\",\"No Champion\",\"Pain not big enough\",\"Product Deficiency\",\"ROI not material or unquantifiable\"],\"data_name\":\"tnt__closed_lost_reasons\",\"db_name\":\"tnt__closed_lost_reasons\",\"description\":\"Closed Lost Reasons\",\"is_filterable\":true,\"name\":\"tnt__closed_lost_reasons\",\"oasis\":{\"name\":\"tnt__closed_lost_reasons\"},\"ui\":{\"display_name\":\"Closed Lost Reasons\",\"placeholder\":\"Add Closed Lost Reasons\"}},{\"field_type\":\"bool\",\"data_name\":\"tnt__co_sell_with_aws\",\"db_name\":\"tnt__co_sell_with_aws\",\"description\":\"This field is used to track if we are co-selling with AWS on this deal\",\"is_filterable\":true,\"name\":\"tnt__co_sell_with_aws\",\"oasis\":{\"name\":\"tnt__co_sell_with_aws\"},\"ui\":{\"display_name\":\"Co-sell with AWS\",\"placeholder\":\"Is this AWS co-Sell Opportunity\",\"tooltip\":\"Set this field to true, if we are co-selling with AWS on this opportunity\"}},{\"field_type\":\"array\",\"base_type\":\"enum\",\"allowed_values\":[\"Ada Chat\",\"Asana\",\"Clarity\",\"Cognigy\",\"Coveo\",\"Devboost.co\",\"Drift\",\"Dynatrace\",\"Floatbot.ai\",\"Floatbot.ai \",\"FreshService\",\"Freshdesk\",\"Freshsales\",\"Freshservice\",\"Front App\",\"Fullstory\",\"Glean\",\"Google Agentspace\",\"Haptik\",\"Hebbia\",\"Help Scout\",\"Homegrown/DIY\",\"HubSpot Service Hub\",\"Hubspot SalesHub\",\"IBM\",\"Intercom\",\"Jira\",\"Jira Servicedesk\",\"Lorikeet\",\"Microsoft\",\"Monday.com\",\"Not Applicable\",\"Notion Project Tracker\",\"Oracle CX\",\"Palantir\",\"Pendo\",\"Pipedrive\",\"Pivotal Tracker\",\"Plain\",\"Purplefabric.ai\",\"Pylon\",\"SFDC SalesCloud\",\"SFDC ServiceCloud\",\"Salesforce Agentforce\",\"SearchUnify\",\"SerenityGPT\",\"ServiceNow\",\"Slack Connect\",\"SupportLogic\",\"TopDesk\",\"Trello\",\"Wrike\",\"Writer\",\"Zendesk\",\"Zoho Chat\",\"Zoho Desk\",\"Zoho Projects\",\"ZohoCRM\",\"cm.com\",\"typoapp.io\",\"unleash.so\"],\"data_name\":\"tnt__competition\",\"db_name\":\"tnt__competition\",\"description\":\"List of competitors for the opportunity\",\"is_filterable\":false,\"name\":\"tnt__competition\",\"oasis\":{\"name\":\"tnt__competition\"},\"ui\":{\"display_name\":\"Competition\",\"placeholder\":\"Add Competition\"}},{\"field_type\":\"date\",\"data_name\":\"tnt__contract_end_date\",\"db_name\":\"tnt__contract_end_date\",\"description\":\"Contract End Date\",\"is_filterable\":true,\"name\":\"tnt__contract_end_date\",\"oasis\":{\"name\":\"tnt__contract_end_date\"},\"ui\":{\"display_name\":\"Contract End Date\",\"placeholder\":\"Add Contract End Date\"}},{\"supported_filter_ops\":[\"any\",\"not_any\",\"empty\",\"not_empty\"],\"field_type\":\"int\",\"data_name\":\"tnt__contract_months\",\"db_name\":\"tnt__contract_months\",\"description\":\"Contract months\",\"is_filterable\":true,\"name\":\"tnt__contract_months\",\"oasis\":{\"name\":\"tnt__contract_months\"},\"ui\":{\"display_name\":\"Contract Months\",\"placeholder\":\"Add Contract Months\"}},{\"field_type\":\"date\",\"data_name\":\"tnt__contract_signed_date\",\"db_name\":\"tnt__contract_signed_date\",\"description\":\"Contract Signed Date\",\"is_filterable\":true,\"name\":\"tnt__contract_signed_date\",\"oasis\":{\"name\":\"tnt__contract_signed_date\"},\"ui\":{\"display_name\":\"Contract Signed Date\",\"placeholder\":\"Add Contract Signed Date\"}},{\"field_type\":\"date\",\"data_name\":\"tnt__contract_start_date\",\"db_name\":\"tnt__contract_start_date\",\"description\":\"Contract start date\",\"is_filterable\":true,\"name\":\"tnt__contract_start_date\",\"oasis\":{\"name\":\"tnt__contract_start_date\"},\"ui\":{\"display_name\":\"Contract Start Date\",\"placeholder\":\"Add Contract Start Date\"}},{\"supported_filter_ops\":[\"all\",\"any\",\"not_any\",\"empty\",\"not_empty\"],\"field_type\":\"array\",\"base_type\":\"enum\",\"allowed_values\":[\"Asana\",\"Azure DevOps\",\"Clickup\",\"Devboost.co\",\"Jira\",\"Monday.com\",\"Notion\",\"Pivotal Tracker\",\"Project Tracker\",\"Trello\",\"Wrike\",\"Zoho Projects\",\"typoapp.io\"],\"data_name\":\"tnt__current_techstack_build\",\"db_name\":\"tnt__current_techstack_build\",\"description\":\"Incumbent-Conversational PM\",\"is_filterable\":true,\"name\":\"tnt__current_techstack_build\",\"oasis\":{\"name\":\"tnt__current_techstack_build\"},\"ui\":{\"display_name\":\"Incumbent-Conversational PM\",\"placeholder\":\"Add Incumbent-Conversational PM\"}},{\"supported_filter_ops\":[\"all\",\"any\",\"not_any\",\"empty\",\"not_empty\"],\"field_type\":\"array\",\"base_type\":\"enum\",\"allowed_values\":[\"Freshsales\",\"Hubspot SalesHub\",\"Microsoft Dynamics\",\"Pipedrive\",\"SFDC SalesCloud\",\"ZohoCRM\"],\"data_name\":\"tnt__current_techstack_grow\",\"db_name\":\"tnt__current_techstack_grow\",\"description\":\"Conversational CRM\",\"is_filterable\":true,\"name\":\"tnt__current_techstack_grow\",\"oasis\":{\"name\":\"tnt__current_techstack_grow\"},\"ui\":{\"display_name\":\"Conversational CRM\",\"placeholder\":\"Add Conversational CRM\"}},{\"supported_filter_ops\":[\"all\",\"any\",\"not_any\",\"empty\",\"not_empty\"],\"field_type\":\"array\",\"base_type\":\"enum\",\"allowed_values\":[\"Ada Chat\",\"Cognigy\",\"FreshService\",\"Freshdesk\",\"Front App\",\"HubSpot Service Hub\",\"Intercom\",\"Jira Servicedesk\",\"SFDC ServiceCloud\",\"Slack Connect\",\"Trengo\",\"Zendesk\",\"Zoho Desk\",\"cm.com\"],\"data_name\":\"tnt__current_techstack_support\",\"db_name\":\"tnt__current_techstack_support\",\"description\":\"Incumbent-Support\",\"is_filterable\":true,\"name\":\"tnt__current_techstack_support\",\"oasis\":{\"name\":\"tnt__current_techstack_support\"},\"ui\":{\"display_name\":\"Incumbent-Support\",\"placeholder\":\"Add Incumbent-Support\"}},{\"supported_filter_ops\":[\"any\",\"not_any\",\"empty\",\"not_empty\"],\"field_type\":\"id\",\"data_name\":\"tnt__customer_success\",\"db_name\":\"tnt__customer_success\",\"description\":\"Specifies the Customer Success Representative for this opportunity.\",\"id_type\":[\"devu\"],\"is_filterable\":true,\"name\":\"tnt__customer_success\",\"oasis\":{\"name\":\"tnt__customer_success\"},\"origin\":\"opportunity\",\"ui\":{\"display_name\":\"CSM\",\"placeholder\":\"Add CSM\"}},{\"supported_filter_ops\":[\"any\",\"not_any\",\"empty\",\"not_empty\"],\"field_type\":\"int\",\"data_name\":\"tnt__days_in_current_stage\",\"db_name\":\"tnt__days_in_current_stage\",\"description\":\"Days in Current Stage\",\"is_filterable\":true,\"name\":\"tnt__days_in_current_stage\",\"oasis\":{\"name\":\"tnt__days_in_current_stage\"},\"ui\":{\"display_name\":\"Days in Current Stage\",\"placeholder\":\"Add Days in Current Stage\"}},{\"supported_filter_ops\":[\"any\",\"not_any\",\"empty\",\"not_empty\"],\"field_type\":\"int\",\"data_name\":\"tnt__days_in_sales_cycle\",\"db_name\":\"tnt__days_in_sales_cycle\",\"description\":\"Days in Sales Cycle\",\"is_filterable\":true,\"name\":\"tnt__days_in_sales_cycle\",\"oasis\":{\"name\":\"tnt__days_in_sales_cycle\"},\"ui\":{\"display_name\":\"Days in Sales Cycle\",\"placeholder\":\"Add Days in Sales Cycle\"}},{\"supported_filter_ops\":[\"any\",\"not_any\",\"empty\",\"not_empty\"],\"field_type\":\"rich_text\",\"data_name\":\"tnt__decision_criteria\",\"db_name\":\"tnt__decision_criteria\",\"description\":\"Decision criteria\",\"is_filterable\":true,\"name\":\"tnt__decision_criteria\",\"oasis\":{\"name\":\"tnt__decision_criteria\"},\"ui\":{\"display_name\":\"Decision criteria\",\"placeholder\":\"Add Decision criteria\"}},{\"supported_filter_ops\":[\"any\",\"not_any\",\"empty\",\"not_empty\"],\"field_type\":\"rich_text\",\"data_name\":\"tnt__decision_process\",\"db_name\":\"tnt__decision_process\",\"description\":\"Decision process\",\"is_filterable\":true,\"name\":\"tnt__decision_process\",\"oasis\":{\"name\":\"tnt__decision_process\"},\"ui\":{\"display_name\":\"Decision process\",\"placeholder\":\"Add Decision process\"}},{\"supported_filter_ops\":[\"any\",\"not_any\",\"empty\",\"not_empty\"],\"field_type\":\"id\",\"data_name\":\"tnt__economic_buyer\",\"db_name\":\"tnt__economic_buyer\",\"description\":\"ID of the associated Rev user who is the economic buyer\",\"id_type\":[\"revu\"],\"is_filterable\":true,\"name\":\"tnt__economic_buyer\",\"oasis\":{\"name\":\"tnt__economic_buyer\"},\"ui\":{\"display_name\":\"Economic Buyer\",\"placeholder\":\"Add Economic Buyer\"}},{\"supported_filter_ops\":[\"any\",\"not_any\",\"empty\",\"not_empty\"],\"field_type\":\"text\",\"data_name\":\"tnt__fiscal_quarter_close\",\"db_name\":\"tnt__fiscal_quarter_close\",\"description\":\"Fiscal Quarter Close\",\"is_filterable\":true,\"name\":\"tnt__fiscal_quarter_close\",\"oasis\":{\"name\":\"tnt__fiscal_quarter_close\"},\"ui\":{\"display_name\":\"Fiscal Quarter Close\",\"placeholder\":\"Add Fiscal Quarter Close\"}},{\"supported_filter_ops\":[\"any\",\"not_any\",\"empty\",\"not_empty\"],\"field_type\":\"text\",\"data_name\":\"tnt__fiscal_quarter_created\",\"db_name\":\"tnt__fiscal_quarter_created\",\"description\":\"Fiscal Quarter Opp Creation\",\"is_filterable\":true,\"name\":\"tnt__fiscal_quarter_created\",\"oasis\":{\"name\":\"tnt__fiscal_quarter_created\"},\"ui\":{\"display_name\":\"Fiscal Quarter Opp Creation\",\"placeholder\":\"Fiscal Quarter Opp Creation Date\"}},{\"supported_filter_ops\":[\"any\",\"not_any\",\"empty\",\"not_empty\"],\"field_type\":\"text\",\"data_name\":\"tnt__fiscal_quarter_pipeline\",\"db_name\":\"tnt__fiscal_quarter_pipeline\",\"description\":\"Fiscal Quarter Pipeline Creation\",\"is_filterable\":true,\"name\":\"tnt__fiscal_quarter_pipeline\",\"oasis\":{\"name\":\"tnt__fiscal_quarter_pipeline\"},\"ui\":{\"display_name\":\"Fiscal Quarter Pipeline Creation\",\"placeholder\":\"Fiscal Quarter Pipeline Creation\"}},{\"supported_filter_ops\":[\"any\",\"not_any\",\"empty\",\"not_empty\"],\"field_type\":\"enum\",\"allowed_values\":[\"AMER\",\"APJ\",\"EMEA\"],\"data_name\":\"tnt__geo\",\"db_name\":\"tnt__geo\",\"description\":\"Geographical region of the opportunity\",\"is_filterable\":true,\"name\":\"tnt__geo\",\"oasis\":{\"name\":\"tnt__geo\"},\"ui\":{\"display_name\":\"Theater\",\"placeholder\":\"Add Theater\"}},{\"supported_filter_ops\":[\"any\",\"not_any\",\"empty\",\"not_empty\"],\"field_type\":\"rich_text\",\"data_name\":\"tnt__identified_pain\",\"db_name\":\"tnt__identified_pain\",\"description\":\"Identified Pain\",\"is_filterable\":true,\"name\":\"tnt__identified_pain\",\"oasis\":{\"name\":\"tnt__identified_pain\"},\"ui\":{\"display_name\":\"Identified Pain\",\"placeholder\":\"Add Identified Pain\"}},{\"supported_filter_ops\":[\"all\",\"any\",\"not_any\",\"empty\",\"not_empty\"],\"field_type\":\"array\",\"base_type\":\"enum\",\"allowed_values\":[\"Appcues\",\"Catalyst\",\"ChurnZero\",\"ClientSuccess\",\"Custify\",\"Freshdesk\",\"Gainsight\",\"Intercom\",\"None\",\"Pendo\",\"Planhat\",\"Qualtrics\",\"Salesforce Sales Cloud\",\"Totango\",\"Vitally\",\"WalkMe\"],\"data_name\":\"tnt__incumbent_ccx\",\"db_name\":\"tnt__incumbent_ccx\",\"description\":\"List of incumbent customer experience platforms\",\"is_filterable\":true,\"name\":\"tnt__incumbent_ccx\",\"oasis\":{\"name\":\"tnt__incumbent_ccx\"},\"ui\":{\"display_name\":\"Incumbent-CCX\",\"placeholder\":\"Add Incumbent-CCX\"}},{\"supported_filter_ops\":[\"all\",\"any\",\"not_any\",\"empty\",\"not_empty\"],\"field_type\":\"array\",\"base_type\":\"enum\",\"allowed_values\":[\"AddSearch\",\"Algolia\",\"AlphaSense\",\"Apache Solr\",\"Coveo\",\"Dashworks\",\"Elastic\",\"Glean\",\"Guru\",\"Luigi's Box\",\"Microsoft Search\",\"None\",\"Partium\",\"Pinecone\",\"Qatalog\",\"Yext\"],\"data_name\":\"tnt__incumbent_enterprise_search\",\"db_name\":\"tnt__incumbent_enterprise_search\",\"description\":\"Incumbent-Enterprise Search\",\"is_filterable\":true,\"name\":\"tnt__incumbent_enterprise_search\",\"oasis\":{\"name\":\"tnt__incumbent_enterprise_search\"},\"ui\":{\"display_name\":\"Incumbent-Enterprise Search\",\"placeholder\":\"Add Incumbent-Enterprise Search\"}},{\"supported_filter_ops\":[\"any\",\"not_any\",\"empty\",\"not_empty\"],\"field_type\":\"enum\",\"allowed_values\":[\"Completed\",\"Started\"],\"data_name\":\"tnt__infosec\",\"db_name\":\"tnt__infosec\",\"description\":\"Update Infosec Status\",\"is_filterable\":true,\"name\":\"tnt__infosec\",\"oasis\":{\"name\":\"tnt__infosec\"},\"ui\":{\"display_name\":\"Infosec\",\"placeholder\":\"Infosec status\",\"tooltip\":\"Update Infosec Status\"}},{\"supported_filter_ops\":[\"any\",\"not_any\",\"empty\",\"not_empty\"],\"field_type\":\"enum\",\"allowed_values\":[\"Completed\",\"Started\"],\"data_name\":\"tnt__legal\",\"db_name\":\"tnt__legal\",\"description\":\"Legal review status\",\"is_filterable\":true,\"name\":\"tnt__legal\",\"oasis\":{\"name\":\"tnt__legal\"},\"ui\":{\"display_name\":\"Legal \",\"placeholder\":\"Legal Review status\",\"tooltip\":\"Update Legal review status\"}},{\"supported_filter_ops\":[\"any\",\"not_any\",\"empty\",\"not_empty\"],\"field_type\":\"rich_text\",\"data_name\":\"tnt__legal_process_complete\",\"db_name\":\"tnt__legal_process_complete\",\"description\":\"Legal process complete\",\"is_filterable\":true,\"name\":\"tnt__legal_process_complete\",\"oasis\":{\"name\":\"tnt__legal_process_complete\"},\"ui\":{\"display_name\":\"Paper Process Notes\",\"placeholder\":\"What are the steps required to getting this paperwork executed?\"}},{\"supported_filter_ops\":[\"any\",\"not_any\",\"empty\",\"not_empty\"],\"field_type\":\"enum\",\"allowed_values\":[\"Commit\",\"Omitted\",\"Pipeline\",\"Strong Upside\",\"Upside\",\"Won\"],\"data_name\":\"tnt__manager_forecast\",\"db_name\":\"tnt__manager_forecast\",\"description\":\"Sales Managers update this field with their forecasts\",\"is_filterable\":true,\"name\":\"tnt__manager_forecast\",\"oasis\":{\"name\":\"tnt__manager_forecast\"},\"ui\":{\"display_name\":\"Manager Override\",\"placeholder\":\"Sales Manager Forecast\",\"tooltip\":\"To be updated by Sales Managers\"}},{\"supported_filter_ops\":[\"any\",\"not_any\",\"empty\",\"not_empty\"],\"field_type\":\"id\",\"data_name\":\"tnt__marketing_development_representative\",\"db_name\":\"tnt__marketing_development_representative\",\"description\":\"Specifies the Marketing Development Representative for this opportunity.\",\"id_type\":[\"devu\"],\"is_filterable\":true,\"name\":\"tnt__marketing_development_representative\",\"oasis\":{\"name\":\"tnt__marketing_development_representative\"},\"origin\":\"opportunity\",\"ui\":{\"display_name\":\"MDR\",\"placeholder\":\"Add MDR\"}},{\"supported_filter_ops\":[\"any\",\"not_any\",\"empty\",\"not_empty\"],\"field_type\":\"enum\",\"allowed_values\":[\"Meeting completed - AE\",\"Meeting completed no next step\",\"Meeting rescheduled\",\"Meeting scheduled no show\"],\"data_name\":\"tnt__meeting_stage\",\"db_name\":\"tnt__meeting_stage\",\"description\":\"Current stage of the opportunity meetings\",\"is_filterable\":true,\"name\":\"tnt__meeting_stage\",\"oasis\":{\"name\":\"tnt__meeting_stage\"},\"ui\":{\"display_name\":\"Meeting stage\",\"placeholder\":\"Add Meeting stage\"}},{\"supported_filter_ops\":[\"any\",\"not_any\",\"empty\",\"not_empty\"],\"field_type\":\"rich_text\",\"data_name\":\"tnt__metrics\",\"db_name\":\"tnt__metrics\",\"description\":\"Rich text field for opportunity metrics\",\"is_filterable\":true,\"name\":\"tnt__metrics\",\"oasis\":{\"name\":\"tnt__metrics\"},\"ui\":{\"display_name\":\"Metrics\",\"placeholder\":\"Add Metrics\"}},{\"field_type\":\"bool\",\"data_name\":\"tnt__nda\",\"db_name\":\"tnt__nda\",\"default_value\":false,\"description\":\"Whether an NDA is signed for the opportunity\",\"is_filterable\":true,\"name\":\"tnt__nda\",\"oasis\":{\"name\":\"tnt__nda\"},\"ui\":{\"display_name\":\"NDA\",\"placeholder\":\"Add NDA\"}},{\"field_type\":\"date\",\"data_name\":\"tnt__next_step_due_date\",\"db_name\":\"tnt__next_step_due_date\",\"description\":\"Next step due date\",\"is_filterable\":true,\"name\":\"tnt__next_step_due_date\",\"oasis\":{\"name\":\"tnt__next_step_due_date\"},\"ui\":{\"display_name\":\"Next step due date\",\"placeholder\":\"Add Next step due date\"}},{\"field_type\":\"rich_text\",\"data_name\":\"tnt__next_steps\",\"db_name\":\"tnt__next_steps\",\"description\":\"Rich text field for next steps in the opportunity\",\"is_filterable\":false,\"name\":\"tnt__next_steps\",\"oasis\":{\"name\":\"tnt__next_steps\"},\"ui\":{\"display_name\":\"Next Steps\",\"placeholder\":\"Add Next Steps\"}},{\"field_type\":\"timestamp\",\"data_name\":\"tnt__notification_date\",\"db_name\":\"tnt__notification_date\",\"description\":\"Select the date if you want to get notified at a future date regarding this opportunity. If not, leave it blank\",\"is_filterable\":true,\"name\":\"tnt__notification_date\",\"oasis\":{\"name\":\"tnt__notification_date\"},\"ui\":{\"display_name\":\"Notification Date\",\"placeholder\":\"Select the date if you want to get notified at a future date about this opportinity\",\"tooltip\":\"Select the date if you want to get notified at a future date regarding this opportunity. If not, leave it blank\"}},{\"supported_filter_ops\":[\"any\",\"not_any\",\"empty\",\"not_empty\"],\"field_type\":\"int\",\"data_name\":\"tnt__number_of_build_licenses\",\"db_name\":\"tnt__number_of_build_licenses\",\"description\":\"Number of Build Licenses\",\"is_filterable\":true,\"name\":\"tnt__number_of_build_licenses\",\"oasis\":{\"name\":\"tnt__number_of_build_licenses\"},\"ui\":{\"display_name\":\"Number of Build Licenses\",\"placeholder\":\"Add Number of Build Licenses\"}},{\"supported_filter_ops\":[\"any\",\"not_any\",\"empty\",\"not_empty\"],\"field_type\":\"int\",\"data_name\":\"tnt__number_of_grow_licenses\",\"db_name\":\"tnt__number_of_grow_licenses\",\"description\":\"Number of Grow Licenses\",\"is_filterable\":true,\"name\":\"tnt__number_of_grow_licenses\",\"oasis\":{\"name\":\"tnt__number_of_grow_licenses\"},\"ui\":{\"display_name\":\"Number of Grow Licenses\",\"placeholder\":\"Add Number of Grow Licenses\"}},{\"supported_filter_ops\":[\"any\",\"not_any\",\"empty\",\"not_empty\"],\"field_type\":\"int\",\"data_name\":\"tnt__number_of_plug_licenses\",\"db_name\":\"tnt__number_of_plug_licenses\",\"description\":\"Number of Plug Licenses\",\"is_filterable\":true,\"name\":\"tnt__number_of_plug_licenses\",\"oasis\":{\"name\":\"tnt__number_of_plug_licenses\"},\"ui\":{\"display_name\":\"Number of Plug Licenses\",\"placeholder\":\"Add Number of Plug Licenses\"}},{\"supported_filter_ops\":[\"any\",\"not_any\",\"empty\",\"not_empty\"],\"field_type\":\"int\",\"data_name\":\"tnt__number_of_support_licenses\",\"db_name\":\"tnt__number_of_support_licenses\",\"description\":\"Number of Support Licenses\",\"is_filterable\":true,\"name\":\"tnt__number_of_support_licenses\",\"oasis\":{\"name\":\"tnt__number_of_support_licenses\"},\"ui\":{\"display_name\":\"Number of Support Licenses\",\"placeholder\":\"Add Number of Support Licenses\"}},{\"supported_filter_ops\":[\"any\",\"not_any\",\"empty\",\"not_empty\"],\"field_type\":\"enum\",\"allowed_values\":[\"Amendment\",\"New\",\"Renewal\",\"Upsell\"],\"data_name\":\"tnt__opportunity_type\",\"db_name\":\"tnt__opportunity_type\",\"default_value\":\"New\",\"description\":\"Type of the opportunity (e.g., New, Renewal)\",\"is_filterable\":true,\"is_required\":true,\"name\":\"tnt__opportunity_type\",\"oasis\":{\"name\":\"tnt__opportunity_type\"},\"ui\":{\"display_name\":\"Type\",\"placeholder\":\"Add Type\"}},{\"supported_filter_ops\":[\"all\",\"any\",\"not_any\",\"empty\",\"not_empty\"],\"field_type\":\"array\",\"base_type\":\"enum\",\"allowed_values\":[\"Custom\",\"One-off\",\"Standard\"],\"data_name\":\"tnt__partner_comp_model\",\"db_name\":\"tnt__partner_comp_model\",\"description\":\"Partner Comp Model\",\"is_filterable\":true,\"name\":\"tnt__partner_comp_model\",\"oasis\":{\"name\":\"tnt__partner_comp_model\"},\"ui\":{\"display_name\":\"Partner Comp Model\",\"placeholder\":\"Add Partner Comp Model\"}},{\"supported_filter_ops\":[\"any\",\"not_any\",\"empty\",\"not_empty\"],\"field_type\":\"id\",\"data_name\":\"tnt__partner_contact\",\"db_name\":\"tnt__partner_contact\",\"description\":\"Partner Contact\",\"id_type\":[\"revu\"],\"is_filterable\":true,\"name\":\"tnt__partner_contact\",\"oasis\":{\"name\":\"tnt__partner_contact\"},\"origin\":\"opportunity\",\"ui\":{\"display_name\":\"Partner Contact\",\"placeholder\":\"Add Partner Contact\"}},{\"field_type\":\"bool\",\"data_name\":\"tnt__partner_led_implementation\",\"db_name\":\"tnt__partner_led_implementation\",\"is_filterable\":true,\"name\":\"tnt__partner_led_implementation\",\"oasis\":{\"name\":\"tnt__partner_led_implementation\"},\"ui\":{\"display_name\":\"Partner Led Implementation\",\"placeholder\":\"Add Partner Led Implementation\"}},{\"supported_filter_ops\":[\"any\",\"not_any\",\"empty\",\"not_empty\"],\"field_type\":\"id\",\"data_name\":\"tnt__partner_name\",\"db_name\":\"tnt__partner_name\",\"description\":\"ID of the associated partner account\",\"id_type\":[\"account\"],\"is_filterable\":true,\"name\":\"tnt__partner_name\",\"oasis\":{\"name\":\"tnt__partner_name\"},\"origin\":\"opportunity\",\"ui\":{\"display_name\":\"Partner Name\",\"placeholder\":\"Add Partner Name\"}},{\"supported_filter_ops\":[\"all\",\"any\",\"not_any\",\"empty\",\"not_empty\"],\"field_type\":\"array\",\"base_type\":\"enum\",\"allowed_values\":[\"Co-Sell\",\"Demo\",\"Implementation\",\"MSP\",\"Pre-sales\",\"Referral\",\"Relationships\",\"Resell\"],\"data_name\":\"tnt__partner_role\",\"db_name\":\"tnt__partner_role\",\"description\":\"List of roles the partner plays in the opportunity\",\"is_filterable\":true,\"name\":\"tnt__partner_role\",\"oasis\":{\"name\":\"tnt__partner_role\"},\"ui\":{\"display_name\":\"Partner Role\",\"placeholder\":\"Add Partner Role\"}},{\"field_type\":\"rich_text\",\"data_name\":\"tnt__partner_sales_notes\",\"db_name\":\"tnt__partner_sales_notes\",\"description\":\"Partner Sales Notes\",\"is_filterable\":false,\"name\":\"tnt__partner_sales_notes\",\"oasis\":{\"name\":\"tnt__partner_sales_notes\"},\"ui\":{\"display_name\":\"Partner Sales Notes\",\"placeholder\":\"Add Partner Sales Notes\"}},{\"field_type\":\"bool\",\"data_name\":\"tnt__partner_sourced\",\"db_name\":\"tnt__partner_sourced\",\"default_value\":false,\"description\":\"Partner Sourced\",\"is_filterable\":true,\"name\":\"tnt__partner_sourced\",\"oasis\":{\"name\":\"tnt__partner_sourced\"},\"ui\":{\"display_name\":\"Partner Sourced\",\"placeholder\":\"Add Partner Sourced\"}},{\"supported_filter_ops\":[\"any\",\"not_any\",\"empty\",\"not_empty\"],\"field_type\":\"id\",\"data_name\":\"tnt__pbm\",\"db_name\":\"tnt__pbm\",\"description\":\"ID of the associated Dev user PBM\",\"id_type\":[\"devu\"],\"is_filterable\":true,\"name\":\"tnt__pbm\",\"oasis\":{\"name\":\"tnt__pbm\"},\"origin\":\"opportunity\",\"ui\":{\"display_name\":\"PBM\",\"placeholder\":\"Add PBM\"}},{\"field_type\":\"date\",\"data_name\":\"tnt__pipeline_created_date\",\"db_name\":\"tnt__pipeline_created_date\",\"description\":\"Pipeline Created Date\",\"is_filterable\":true,\"name\":\"tnt__pipeline_created_date\",\"oasis\":{\"name\":\"tnt__pipeline_created_date\"},\"ui\":{\"display_name\":\"Pipeline Created Date\",\"placeholder\":\"Add Pipeline Created Date\"}},{\"supported_filter_ops\":[\"any\",\"not_any\",\"empty\",\"not_empty\"],\"field_type\":\"enum\",\"allowed_values\":[\"Advisor\",\"Customer Referral\",\"Events\",\"Inbound\",\"Inbound and Events\",\"Inbound and Outbound\",\"Inbound, Outbound, and Events\",\"Marketing\",\"Not Attributed\",\"Outbound\",\"Outbound and Events\",\"Partner\"],\"data_name\":\"tnt__pipeline_source\",\"db_name\":\"tnt__pipeline_source\",\"description\":\"Pipeline Source\",\"is_filterable\":true,\"name\":\"tnt__pipeline_source\",\"oasis\":{\"name\":\"tnt__pipeline_source\"},\"ui\":{\"display_name\":\"Pipeline Source\",\"placeholder\":\"Add Pipeline Source\"}},{\"supported_filter_ops\":[\"all\",\"any\",\"not_any\",\"empty\",\"not_empty\"],\"field_type\":\"array\",\"base_type\":\"enum\",\"allowed_values\":[\"Additional Base Storage\",\"Additional File Storage\",\"Build Pro Subscription\",\"Build Starter Subscription\",\"Build Ultimate Subscription\",\"Build and Support Pro\",\"Build and Support Ultimate\",\"Grow Pro\",\"Grow Starter\",\"OneCRM Ultimate\",\"PLuG (UE)\",\"PLuG (UE) Onetime Additional Sessions\",\"PLuG Pro Subscription\",\"PLuG Starter Subscription\",\"PLuG Ultimate Subscription\",\"Support Pro Subscription\",\"Support Starter Subscription\",\"Support Ultimate Subscription\",\"WhatsApp Messages\",\"WhatsApp Numbers\"],\"data_name\":\"tnt__plans\",\"db_name\":\"tnt__plans\",\"description\":\"List of plans associated with the opportunity\",\"is_filterable\":true,\"name\":\"tnt__plans\",\"oasis\":{\"name\":\"tnt__plans\"},\"ui\":{\"display_name\":\"Plans\",\"placeholder\":\"Add Plans\"}},{\"supported_filter_ops\":[\"all\",\"any\",\"not_any\",\"empty\",\"not_empty\"],\"field_type\":\"array\",\"base_type\":\"enum\",\"allowed_values\":[\"PB 1 - Support\",\"PB 2 - Conversational PM\",\"PB 3 - Enterprise Search\",\"PB 4 - Conversational CX\",\"PB 5 - Other\"],\"data_name\":\"tnt__playbook\",\"db_name\":\"tnt__playbook\",\"description\":\"Select the Playbook/s that suits the customer Use Case\",\"is_filterable\":true,\"is_required\":false,\"name\":\"tnt__playbook\",\"oasis\":{\"name\":\"tnt__playbook\"},\"ui\":{\"display_name\":\"Playbook\",\"placeholder\":\"Select the Playbook/s that suits the customer Use Case\",\"tooltip\":\"Select all the Playbook that Applies to the Customer Use Case\"}},{\"field_type\":\"bool\",\"data_name\":\"tnt__poc\",\"db_name\":\"tnt__poc\",\"default_value\":false,\"description\":\"Whether the opportunity includes a proof of concept\",\"is_filterable\":true,\"name\":\"tnt__poc\",\"oasis\":{\"name\":\"tnt__poc\"},\"ui\":{\"display_name\":\"POC\",\"placeholder\":\"Add POC\",\"tooltip\":\"Only SE need to update this field\"}},{\"field_type\":\"date\",\"data_name\":\"tnt__poc_end_date\",\"db_name\":\"tnt__poc_end_date\",\"description\":\"End date of the proof of concept\",\"is_filterable\":true,\"name\":\"tnt__poc_end_date\",\"oasis\":{\"name\":\"tnt__poc_end_date\"},\"ui\":{\"display_name\":\"POC End Date\",\"placeholder\":\"Add POC End Date\"}},{\"supported_filter_ops\":[\"any\",\"not_any\",\"empty\",\"not_empty\"],\"field_type\":\"rich_text\",\"data_name\":\"tnt__poc_notes\",\"db_name\":\"tnt__poc_notes\",\"description\":\"Rich text field for notes on the proof of concept\",\"is_filterable\":true,\"name\":\"tnt__poc_notes\",\"oasis\":{\"name\":\"tnt__poc_notes\"},\"ui\":{\"display_name\":\"POC Notes\",\"placeholder\":\"Add POC Notes\"}},{\"field_type\":\"date\",\"data_name\":\"tnt__poc_start_date\",\"db_name\":\"tnt__poc_start_date\",\"description\":\"Start date of the proof of concept\",\"is_filterable\":true,\"name\":\"tnt__poc_start_date\",\"oasis\":{\"name\":\"tnt__poc_start_date\"},\"ui\":{\"display_name\":\"POC Start Date\",\"placeholder\":\"Add POC Start Date\"}},{\"supported_filter_ops\":[\"any\",\"not_any\",\"empty\",\"not_empty\"],\"field_type\":\"id\",\"data_name\":\"tnt__primary_contact\",\"db_name\":\"tnt__primary_contact\",\"description\":\"Primary Contact\",\"id_type\":[\"revu\"],\"is_filterable\":true,\"name\":\"tnt__primary_contact\",\"oasis\":{\"name\":\"tnt__primary_contact\"},\"origin\":\"opportunity\",\"ui\":{\"display_name\":\"Attribution Contact\",\"placeholder\":\"Add Attribution Contact\"}},{\"supported_filter_ops\":[\"all\",\"any\",\"not_any\",\"empty\",\"not_empty\"],\"field_type\":\"array\",\"base_type\":\"enum\",\"allowed_values\":[\"Build\",\"Grow\",\"PLuG Observability\",\"Support\"],\"data_name\":\"tnt__primary_products\",\"db_name\":\"tnt__primary_products\",\"description\":\"Primary Products\",\"is_filterable\":true,\"name\":\"tnt__primary_products\",\"oasis\":{\"name\":\"tnt__primary_products\"},\"ui\":{\"display_name\":\"Primary Products\",\"placeholder\":\"Add Primary Products\"}},{\"supported_filter_ops\":[\"any\",\"not_any\",\"empty\",\"not_empty\"],\"field_type\":\"int\",\"data_name\":\"tnt__probability_by_forecast\",\"db_name\":\"tnt__probability_by_forecast\",\"description\":\"Forecast Probability\",\"is_filterable\":true,\"name\":\"tnt__probability_by_forecast\",\"oasis\":{\"name\":\"tnt__probability_by_forecast\"},\"ui\":{\"display_name\":\"Probability By Forecast Category\",\"placeholder\":\"Enter probability\"}},{\"supported_filter_ops\":[\"all\",\"any\",\"not_any\",\"empty\",\"not_empty\"],\"field_type\":\"array\",\"base_type\":\"enum\",\"allowed_values\":[\"Build\",\"Grow\",\"PLuG Observability\",\"Support\"],\"data_name\":\"tnt__products\",\"db_name\":\"tnt__products\",\"description\":\"Products\",\"is_filterable\":true,\"name\":\"tnt__products\",\"oasis\":{\"name\":\"tnt__products\"},\"ui\":{\"display_name\":\"Products\",\"placeholder\":\"Add Products\"}},{\"supported_filter_ops\":[\"any\",\"not_any\",\"empty\",\"not_empty\"],\"field_type\":\"int\",\"data_name\":\"tnt__ramped_arr\",\"db_name\":\"tnt__ramped_arr\",\"description\":\"Add Ramped ARR\",\"is_filterable\":true,\"name\":\"tnt__ramped_arr\",\"oasis\":{\"name\":\"tnt__ramped_arr\"},\"ui\":{\"display_name\":\"Ramped ARR\",\"placeholder\":\"Add Ramped ARR\"}},{\"supported_filter_ops\":[\"any\",\"not_any\",\"empty\",\"not_empty\"],\"field_type\":\"enum\",\"allowed_values\":[\"ANZ\",\"Canada\",\"Central & Eastern Europe\",\"Central Asia\",\"East ASIA\",\"Eastern Mediterranean, Middle East & North Africa\",\"India\",\"LATAM\",\"Northern Europe & Eastern Emerging Markets\",\"SEA\",\"South & Mediterranean Europe\",\"South ASIA\",\"Sub Saharan Africa\",\"US\",\"Western Europe\"],\"data_name\":\"tnt__region\",\"db_name\":\"tnt__region\",\"description\":\"Region\",\"is_filterable\":true,\"name\":\"tnt__region\",\"oasis\":{\"name\":\"tnt__region\"},\"ui\":{\"display_name\":\"Region\",\"placeholder\":\"Add Region\"}},{\"field_type\":\"text\",\"data_name\":\"tnt__registration_id\",\"db_name\":\"tnt__registration_id\",\"description\":\"Registration ID\",\"is_filterable\":false,\"name\":\"tnt__registration_id\",\"oasis\":{\"name\":\"tnt__registration_id\"},\"ui\":{\"display_name\":\"Registration ID\",\"placeholder\":\"Add Registration ID\"}},{\"field_type\":\"text\",\"data_name\":\"tnt__registration_status\",\"db_name\":\"tnt__registration_status\",\"description\":\"Registration Status\",\"is_filterable\":false,\"name\":\"tnt__registration_status\",\"oasis\":{\"name\":\"tnt__registration_status\"},\"ui\":{\"display_name\":\"Registration Status\",\"placeholder\":\"Add Registration Status\"}},{\"supported_filter_ops\":[\"all\",\"any\",\"not_any\",\"empty\",\"not_empty\"],\"field_type\":\"array\",\"base_type\":\"enum\",\"allowed_values\":[\"Others\",\"VPC\"],\"data_name\":\"tnt__required_capability\",\"db_name\":\"tnt__required_capability\",\"description\":\"Required Capability of the customer\",\"is_filterable\":true,\"name\":\"tnt__required_capability\",\"oasis\":{\"name\":\"tnt__required_capability\"},\"ui\":{\"display_name\":\"Required Capability\",\"placeholder\":\"Add the required capability of here\",\"tooltip\":\"Add the required capability of the customer here\"}},{\"supported_filter_ops\":[\"any\",\"not_any\",\"empty\",\"not_empty\"],\"field_type\":\"id\",\"data_name\":\"tnt__sales_development_representative\",\"db_name\":\"tnt__sales_development_representative\",\"description\":\"Specifies the Sales Development Representative for this Account.\",\"id_type\":[\"devu\"],\"is_filterable\":true,\"name\":\"tnt__sales_development_representative\",\"oasis\":{\"name\":\"tnt__sales_development_representative\"},\"origin\":\"opportunity\",\"ui\":{\"display_name\":\"SDR\",\"placeholder\":\"Add SDR\"}},{\"supported_filter_ops\":[\"any\",\"not_any\",\"empty\",\"not_empty\"],\"field_type\":\"id\",\"data_name\":\"tnt__sales_engineer\",\"db_name\":\"tnt__sales_engineer\",\"description\":\"Specifies the Sales Engineer for this Account.\",\"id_type\":[\"devu\"],\"is_filterable\":true,\"name\":\"tnt__sales_engineer\",\"oasis\":{\"name\":\"tnt__sales_engineer\"},\"origin\":\"opportunity\",\"ui\":{\"display_name\":\"SE\",\"placeholder\":\"Add SE\"}},{\"supported_filter_ops\":[\"any\",\"not_any\",\"empty\",\"not_empty\"],\"field_type\":\"enum\",\"allowed_values\":[\"Enterprise\",\"Mid-Market\",\"SMB\",\"Start-Up\"],\"data_name\":\"tnt__segment\",\"db_name\":\"tnt__segment\",\"description\":\"This field indicates the segment of the company.\",\"is_filterable\":true,\"name\":\"tnt__segment\",\"oasis\":{\"name\":\"tnt__segment\"},\"ui\":{\"display_name\":\"Segment\",\"placeholder\":\"Add company segment\"}},{\"field_type\":\"bool\",\"data_name\":\"tnt__shared_with_partners\",\"db_name\":\"tnt__shared_with_partners\",\"is_filterable\":true,\"name\":\"tnt__shared_with_partners\",\"oasis\":{\"name\":\"tnt__shared_with_partners\"},\"ui\":{\"display_name\":\"Shared with Partners\",\"placeholder\":\"Add Shared with Partners\"}},{\"supported_filter_ops\":[\"any\",\"not_any\",\"empty\",\"not_empty\"],\"field_type\":\"enum\",\"allowed_values\":[\"Advisor\",\"Customer Referral\",\"Events\",\"Inbound\",\"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\":\"enum\",\"allowed_values\":[\"Afghanistan\",\"Argentina\",\"Australia\",\"Bangladesh\",\"Benelux\",\"Bhutan\",\"Brazil\",\"Brunei\",\"Cambodia\",\"Canada Central\",\"Canada East\",\"Canada North\",\"Canada West\",\"Central US\",\"China\",\"DAC\",\"East US\",\"Eastern Emerging Markets\",\"Eastern Europe\",\"Eastern Mediterranean\",\"Fiji\",\"France\",\"Hong Kong\",\"Iberia\",\"India\",\"India North\",\"India South\",\"India West\",\"Indonesia\",\"Japan\",\"Kazakhstan\",\"Kyrgyzstan\",\"Laos\",\"Malaysia\",\"Maldives\",\"Mediterranean\",\"Middle East\",\"Mongolia\",\"Myanmar\",\"Nepal\",\"New Zealand\",\"Nordics\",\"North Africa\",\"Pakistan\",\"Papua New Guinea\",\"Philippines\",\"Phillipines\",\"Rest of LATAM\",\"Samoa\",\"Singapore\",\"Solomon Islands\",\"South Korea\",\"Sri Lanka\",\"Sub Saharan Africa\",\"Taiwan\",\"Tajikistan\",\"Thailand\",\"Tonga\",\"Turkmenistan\",\"UK/I\",\"Uzbekistan\",\"Vanuatu\",\"Vietnam\",\"West US\"],\"data_name\":\"tnt__sub_region\",\"db_name\":\"tnt__sub_region\",\"description\":\"Sub-Region\",\"is_filterable\":true,\"name\":\"tnt__sub_region\",\"oasis\":{\"name\":\"tnt__sub_region\"},\"ui\":{\"display_name\":\"Sub-Region\",\"placeholder\":\"Add Sub-region\"}},{\"field_type\":\"bool\",\"data_name\":\"tnt__technical_voc\",\"db_name\":\"tnt__technical_voc\",\"default_value\":false,\"description\":\"Technical VOC\",\"is_filterable\":true,\"name\":\"tnt__technical_voc\",\"oasis\":{\"name\":\"tnt__technical_voc\"},\"ui\":{\"display_name\":\"Technical VOC\",\"placeholder\":\"Add Technical VOC\"}},{\"field_type\":\"int\",\"data_name\":\"tnt__weighted_pipeline_forecast_category\",\"db_name\":\"tnt__weighted_pipeline_forecast_category\",\"description\":\"Automated field to show the weighted pipeline based on Forecast Category of the opportunity\",\"is_filterable\":false,\"name\":\"tnt__weighted_pipeline_forecast_category\",\"oasis\":{\"name\":\"tnt__weighted_pipeline_forecast_category\"},\"ui\":{\"display_name\":\"Weighted Pipeline (Forecast Category)\",\"placeholder\":\"Weighted Pipeline based on Forecast Category of the opportunity\",\"tooltip\":\"Automated field to show the weighted pipeline based on Forecast Category of the opportunity\"}},{\"field_type\":\"int\",\"data_name\":\"tnt__weighted_pipeline_stage\",\"db_name\":\"tnt__weighted_pipeline_stage\",\"description\":\"Automated field to calculate the weighted pipeline based on opportunity stage\",\"is_filterable\":false,\"name\":\"tnt__weighted_pipeline_stage\",\"oasis\":{\"name\":\"tnt__weighted_pipeline_stage\"},\"ui\":{\"display_name\":\"Weighted Pipeline (Stage)\",\"placeholder\":\"Add Weighted Pipeline (Stage)\",\"tooltip\":\"Automated field to calculate the weighted pipeline based on opportunity stage\"}},{\"supported_filter_ops\":[\"any\",\"not_any\",\"empty\",\"not_empty\"],\"field_type\":\"rich_text\",\"data_name\":\"tnt__why_anything\",\"db_name\":\"tnt__why_anything\",\"description\":\"Enter why anything\",\"is_filterable\":true,\"name\":\"tnt__why_anything\",\"oasis\":{\"name\":\"tnt__why_anything\"},\"ui\":{\"display_name\":\"Why Anything?\",\"placeholder\":\"Add Why Anything?\"}},{\"supported_filter_ops\":[\"any\",\"not_any\",\"empty\",\"not_empty\"],\"field_type\":\"rich_text\",\"data_name\":\"tnt__why_devrev\",\"db_name\":\"tnt__why_devrev\",\"description\":\"Enter why devrev\",\"is_filterable\":true,\"name\":\"tnt__why_devrev\",\"oasis\":{\"name\":\"tnt__why_devrev\"},\"ui\":{\"display_name\":\"Why DevRev?\",\"placeholder\":\"Add Why DevRev?\"}},{\"supported_filter_ops\":[\"any\",\"not_any\",\"empty\",\"not_empty\"],\"field_type\":\"rich_text\",\"data_name\":\"tnt__why_now\",\"db_name\":\"tnt__why_now\",\"description\":\"Enter why now\",\"is_filterable\":true,\"name\":\"tnt__why_now\",\"oasis\":{\"name\":\"tnt__why_now\"},\"ui\":{\"display_name\":\"Why Now?\",\"placeholder\":\"Add Why Now?\"}},{\"supported_filter_ops\":[\"any\",\"not_any\",\"empty\",\"not_empty\"],\"field_type\":\"rich_text\",\"data_name\":\"tnt__win_notes\",\"db_name\":\"tnt__win_notes\",\"description\":\"Win Notes\",\"is_filterable\":true,\"name\":\"tnt__win_notes\",\"oasis\":{\"name\":\"tnt__win_notes\"},\"ui\":{\"display_name\":\"Win Notes\",\"placeholder\":\"Add Win Notes\"}}],\"name\":\"_gen:implicit:opportunity\"}],\"field_descriptors\":[{\"field_type\":\"uenum\",\"allowed_values\":[{\"id\":1111170702,\"label\":\"Hubspot/devrev.ai/deals:Sales Pipeline\",\"ordinal\":1,\"tooltip\":\"deals.Sales Pipeline/devrev.ai/Hubspot\",\"value\":\"nb2ye43qn52f6zdfozzgk5romfux6njqgq2teobzgbpyizlbnrzs4zdfmzqvk3du\"},{\"id\":1111171576,\"label\":\"Test\",\"ordinal\":2,\"value\":\"test\"}],\"data_name\":\"subtype\",\"db_name\":\"subtype\",\"description\":\"Subtype of the object.\",\"name\":\"subtype\",\"oasis\":{\"name\":\"subtype\"},\"ui\":{\"display_name\":\"Subtype\"}},{\"field_type\":\"id\",\"data_name\":\"id\",\"db_name\":\"id\",\"description\":\"The opportunity which was updated.\",\"id_type\":[\"opportunity\"],\"is_required\":true,\"name\":\"id\",\"oasis\":{\"name\":\"id\"},\"ui\":{\"display_name\":\"Opportunity Object\"}},{\"field_type\":\"text\",\"data_name\":\"body\",\"db_name\":\"body\",\"description\":\"The description of the opportunity.\",\"name\":\"body\",\"oasis\":{\"name\":\"body\"},\"ui\":{\"display_name\":\"Description\"}},{\"field_type\":\"timestamp\",\"data_name\":\"created_date\",\"db_name\":\"created_date\",\"description\":\"Timestamp when the opportunity was created.\",\"name\":\"created_date\",\"oasis\":{\"name\":\"created_date\"}},{\"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\":\"timestamp\",\"data_name\":\"modified_date\",\"db_name\":\"modified_date\",\"description\":\"Timestamp when the opportunity was last modified.\",\"name\":\"modified_date\",\"oasis\":{\"name\":\"modified_date\"}},{\"field_type\":\"composite\",\"composite_type\":\"_gen:stage\",\"data_name\":\"stage\",\"db_name\":\"stage\",\"description\":\"Describes the current stage of a opportunity\",\"name\":\"stage\",\"oasis\":{\"name\":\"stage\"}},{\"field_type\":\"timestamp\",\"data_name\":\"target_close_date\",\"db_name\":\"target_close_date\",\"description\":\"Timestamp when the opportunity is expected to be closed.\",\"name\":\"target_close_date\",\"oasis\":{\"name\":\"target_close_date\"}},{\"field_type\":\"text\",\"data_name\":\"title\",\"db_name\":\"title\",\"description\":\"Title of the opportunity.\",\"is_required\":true,\"name\":\"title\",\"oasis\":{\"name\":\"title\"}},{\"field_type\":\"composite\",\"composite_type\":\"_gen:account\",\"data_name\":\"account\",\"db_name\":\"account\",\"name\":\"account\",\"oasis\":{\"name\":\"account\"}},{\"field_type\":\"timestamp\",\"data_name\":\"actual_close_date\",\"db_name\":\"actual_close_date\",\"description\":\"Timestamp when the opportunity was actually closed.\",\"name\":\"actual_close_date\",\"oasis\":{\"name\":\"actual_close_date\"}},{\"field_type\":\"composite\",\"composite_type\":\"_gen:annual_contract_value\",\"data_name\":\"annual_contract_value\",\"db_name\":\"annual_contract_value\",\"description\":\"Annual contract value of an opportunity in USD\",\"name\":\"annual_contract_value\",\"oasis\":{\"name\":\"annual_contract_value\"}},{\"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\":\"text\",\"data_name\":\"external_ref\",\"db_name\":\"external_ref\",\"description\":\"An opaque key that's associated with the work item that's\\nguaranteed to be unique across all work items of same type (issue,\\nticket, etc).\\n\",\"name\":\"external_ref\",\"oasis\":{\"name\":\"external_ref\"}},{\"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\":\"composite\",\"composite_type\":\"_gen:implicit:opportunity\",\"data_name\":\"old_opportunity\",\"db_name\":\"old_opportunity\",\"description\":\"Old opportunity object\",\"name\":\"old_opportunity\",\"oasis\":{\"name\":\"old_opportunity\"},\"ui\":{\"display_name\":\"Old Opportunity\"}},{\"field_type\":\"array\",\"base_type\":\"composite\",\"composite_type\":\"_gen:user-summary\",\"data_name\":\"owned_by\",\"db_name\":\"owned_by\",\"is_required\":true,\"name\":\"owned_by\",\"oasis\":{\"name\":\"owned_by\"}},{\"field_type\":\"array\",\"base_type\":\"composite\",\"composite_type\":\"_gen:user-summary\",\"data_name\":\"reported_by\",\"db_name\":\"reported_by\",\"name\":\"reported_by\",\"oasis\":{\"name\":\"reported_by\"}},{\"field_type\":\"text\",\"data_name\":\"state_display_name\",\"db_name\":\"state_display_name\",\"description\":\"Display name for current state.\",\"name\":\"state_display_name\",\"oasis\":{\"name\":\"state_display_name\"}},{\"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\":\"composite\",\"composite_type\":\"_gen:value\",\"data_name\":\"value\",\"db_name\":\"value\",\"description\":\"The value of the opportunity in USD.\",\"name\":\"value\",\"oasis\":{\"name\":\"value\"}},{\"supported_filter_ops\":[\"all\",\"any\",\"not_any\",\"empty\",\"not_empty\"],\"field_type\":\"array\",\"base_type\":\"id\",\"data_name\":\"tnt__advisor\",\"db_name\":\"tnt__advisor\",\"description\":\"Add Advisor contact\",\"id_type\":[\"revu\"],\"is_filterable\":true,\"name\":\"tnt__advisor\",\"oasis\":{\"name\":\"tnt__advisor\"},\"ui\":{\"display_name\":\"Advisor\",\"placeholder\":\"Add Advisor contact\",\"tooltip\":\"Add the Advisor contact involved in the deal\"}},{\"supported_filter_ops\":[\"any\",\"not_any\",\"empty\",\"not_empty\"],\"field_type\":\"id\",\"data_name\":\"tnt__advisor_contact\",\"db_name\":\"tnt__advisor_contact\",\"description\":\"Advisor Contact\",\"id_type\":[\"revu\"],\"is_filterable\":true,\"name\":\"tnt__advisor_contact\",\"oasis\":{\"name\":\"tnt__advisor_contact\"},\"ui\":{\"display_name\":\"Advisor Contact\",\"placeholder\":\"Add Advisor Contact\"}},{\"supported_filter_ops\":[\"any\",\"not_any\",\"empty\",\"not_empty\"],\"field_type\":\"id\",\"data_name\":\"tnt__advisor_name\",\"db_name\":\"tnt__advisor_name\",\"description\":\"ID of the associated account advisor\",\"id_type\":[\"account\"],\"is_filterable\":true,\"name\":\"tnt__advisor_name\",\"oasis\":{\"name\":\"tnt__advisor_name\"},\"ui\":{\"display_name\":\"Advisor Name\",\"placeholder\":\"Add Advisor Name\"}},{\"supported_filter_ops\":[\"any\",\"not_any\",\"empty\",\"not_empty\"],\"field_type\":\"int\",\"data_name\":\"tnt__age\",\"db_name\":\"tnt__age\",\"description\":\"Age of the opportunity in days\",\"is_filterable\":true,\"name\":\"tnt__age\",\"oasis\":{\"name\":\"tnt__age\"},\"ui\":{\"display_name\":\"Age\",\"placeholder\":\"Add Age\"}},{\"field_type\":\"date\",\"data_name\":\"tnt__agreement_expiration_date\",\"db_name\":\"tnt__agreement_expiration_date\",\"description\":\"Agreement Expiration Date\",\"is_filterable\":true,\"name\":\"tnt__agreement_expiration_date\",\"oasis\":{\"name\":\"tnt__agreement_expiration_date\"},\"ui\":{\"display_name\":\"Agreement Expiration Date\",\"placeholder\":\"Add Agreement Expiration Date\"}},{\"supported_filter_ops\":[\"all\",\"any\",\"not_any\",\"empty\",\"not_empty\"],\"field_type\":\"array\",\"base_type\":\"id\",\"data_name\":\"tnt__aws_reps\",\"db_name\":\"tnt__aws_reps\",\"description\":\"Tag contacts from AWS who are involved in Co-sell motion\",\"id_type\":[\"revu\"],\"is_filterable\":true,\"name\":\"tnt__aws_reps\",\"oasis\":{\"name\":\"tnt__aws_reps\"},\"ui\":{\"display_name\":\"AWS Reps\",\"placeholder\":\"AWS contacts engaged\",\"tooltip\":\"Add the AWS contacts who are involved in this deal\"}},{\"supported_filter_ops\":[\"any\",\"not_any\",\"empty\",\"not_empty\"],\"field_type\":\"enum\",\"allowed_values\":[\"AWS Market Place\",\"DevRev\"],\"data_name\":\"tnt__bill_through\",\"db_name\":\"tnt__bill_through\",\"default_value\":\"DevRev\",\"description\":\"If the customer is billed through AWS Market place, select AWS Market Place\",\"is_filterable\":true,\"name\":\"tnt__bill_through\",\"oasis\":{\"name\":\"tnt__bill_through\"},\"ui\":{\"display_name\":\"Bill through\",\"placeholder\":\"Select the right Bill Through option from the dropdown\",\"tooltip\":\"Select the right Bill Through Partner option from the dropdown\"}},{\"supported_filter_ops\":[\"any\",\"not_any\",\"empty\",\"not_empty\"],\"field_type\":\"id\",\"data_name\":\"tnt__champion\",\"db_name\":\"tnt__champion\",\"description\":\"ID of the associated Rev user championing the opportunity\",\"id_type\":[\"revu\"],\"is_filterable\":true,\"name\":\"tnt__champion\",\"oasis\":{\"name\":\"tnt__champion\"},\"ui\":{\"display_name\":\"Champion\",\"placeholder\":\"Add Champion\"}},{\"supported_filter_ops\":[\"any\",\"not_any\",\"empty\",\"not_empty\"],\"field_type\":\"rich_text\",\"data_name\":\"tnt__closed_lost_reason_details\",\"db_name\":\"tnt__closed_lost_reason_details\",\"description\":\"Closed Lost Reasons Details\",\"is_filterable\":true,\"name\":\"tnt__closed_lost_reason_details\",\"oasis\":{\"name\":\"tnt__closed_lost_reason_details\"},\"ui\":{\"display_name\":\"Closed Lost Reasons Details\",\"placeholder\":\"Add Closed Lost Reasons Details\"}},{\"supported_filter_ops\":[\"all\",\"any\",\"not_any\",\"empty\",\"not_empty\"],\"field_type\":\"array\",\"base_type\":\"enum\",\"allowed_values\":[\"Competitor relationship was Stronger\",\"Duplicate Opportunity\",\"EB buy in not secured\",\"No Champion\",\"Pain not big enough\",\"Product Deficiency\",\"ROI not material or unquantifiable\"],\"data_name\":\"tnt__closed_lost_reasons\",\"db_name\":\"tnt__closed_lost_reasons\",\"description\":\"Closed Lost Reasons\",\"is_filterable\":true,\"name\":\"tnt__closed_lost_reasons\",\"oasis\":{\"name\":\"tnt__closed_lost_reasons\"},\"ui\":{\"display_name\":\"Closed Lost Reasons\",\"placeholder\":\"Add Closed Lost Reasons\"}},{\"field_type\":\"bool\",\"data_name\":\"tnt__co_sell_with_aws\",\"db_name\":\"tnt__co_sell_with_aws\",\"description\":\"This field is used to track if we are co-selling with AWS on this deal\",\"is_filterable\":true,\"name\":\"tnt__co_sell_with_aws\",\"oasis\":{\"name\":\"tnt__co_sell_with_aws\"},\"ui\":{\"display_name\":\"Co-sell with AWS\",\"placeholder\":\"Is this AWS co-Sell Opportunity\",\"tooltip\":\"Set this field to true, if we are co-selling with AWS on this opportunity\"}},{\"field_type\":\"array\",\"base_type\":\"enum\",\"allowed_values\":[\"Ada Chat\",\"Asana\",\"Clarity\",\"Cognigy\",\"Coveo\",\"Devboost.co\",\"Drift\",\"Dynatrace\",\"Floatbot.ai\",\"Floatbot.ai \",\"FreshService\",\"Freshdesk\",\"Freshsales\",\"Freshservice\",\"Front App\",\"Fullstory\",\"Glean\",\"Google Agentspace\",\"Haptik\",\"Hebbia\",\"Help Scout\",\"Homegrown/DIY\",\"HubSpot Service Hub\",\"Hubspot SalesHub\",\"IBM\",\"Intercom\",\"Jira\",\"Jira Servicedesk\",\"Lorikeet\",\"Microsoft\",\"Monday.com\",\"Not Applicable\",\"Notion Project Tracker\",\"Oracle CX\",\"Palantir\",\"Pendo\",\"Pipedrive\",\"Pivotal Tracker\",\"Plain\",\"Purplefabric.ai\",\"Pylon\",\"SFDC SalesCloud\",\"SFDC ServiceCloud\",\"Salesforce Agentforce\",\"SearchUnify\",\"SerenityGPT\",\"ServiceNow\",\"Slack Connect\",\"SupportLogic\",\"TopDesk\",\"Trello\",\"Wrike\",\"Writer\",\"Zendesk\",\"Zoho Chat\",\"Zoho Desk\",\"Zoho Projects\",\"ZohoCRM\",\"cm.com\",\"typoapp.io\",\"unleash.so\"],\"data_name\":\"tnt__competition\",\"db_name\":\"tnt__competition\",\"description\":\"List of competitors for the opportunity\",\"is_filterable\":false,\"name\":\"tnt__competition\",\"oasis\":{\"name\":\"tnt__competition\"},\"ui\":{\"display_name\":\"Competition\",\"placeholder\":\"Add Competition\"}},{\"field_type\":\"date\",\"data_name\":\"tnt__contract_end_date\",\"db_name\":\"tnt__contract_end_date\",\"description\":\"Contract End Date\",\"is_filterable\":true,\"name\":\"tnt__contract_end_date\",\"oasis\":{\"name\":\"tnt__contract_end_date\"},\"ui\":{\"display_name\":\"Contract End Date\",\"placeholder\":\"Add Contract End Date\"}},{\"supported_filter_ops\":[\"any\",\"not_any\",\"empty\",\"not_empty\"],\"field_type\":\"int\",\"data_name\":\"tnt__contract_months\",\"db_name\":\"tnt__contract_months\",\"description\":\"Contract months\",\"is_filterable\":true,\"name\":\"tnt__contract_months\",\"oasis\":{\"name\":\"tnt__contract_months\"},\"ui\":{\"display_name\":\"Contract Months\",\"placeholder\":\"Add Contract Months\"}},{\"field_type\":\"date\",\"data_name\":\"tnt__contract_signed_date\",\"db_name\":\"tnt__contract_signed_date\",\"description\":\"Contract Signed Date\",\"is_filterable\":true,\"name\":\"tnt__contract_signed_date\",\"oasis\":{\"name\":\"tnt__contract_signed_date\"},\"ui\":{\"display_name\":\"Contract Signed Date\",\"placeholder\":\"Add Contract Signed Date\"}},{\"field_type\":\"date\",\"data_name\":\"tnt__contract_start_date\",\"db_name\":\"tnt__contract_start_date\",\"description\":\"Contract start date\",\"is_filterable\":true,\"name\":\"tnt__contract_start_date\",\"oasis\":{\"name\":\"tnt__contract_start_date\"},\"ui\":{\"display_name\":\"Contract Start Date\",\"placeholder\":\"Add Contract Start Date\"}},{\"supported_filter_ops\":[\"all\",\"any\",\"not_any\",\"empty\",\"not_empty\"],\"field_type\":\"array\",\"base_type\":\"enum\",\"allowed_values\":[\"Asana\",\"Azure DevOps\",\"Clickup\",\"Devboost.co\",\"Jira\",\"Monday.com\",\"Notion\",\"Pivotal Tracker\",\"Project Tracker\",\"Trello\",\"Wrike\",\"Zoho Projects\",\"typoapp.io\"],\"data_name\":\"tnt__current_techstack_build\",\"db_name\":\"tnt__current_techstack_build\",\"description\":\"Incumbent-Conversational PM\",\"is_filterable\":true,\"name\":\"tnt__current_techstack_build\",\"oasis\":{\"name\":\"tnt__current_techstack_build\"},\"ui\":{\"display_name\":\"Incumbent-Conversational PM\",\"placeholder\":\"Add Incumbent-Conversational PM\"}},{\"supported_filter_ops\":[\"all\",\"any\",\"not_any\",\"empty\",\"not_empty\"],\"field_type\":\"array\",\"base_type\":\"enum\",\"allowed_values\":[\"Freshsales\",\"Hubspot SalesHub\",\"Microsoft Dynamics\",\"Pipedrive\",\"SFDC SalesCloud\",\"ZohoCRM\"],\"data_name\":\"tnt__current_techstack_grow\",\"db_name\":\"tnt__current_techstack_grow\",\"description\":\"Conversational CRM\",\"is_filterable\":true,\"name\":\"tnt__current_techstack_grow\",\"oasis\":{\"name\":\"tnt__current_techstack_grow\"},\"ui\":{\"display_name\":\"Conversational CRM\",\"placeholder\":\"Add Conversational CRM\"}},{\"supported_filter_ops\":[\"all\",\"any\",\"not_any\",\"empty\",\"not_empty\"],\"field_type\":\"array\",\"base_type\":\"enum\",\"allowed_values\":[\"Ada Chat\",\"Cognigy\",\"FreshService\",\"Freshdesk\",\"Front App\",\"HubSpot Service Hub\",\"Intercom\",\"Jira Servicedesk\",\"SFDC ServiceCloud\",\"Slack Connect\",\"Trengo\",\"Zendesk\",\"Zoho Desk\",\"cm.com\"],\"data_name\":\"tnt__current_techstack_support\",\"db_name\":\"tnt__current_techstack_support\",\"description\":\"Incumbent-Support\",\"is_filterable\":true,\"name\":\"tnt__current_techstack_support\",\"oasis\":{\"name\":\"tnt__current_techstack_support\"},\"ui\":{\"display_name\":\"Incumbent-Support\",\"placeholder\":\"Add Incumbent-Support\"}},{\"supported_filter_ops\":[\"any\",\"not_any\",\"empty\",\"not_empty\"],\"field_type\":\"id\",\"data_name\":\"tnt__customer_success\",\"db_name\":\"tnt__customer_success\",\"description\":\"Specifies the Customer Success Representative for this opportunity.\",\"id_type\":[\"devu\"],\"is_filterable\":true,\"name\":\"tnt__customer_success\",\"oasis\":{\"name\":\"tnt__customer_success\"},\"origin\":\"opportunity\",\"ui\":{\"display_name\":\"CSM\",\"placeholder\":\"Add CSM\"}},{\"supported_filter_ops\":[\"any\",\"not_any\",\"empty\",\"not_empty\"],\"field_type\":\"int\",\"data_name\":\"tnt__days_in_current_stage\",\"db_name\":\"tnt__days_in_current_stage\",\"description\":\"Days in Current Stage\",\"is_filterable\":true,\"name\":\"tnt__days_in_current_stage\",\"oasis\":{\"name\":\"tnt__days_in_current_stage\"},\"ui\":{\"display_name\":\"Days in Current Stage\",\"placeholder\":\"Add Days in Current Stage\"}},{\"supported_filter_ops\":[\"any\",\"not_any\",\"empty\",\"not_empty\"],\"field_type\":\"int\",\"data_name\":\"tnt__days_in_sales_cycle\",\"db_name\":\"tnt__days_in_sales_cycle\",\"description\":\"Days in Sales Cycle\",\"is_filterable\":true,\"name\":\"tnt__days_in_sales_cycle\",\"oasis\":{\"name\":\"tnt__days_in_sales_cycle\"},\"ui\":{\"display_name\":\"Days in Sales Cycle\",\"placeholder\":\"Add Days in Sales Cycle\"}},{\"supported_filter_ops\":[\"any\",\"not_any\",\"empty\",\"not_empty\"],\"field_type\":\"rich_text\",\"data_name\":\"tnt__decision_criteria\",\"db_name\":\"tnt__decision_criteria\",\"description\":\"Decision criteria\",\"is_filterable\":true,\"name\":\"tnt__decision_criteria\",\"oasis\":{\"name\":\"tnt__decision_criteria\"},\"ui\":{\"display_name\":\"Decision criteria\",\"placeholder\":\"Add Decision criteria\"}},{\"supported_filter_ops\":[\"any\",\"not_any\",\"empty\",\"not_empty\"],\"field_type\":\"rich_text\",\"data_name\":\"tnt__decision_process\",\"db_name\":\"tnt__decision_process\",\"description\":\"Decision process\",\"is_filterable\":true,\"name\":\"tnt__decision_process\",\"oasis\":{\"name\":\"tnt__decision_process\"},\"ui\":{\"display_name\":\"Decision process\",\"placeholder\":\"Add Decision process\"}},{\"supported_filter_ops\":[\"any\",\"not_any\",\"empty\",\"not_empty\"],\"field_type\":\"id\",\"data_name\":\"tnt__economic_buyer\",\"db_name\":\"tnt__economic_buyer\",\"description\":\"ID of the associated Rev user who is the economic buyer\",\"id_type\":[\"revu\"],\"is_filterable\":true,\"name\":\"tnt__economic_buyer\",\"oasis\":{\"name\":\"tnt__economic_buyer\"},\"ui\":{\"display_name\":\"Economic Buyer\",\"placeholder\":\"Add Economic Buyer\"}},{\"supported_filter_ops\":[\"any\",\"not_any\",\"empty\",\"not_empty\"],\"field_type\":\"text\",\"data_name\":\"tnt__fiscal_quarter_close\",\"db_name\":\"tnt__fiscal_quarter_close\",\"description\":\"Fiscal Quarter Close\",\"is_filterable\":true,\"name\":\"tnt__fiscal_quarter_close\",\"oasis\":{\"name\":\"tnt__fiscal_quarter_close\"},\"ui\":{\"display_name\":\"Fiscal Quarter Close\",\"placeholder\":\"Add Fiscal Quarter Close\"}},{\"supported_filter_ops\":[\"any\",\"not_any\",\"empty\",\"not_empty\"],\"field_type\":\"text\",\"data_name\":\"tnt__fiscal_quarter_created\",\"db_name\":\"tnt__fiscal_quarter_created\",\"description\":\"Fiscal Quarter Opp Creation\",\"is_filterable\":true,\"name\":\"tnt__fiscal_quarter_created\",\"oasis\":{\"name\":\"tnt__fiscal_quarter_created\"},\"ui\":{\"display_name\":\"Fiscal Quarter Opp Creation\",\"placeholder\":\"Fiscal Quarter Opp Creation Date\"}},{\"supported_filter_ops\":[\"any\",\"not_any\",\"empty\",\"not_empty\"],\"field_type\":\"text\",\"data_name\":\"tnt__fiscal_quarter_pipeline\",\"db_name\":\"tnt__fiscal_quarter_pipeline\",\"description\":\"Fiscal Quarter Pipeline Creation\",\"is_filterable\":true,\"name\":\"tnt__fiscal_quarter_pipeline\",\"oasis\":{\"name\":\"tnt__fiscal_quarter_pipeline\"},\"ui\":{\"display_name\":\"Fiscal Quarter Pipeline Creation\",\"placeholder\":\"Fiscal Quarter Pipeline Creation\"}},{\"supported_filter_ops\":[\"any\",\"not_any\",\"empty\",\"not_empty\"],\"field_type\":\"enum\",\"allowed_values\":[\"AMER\",\"APJ\",\"EMEA\"],\"data_name\":\"tnt__geo\",\"db_name\":\"tnt__geo\",\"description\":\"Geographical region of the opportunity\",\"is_filterable\":true,\"name\":\"tnt__geo\",\"oasis\":{\"name\":\"tnt__geo\"},\"ui\":{\"display_name\":\"Theater\",\"placeholder\":\"Add Theater\"}},{\"supported_filter_ops\":[\"any\",\"not_any\",\"empty\",\"not_empty\"],\"field_type\":\"rich_text\",\"data_name\":\"tnt__identified_pain\",\"db_name\":\"tnt__identified_pain\",\"description\":\"Identified Pain\",\"is_filterable\":true,\"name\":\"tnt__identified_pain\",\"oasis\":{\"name\":\"tnt__identified_pain\"},\"ui\":{\"display_name\":\"Identified Pain\",\"placeholder\":\"Add Identified Pain\"}},{\"supported_filter_ops\":[\"all\",\"any\",\"not_any\",\"empty\",\"not_empty\"],\"field_type\":\"array\",\"base_type\":\"enum\",\"allowed_values\":[\"Appcues\",\"Catalyst\",\"ChurnZero\",\"ClientSuccess\",\"Custify\",\"Freshdesk\",\"Gainsight\",\"Intercom\",\"None\",\"Pendo\",\"Planhat\",\"Qualtrics\",\"Salesforce Sales Cloud\",\"Totango\",\"Vitally\",\"WalkMe\"],\"data_name\":\"tnt__incumbent_ccx\",\"db_name\":\"tnt__incumbent_ccx\",\"description\":\"List of incumbent customer experience platforms\",\"is_filterable\":true,\"name\":\"tnt__incumbent_ccx\",\"oasis\":{\"name\":\"tnt__incumbent_ccx\"},\"ui\":{\"display_name\":\"Incumbent-CCX\",\"placeholder\":\"Add Incumbent-CCX\"}},{\"supported_filter_ops\":[\"all\",\"any\",\"not_any\",\"empty\",\"not_empty\"],\"field_type\":\"array\",\"base_type\":\"enum\",\"allowed_values\":[\"AddSearch\",\"Algolia\",\"AlphaSense\",\"Apache Solr\",\"Coveo\",\"Dashworks\",\"Elastic\",\"Glean\",\"Guru\",\"Luigi's Box\",\"Microsoft Search\",\"None\",\"Partium\",\"Pinecone\",\"Qatalog\",\"Yext\"],\"data_name\":\"tnt__incumbent_enterprise_search\",\"db_name\":\"tnt__incumbent_enterprise_search\",\"description\":\"Incumbent-Enterprise Search\",\"is_filterable\":true,\"name\":\"tnt__incumbent_enterprise_search\",\"oasis\":{\"name\":\"tnt__incumbent_enterprise_search\"},\"ui\":{\"display_name\":\"Incumbent-Enterprise Search\",\"placeholder\":\"Add Incumbent-Enterprise Search\"}},{\"supported_filter_ops\":[\"any\",\"not_any\",\"empty\",\"not_empty\"],\"field_type\":\"enum\",\"allowed_values\":[\"Completed\",\"Started\"],\"data_name\":\"tnt__infosec\",\"db_name\":\"tnt__infosec\",\"description\":\"Update Infosec Status\",\"is_filterable\":true,\"name\":\"tnt__infosec\",\"oasis\":{\"name\":\"tnt__infosec\"},\"ui\":{\"display_name\":\"Infosec\",\"placeholder\":\"Infosec status\",\"tooltip\":\"Update Infosec Status\"}},{\"supported_filter_ops\":[\"any\",\"not_any\",\"empty\",\"not_empty\"],\"field_type\":\"enum\",\"allowed_values\":[\"Completed\",\"Started\"],\"data_name\":\"tnt__legal\",\"db_name\":\"tnt__legal\",\"description\":\"Legal review status\",\"is_filterable\":true,\"name\":\"tnt__legal\",\"oasis\":{\"name\":\"tnt__legal\"},\"ui\":{\"display_name\":\"Legal \",\"placeholder\":\"Legal Review status\",\"tooltip\":\"Update Legal review status\"}},{\"supported_filter_ops\":[\"any\",\"not_any\",\"empty\",\"not_empty\"],\"field_type\":\"rich_text\",\"data_name\":\"tnt__legal_process_complete\",\"db_name\":\"tnt__legal_process_complete\",\"description\":\"Legal process complete\",\"is_filterable\":true,\"name\":\"tnt__legal_process_complete\",\"oasis\":{\"name\":\"tnt__legal_process_complete\"},\"ui\":{\"display_name\":\"Paper Process Notes\",\"placeholder\":\"What are the steps required to getting this paperwork executed?\"}},{\"supported_filter_ops\":[\"any\",\"not_any\",\"empty\",\"not_empty\"],\"field_type\":\"enum\",\"allowed_values\":[\"Commit\",\"Omitted\",\"Pipeline\",\"Strong Upside\",\"Upside\",\"Won\"],\"data_name\":\"tnt__manager_forecast\",\"db_name\":\"tnt__manager_forecast\",\"description\":\"Sales Managers update this field with their forecasts\",\"is_filterable\":true,\"name\":\"tnt__manager_forecast\",\"oasis\":{\"name\":\"tnt__manager_forecast\"},\"ui\":{\"display_name\":\"Manager Override\",\"placeholder\":\"Sales Manager Forecast\",\"tooltip\":\"To be updated by Sales Managers\"}},{\"supported_filter_ops\":[\"any\",\"not_any\",\"empty\",\"not_empty\"],\"field_type\":\"id\",\"data_name\":\"tnt__marketing_development_representative\",\"db_name\":\"tnt__marketing_development_representative\",\"description\":\"Specifies the Marketing Development Representative for this opportunity.\",\"id_type\":[\"devu\"],\"is_filterable\":true,\"name\":\"tnt__marketing_development_representative\",\"oasis\":{\"name\":\"tnt__marketing_development_representative\"},\"origin\":\"opportunity\",\"ui\":{\"display_name\":\"MDR\",\"placeholder\":\"Add MDR\"}},{\"supported_filter_ops\":[\"any\",\"not_any\",\"empty\",\"not_empty\"],\"field_type\":\"enum\",\"allowed_values\":[\"Meeting completed - AE\",\"Meeting completed no next step\",\"Meeting rescheduled\",\"Meeting scheduled no show\"],\"data_name\":\"tnt__meeting_stage\",\"db_name\":\"tnt__meeting_stage\",\"description\":\"Current stage of the opportunity meetings\",\"is_filterable\":true,\"name\":\"tnt__meeting_stage\",\"oasis\":{\"name\":\"tnt__meeting_stage\"},\"ui\":{\"display_name\":\"Meeting stage\",\"placeholder\":\"Add Meeting stage\"}},{\"supported_filter_ops\":[\"any\",\"not_any\",\"empty\",\"not_empty\"],\"field_type\":\"rich_text\",\"data_name\":\"tnt__metrics\",\"db_name\":\"tnt__metrics\",\"description\":\"Rich text field for opportunity metrics\",\"is_filterable\":true,\"name\":\"tnt__metrics\",\"oasis\":{\"name\":\"tnt__metrics\"},\"ui\":{\"display_name\":\"Metrics\",\"placeholder\":\"Add Metrics\"}},{\"field_type\":\"bool\",\"data_name\":\"tnt__nda\",\"db_name\":\"tnt__nda\",\"default_value\":false,\"description\":\"Whether an NDA is signed for the opportunity\",\"is_filterable\":true,\"name\":\"tnt__nda\",\"oasis\":{\"name\":\"tnt__nda\"},\"ui\":{\"display_name\":\"NDA\",\"placeholder\":\"Add NDA\"}},{\"field_type\":\"date\",\"data_name\":\"tnt__next_step_due_date\",\"db_name\":\"tnt__next_step_due_date\",\"description\":\"Next step due date\",\"is_filterable\":true,\"name\":\"tnt__next_step_due_date\",\"oasis\":{\"name\":\"tnt__next_step_due_date\"},\"ui\":{\"display_name\":\"Next step due date\",\"placeholder\":\"Add Next step due date\"}},{\"field_type\":\"rich_text\",\"data_name\":\"tnt__next_steps\",\"db_name\":\"tnt__next_steps\",\"description\":\"Rich text field for next steps in the opportunity\",\"is_filterable\":false,\"name\":\"tnt__next_steps\",\"oasis\":{\"name\":\"tnt__next_steps\"},\"ui\":{\"display_name\":\"Next Steps\",\"placeholder\":\"Add Next Steps\"}},{\"field_type\":\"timestamp\",\"data_name\":\"tnt__notification_date\",\"db_name\":\"tnt__notification_date\",\"description\":\"Select the date if you want to get notified at a future date regarding this opportunity. If not, leave it blank\",\"is_filterable\":true,\"name\":\"tnt__notification_date\",\"oasis\":{\"name\":\"tnt__notification_date\"},\"ui\":{\"display_name\":\"Notification Date\",\"placeholder\":\"Select the date if you want to get notified at a future date about this opportinity\",\"tooltip\":\"Select the date if you want to get notified at a future date regarding this opportunity. If not, leave it blank\"}},{\"supported_filter_ops\":[\"any\",\"not_any\",\"empty\",\"not_empty\"],\"field_type\":\"int\",\"data_name\":\"tnt__number_of_build_licenses\",\"db_name\":\"tnt__number_of_build_licenses\",\"description\":\"Number of Build Licenses\",\"is_filterable\":true,\"name\":\"tnt__number_of_build_licenses\",\"oasis\":{\"name\":\"tnt__number_of_build_licenses\"},\"ui\":{\"display_name\":\"Number of Build Licenses\",\"placeholder\":\"Add Number of Build Licenses\"}},{\"supported_filter_ops\":[\"any\",\"not_any\",\"empty\",\"not_empty\"],\"field_type\":\"int\",\"data_name\":\"tnt__number_of_grow_licenses\",\"db_name\":\"tnt__number_of_grow_licenses\",\"description\":\"Number of Grow Licenses\",\"is_filterable\":true,\"name\":\"tnt__number_of_grow_licenses\",\"oasis\":{\"name\":\"tnt__number_of_grow_licenses\"},\"ui\":{\"display_name\":\"Number of Grow Licenses\",\"placeholder\":\"Add Number of Grow Licenses\"}},{\"supported_filter_ops\":[\"any\",\"not_any\",\"empty\",\"not_empty\"],\"field_type\":\"int\",\"data_name\":\"tnt__number_of_plug_licenses\",\"db_name\":\"tnt__number_of_plug_licenses\",\"description\":\"Number of Plug Licenses\",\"is_filterable\":true,\"name\":\"tnt__number_of_plug_licenses\",\"oasis\":{\"name\":\"tnt__number_of_plug_licenses\"},\"ui\":{\"display_name\":\"Number of Plug Licenses\",\"placeholder\":\"Add Number of Plug Licenses\"}},{\"supported_filter_ops\":[\"any\",\"not_any\",\"empty\",\"not_empty\"],\"field_type\":\"int\",\"data_name\":\"tnt__number_of_support_licenses\",\"db_name\":\"tnt__number_of_support_licenses\",\"description\":\"Number of Support Licenses\",\"is_filterable\":true,\"name\":\"tnt__number_of_support_licenses\",\"oasis\":{\"name\":\"tnt__number_of_support_licenses\"},\"ui\":{\"display_name\":\"Number of Support Licenses\",\"placeholder\":\"Add Number of Support Licenses\"}},{\"supported_filter_ops\":[\"any\",\"not_any\",\"empty\",\"not_empty\"],\"field_type\":\"enum\",\"allowed_values\":[\"Amendment\",\"New\",\"Renewal\",\"Upsell\"],\"data_name\":\"tnt__opportunity_type\",\"db_name\":\"tnt__opportunity_type\",\"default_value\":\"New\",\"description\":\"Type of the opportunity (e.g., New, Renewal)\",\"is_filterable\":true,\"is_required\":true,\"name\":\"tnt__opportunity_type\",\"oasis\":{\"name\":\"tnt__opportunity_type\"},\"ui\":{\"display_name\":\"Type\",\"placeholder\":\"Add Type\"}},{\"supported_filter_ops\":[\"all\",\"any\",\"not_any\",\"empty\",\"not_empty\"],\"field_type\":\"array\",\"base_type\":\"enum\",\"allowed_values\":[\"Custom\",\"One-off\",\"Standard\"],\"data_name\":\"tnt__partner_comp_model\",\"db_name\":\"tnt__partner_comp_model\",\"description\":\"Partner Comp Model\",\"is_filterable\":true,\"name\":\"tnt__partner_comp_model\",\"oasis\":{\"name\":\"tnt__partner_comp_model\"},\"ui\":{\"display_name\":\"Partner Comp Model\",\"placeholder\":\"Add Partner Comp Model\"}},{\"supported_filter_ops\":[\"any\",\"not_any\",\"empty\",\"not_empty\"],\"field_type\":\"id\",\"data_name\":\"tnt__partner_contact\",\"db_name\":\"tnt__partner_contact\",\"description\":\"Partner Contact\",\"id_type\":[\"revu\"],\"is_filterable\":true,\"name\":\"tnt__partner_contact\",\"oasis\":{\"name\":\"tnt__partner_contact\"},\"origin\":\"opportunity\",\"ui\":{\"display_name\":\"Partner Contact\",\"placeholder\":\"Add Partner Contact\"}},{\"field_type\":\"bool\",\"data_name\":\"tnt__partner_led_implementation\",\"db_name\":\"tnt__partner_led_implementation\",\"is_filterable\":true,\"name\":\"tnt__partner_led_implementation\",\"oasis\":{\"name\":\"tnt__partner_led_implementation\"},\"ui\":{\"display_name\":\"Partner Led Implementation\",\"placeholder\":\"Add Partner Led Implementation\"}},{\"supported_filter_ops\":[\"any\",\"not_any\",\"empty\",\"not_empty\"],\"field_type\":\"id\",\"data_name\":\"tnt__partner_name\",\"db_name\":\"tnt__partner_name\",\"description\":\"ID of the associated partner account\",\"id_type\":[\"account\"],\"is_filterable\":true,\"name\":\"tnt__partner_name\",\"oasis\":{\"name\":\"tnt__partner_name\"},\"origin\":\"opportunity\",\"ui\":{\"display_name\":\"Partner Name\",\"placeholder\":\"Add Partner Name\"}},{\"supported_filter_ops\":[\"all\",\"any\",\"not_any\",\"empty\",\"not_empty\"],\"field_type\":\"array\",\"base_type\":\"enum\",\"allowed_values\":[\"Co-Sell\",\"Demo\",\"Implementation\",\"MSP\",\"Pre-sales\",\"Referral\",\"Relationships\",\"Resell\"],\"data_name\":\"tnt__partner_role\",\"db_name\":\"tnt__partner_role\",\"description\":\"List of roles the partner plays in the opportunity\",\"is_filterable\":true,\"name\":\"tnt__partner_role\",\"oasis\":{\"name\":\"tnt__partner_role\"},\"ui\":{\"display_name\":\"Partner Role\",\"placeholder\":\"Add Partner Role\"}},{\"field_type\":\"rich_text\",\"data_name\":\"tnt__partner_sales_notes\",\"db_name\":\"tnt__partner_sales_notes\",\"description\":\"Partner Sales Notes\",\"is_filterable\":false,\"name\":\"tnt__partner_sales_notes\",\"oasis\":{\"name\":\"tnt__partner_sales_notes\"},\"ui\":{\"display_name\":\"Partner Sales Notes\",\"placeholder\":\"Add Partner Sales Notes\"}},{\"field_type\":\"bool\",\"data_name\":\"tnt__partner_sourced\",\"db_name\":\"tnt__partner_sourced\",\"default_value\":false,\"description\":\"Partner Sourced\",\"is_filterable\":true,\"name\":\"tnt__partner_sourced\",\"oasis\":{\"name\":\"tnt__partner_sourced\"},\"ui\":{\"display_name\":\"Partner Sourced\",\"placeholder\":\"Add Partner Sourced\"}},{\"supported_filter_ops\":[\"any\",\"not_any\",\"empty\",\"not_empty\"],\"field_type\":\"id\",\"data_name\":\"tnt__pbm\",\"db_name\":\"tnt__pbm\",\"description\":\"ID of the associated Dev user PBM\",\"id_type\":[\"devu\"],\"is_filterable\":true,\"name\":\"tnt__pbm\",\"oasis\":{\"name\":\"tnt__pbm\"},\"origin\":\"opportunity\",\"ui\":{\"display_name\":\"PBM\",\"placeholder\":\"Add PBM\"}},{\"field_type\":\"date\",\"data_name\":\"tnt__pipeline_created_date\",\"db_name\":\"tnt__pipeline_created_date\",\"description\":\"Pipeline Created Date\",\"is_filterable\":true,\"name\":\"tnt__pipeline_created_date\",\"oasis\":{\"name\":\"tnt__pipeline_created_date\"},\"ui\":{\"display_name\":\"Pipeline Created Date\",\"placeholder\":\"Add Pipeline Created Date\"}},{\"supported_filter_ops\":[\"any\",\"not_any\",\"empty\",\"not_empty\"],\"field_type\":\"enum\",\"allowed_values\":[\"Advisor\",\"Customer Referral\",\"Events\",\"Inbound\",\"Inbound and Events\",\"Inbound and Outbound\",\"Inbound, Outbound, and Events\",\"Marketing\",\"Not Attributed\",\"Outbound\",\"Outbound and Events\",\"Partner\"],\"data_name\":\"tnt__pipeline_source\",\"db_name\":\"tnt__pipeline_source\",\"description\":\"Pipeline Source\",\"is_filterable\":true,\"name\":\"tnt__pipeline_source\",\"oasis\":{\"name\":\"tnt__pipeline_source\"},\"ui\":{\"display_name\":\"Pipeline Source\",\"placeholder\":\"Add Pipeline Source\"}},{\"supported_filter_ops\":[\"all\",\"any\",\"not_any\",\"empty\",\"not_empty\"],\"field_type\":\"array\",\"base_type\":\"enum\",\"allowed_values\":[\"Additional Base Storage\",\"Additional File Storage\",\"Build Pro Subscription\",\"Build Starter Subscription\",\"Build Ultimate Subscription\",\"Build and Support Pro\",\"Build and Support Ultimate\",\"Grow Pro\",\"Grow Starter\",\"OneCRM Ultimate\",\"PLuG (UE)\",\"PLuG (UE) Onetime Additional Sessions\",\"PLuG Pro Subscription\",\"PLuG Starter Subscription\",\"PLuG Ultimate Subscription\",\"Support Pro Subscription\",\"Support Starter Subscription\",\"Support Ultimate Subscription\",\"WhatsApp Messages\",\"WhatsApp Numbers\"],\"data_name\":\"tnt__plans\",\"db_name\":\"tnt__plans\",\"description\":\"List of plans associated with the opportunity\",\"is_filterable\":true,\"name\":\"tnt__plans\",\"oasis\":{\"name\":\"tnt__plans\"},\"ui\":{\"display_name\":\"Plans\",\"placeholder\":\"Add Plans\"}},{\"supported_filter_ops\":[\"all\",\"any\",\"not_any\",\"empty\",\"not_empty\"],\"field_type\":\"array\",\"base_type\":\"enum\",\"allowed_values\":[\"PB 1 - Support\",\"PB 2 - Conversational PM\",\"PB 3 - Enterprise Search\",\"PB 4 - Conversational CX\",\"PB 5 - Other\"],\"data_name\":\"tnt__playbook\",\"db_name\":\"tnt__playbook\",\"description\":\"Select the Playbook/s that suits the customer Use Case\",\"is_filterable\":true,\"is_required\":false,\"name\":\"tnt__playbook\",\"oasis\":{\"name\":\"tnt__playbook\"},\"ui\":{\"display_name\":\"Playbook\",\"placeholder\":\"Select the Playbook/s that suits the customer Use Case\",\"tooltip\":\"Select all the Playbook that Applies to the Customer Use Case\"}},{\"field_type\":\"bool\",\"data_name\":\"tnt__poc\",\"db_name\":\"tnt__poc\",\"default_value\":false,\"description\":\"Whether the opportunity includes a proof of concept\",\"is_filterable\":true,\"name\":\"tnt__poc\",\"oasis\":{\"name\":\"tnt__poc\"},\"ui\":{\"display_name\":\"POC\",\"placeholder\":\"Add POC\",\"tooltip\":\"Only SE need to update this field\"}},{\"field_type\":\"date\",\"data_name\":\"tnt__poc_end_date\",\"db_name\":\"tnt__poc_end_date\",\"description\":\"End date of the proof of concept\",\"is_filterable\":true,\"name\":\"tnt__poc_end_date\",\"oasis\":{\"name\":\"tnt__poc_end_date\"},\"ui\":{\"display_name\":\"POC End Date\",\"placeholder\":\"Add POC End Date\"}},{\"supported_filter_ops\":[\"any\",\"not_any\",\"empty\",\"not_empty\"],\"field_type\":\"rich_text\",\"data_name\":\"tnt__poc_notes\",\"db_name\":\"tnt__poc_notes\",\"description\":\"Rich text field for notes on the proof of concept\",\"is_filterable\":true,\"name\":\"tnt__poc_notes\",\"oasis\":{\"name\":\"tnt__poc_notes\"},\"ui\":{\"display_name\":\"POC Notes\",\"placeholder\":\"Add POC Notes\"}},{\"field_type\":\"date\",\"data_name\":\"tnt__poc_start_date\",\"db_name\":\"tnt__poc_start_date\",\"description\":\"Start date of the proof of concept\",\"is_filterable\":true,\"name\":\"tnt__poc_start_date\",\"oasis\":{\"name\":\"tnt__poc_start_date\"},\"ui\":{\"display_name\":\"POC Start Date\",\"placeholder\":\"Add POC Start Date\"}},{\"supported_filter_ops\":[\"any\",\"not_any\",\"empty\",\"not_empty\"],\"field_type\":\"id\",\"data_name\":\"tnt__primary_contact\",\"db_name\":\"tnt__primary_contact\",\"description\":\"Primary Contact\",\"id_type\":[\"revu\"],\"is_filterable\":true,\"name\":\"tnt__primary_contact\",\"oasis\":{\"name\":\"tnt__primary_contact\"},\"origin\":\"opportunity\",\"ui\":{\"display_name\":\"Attribution Contact\",\"placeholder\":\"Add Attribution Contact\"}},{\"supported_filter_ops\":[\"all\",\"any\",\"not_any\",\"empty\",\"not_empty\"],\"field_type\":\"array\",\"base_type\":\"enum\",\"allowed_values\":[\"Build\",\"Grow\",\"PLuG Observability\",\"Support\"],\"data_name\":\"tnt__primary_products\",\"db_name\":\"tnt__primary_products\",\"description\":\"Primary Products\",\"is_filterable\":true,\"name\":\"tnt__primary_products\",\"oasis\":{\"name\":\"tnt__primary_products\"},\"ui\":{\"display_name\":\"Primary Products\",\"placeholder\":\"Add Primary Products\"}},{\"supported_filter_ops\":[\"any\",\"not_any\",\"empty\",\"not_empty\"],\"field_type\":\"int\",\"data_name\":\"tnt__probability_by_forecast\",\"db_name\":\"tnt__probability_by_forecast\",\"description\":\"Forecast Probability\",\"is_filterable\":true,\"name\":\"tnt__probability_by_forecast\",\"oasis\":{\"name\":\"tnt__probability_by_forecast\"},\"ui\":{\"display_name\":\"Probability By Forecast Category\",\"placeholder\":\"Enter probability\"}},{\"supported_filter_ops\":[\"all\",\"any\",\"not_any\",\"empty\",\"not_empty\"],\"field_type\":\"array\",\"base_type\":\"enum\",\"allowed_values\":[\"Build\",\"Grow\",\"PLuG Observability\",\"Support\"],\"data_name\":\"tnt__products\",\"db_name\":\"tnt__products\",\"description\":\"Products\",\"is_filterable\":true,\"name\":\"tnt__products\",\"oasis\":{\"name\":\"tnt__products\"},\"ui\":{\"display_name\":\"Products\",\"placeholder\":\"Add Products\"}},{\"supported_filter_ops\":[\"any\",\"not_any\",\"empty\",\"not_empty\"],\"field_type\":\"int\",\"data_name\":\"tnt__ramped_arr\",\"db_name\":\"tnt__ramped_arr\",\"description\":\"Add Ramped ARR\",\"is_filterable\":true,\"name\":\"tnt__ramped_arr\",\"oasis\":{\"name\":\"tnt__ramped_arr\"},\"ui\":{\"display_name\":\"Ramped ARR\",\"placeholder\":\"Add Ramped ARR\"}},{\"supported_filter_ops\":[\"any\",\"not_any\",\"empty\",\"not_empty\"],\"field_type\":\"enum\",\"allowed_values\":[\"ANZ\",\"Canada\",\"Central & Eastern Europe\",\"Central Asia\",\"East ASIA\",\"Eastern Mediterranean, Middle East & North Africa\",\"India\",\"LATAM\",\"Northern Europe & Eastern Emerging Markets\",\"SEA\",\"South & Mediterranean Europe\",\"South ASIA\",\"Sub Saharan Africa\",\"US\",\"Western Europe\"],\"data_name\":\"tnt__region\",\"db_name\":\"tnt__region\",\"description\":\"Region\",\"is_filterable\":true,\"name\":\"tnt__region\",\"oasis\":{\"name\":\"tnt__region\"},\"ui\":{\"display_name\":\"Region\",\"placeholder\":\"Add Region\"}},{\"field_type\":\"text\",\"data_name\":\"tnt__registration_id\",\"db_name\":\"tnt__registration_id\",\"description\":\"Registration ID\",\"is_filterable\":false,\"name\":\"tnt__registration_id\",\"oasis\":{\"name\":\"tnt__registration_id\"},\"ui\":{\"display_name\":\"Registration ID\",\"placeholder\":\"Add Registration ID\"}},{\"field_type\":\"text\",\"data_name\":\"tnt__registration_status\",\"db_name\":\"tnt__registration_status\",\"description\":\"Registration Status\",\"is_filterable\":false,\"name\":\"tnt__registration_status\",\"oasis\":{\"name\":\"tnt__registration_status\"},\"ui\":{\"display_name\":\"Registration Status\",\"placeholder\":\"Add Registration Status\"}},{\"supported_filter_ops\":[\"all\",\"any\",\"not_any\",\"empty\",\"not_empty\"],\"field_type\":\"array\",\"base_type\":\"enum\",\"allowed_values\":[\"Others\",\"VPC\"],\"data_name\":\"tnt__required_capability\",\"db_name\":\"tnt__required_capability\",\"description\":\"Required Capability of the customer\",\"is_filterable\":true,\"name\":\"tnt__required_capability\",\"oasis\":{\"name\":\"tnt__required_capability\"},\"ui\":{\"display_name\":\"Required Capability\",\"placeholder\":\"Add the required capability of here\",\"tooltip\":\"Add the required capability of the customer here\"}},{\"supported_filter_ops\":[\"any\",\"not_any\",\"empty\",\"not_empty\"],\"field_type\":\"id\",\"data_name\":\"tnt__sales_development_representative\",\"db_name\":\"tnt__sales_development_representative\",\"description\":\"Specifies the Sales Development Representative for this Account.\",\"id_type\":[\"devu\"],\"is_filterable\":true,\"name\":\"tnt__sales_development_representative\",\"oasis\":{\"name\":\"tnt__sales_development_representative\"},\"origin\":\"opportunity\",\"ui\":{\"display_name\":\"SDR\",\"placeholder\":\"Add SDR\"}},{\"supported_filter_ops\":[\"any\",\"not_any\",\"empty\",\"not_empty\"],\"field_type\":\"id\",\"data_name\":\"tnt__sales_engineer\",\"db_name\":\"tnt__sales_engineer\",\"description\":\"Specifies the Sales Engineer for this Account.\",\"id_type\":[\"devu\"],\"is_filterable\":true,\"name\":\"tnt__sales_engineer\",\"oasis\":{\"name\":\"tnt__sales_engineer\"},\"origin\":\"opportunity\",\"ui\":{\"display_name\":\"SE\",\"placeholder\":\"Add SE\"}},{\"supported_filter_ops\":[\"any\",\"not_any\",\"empty\",\"not_empty\"],\"field_type\":\"enum\",\"allowed_values\":[\"Enterprise\",\"Mid-Market\",\"SMB\",\"Start-Up\"],\"data_name\":\"tnt__segment\",\"db_name\":\"tnt__segment\",\"description\":\"This field indicates the segment of the company.\",\"is_filterable\":true,\"name\":\"tnt__segment\",\"oasis\":{\"name\":\"tnt__segment\"},\"ui\":{\"display_name\":\"Segment\",\"placeholder\":\"Add company segment\"}},{\"field_type\":\"bool\",\"data_name\":\"tnt__shared_with_partners\",\"db_name\":\"tnt__shared_with_partners\",\"is_filterable\":true,\"name\":\"tnt__shared_with_partners\",\"oasis\":{\"name\":\"tnt__shared_with_partners\"},\"ui\":{\"display_name\":\"Shared with Partners\",\"placeholder\":\"Add Shared with Partners\"}},{\"supported_filter_ops\":[\"any\",\"not_any\",\"empty\",\"not_empty\"],\"field_type\":\"enum\",\"allowed_values\":[\"Advisor\",\"Customer Referral\",\"Events\",\"Inbound\",\"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\":\"enum\",\"allowed_values\":[\"Afghanistan\",\"Argentina\",\"Australia\",\"Bangladesh\",\"Benelux\",\"Bhutan\",\"Brazil\",\"Brunei\",\"Cambodia\",\"Canada Central\",\"Canada East\",\"Canada North\",\"Canada West\",\"Central US\",\"China\",\"DAC\",\"East US\",\"Eastern Emerging Markets\",\"Eastern Europe\",\"Eastern Mediterranean\",\"Fiji\",\"France\",\"Hong Kong\",\"Iberia\",\"India\",\"India North\",\"India South\",\"India West\",\"Indonesia\",\"Japan\",\"Kazakhstan\",\"Kyrgyzstan\",\"Laos\",\"Malaysia\",\"Maldives\",\"Mediterranean\",\"Middle East\",\"Mongolia\",\"Myanmar\",\"Nepal\",\"New Zealand\",\"Nordics\",\"North Africa\",\"Pakistan\",\"Papua New Guinea\",\"Philippines\",\"Phillipines\",\"Rest of LATAM\",\"Samoa\",\"Singapore\",\"Solomon Islands\",\"South Korea\",\"Sri Lanka\",\"Sub Saharan Africa\",\"Taiwan\",\"Tajikistan\",\"Thailand\",\"Tonga\",\"Turkmenistan\",\"UK/I\",\"Uzbekistan\",\"Vanuatu\",\"Vietnam\",\"West US\"],\"data_name\":\"tnt__sub_region\",\"db_name\":\"tnt__sub_region\",\"description\":\"Sub-Region\",\"is_filterable\":true,\"name\":\"tnt__sub_region\",\"oasis\":{\"name\":\"tnt__sub_region\"},\"ui\":{\"display_name\":\"Sub-Region\",\"placeholder\":\"Add Sub-region\"}},{\"field_type\":\"bool\",\"data_name\":\"tnt__technical_voc\",\"db_name\":\"tnt__technical_voc\",\"default_value\":false,\"description\":\"Technical VOC\",\"is_filterable\":true,\"name\":\"tnt__technical_voc\",\"oasis\":{\"name\":\"tnt__technical_voc\"},\"ui\":{\"display_name\":\"Technical VOC\",\"placeholder\":\"Add Technical VOC\"}},{\"field_type\":\"int\",\"data_name\":\"tnt__weighted_pipeline_forecast_category\",\"db_name\":\"tnt__weighted_pipeline_forecast_category\",\"description\":\"Automated field to show the weighted pipeline based on Forecast Category of the opportunity\",\"is_filterable\":false,\"name\":\"tnt__weighted_pipeline_forecast_category\",\"oasis\":{\"name\":\"tnt__weighted_pipeline_forecast_category\"},\"ui\":{\"display_name\":\"Weighted Pipeline (Forecast Category)\",\"placeholder\":\"Weighted Pipeline based on Forecast Category of the opportunity\",\"tooltip\":\"Automated field to show the weighted pipeline based on Forecast Category of the opportunity\"}},{\"field_type\":\"int\",\"data_name\":\"tnt__weighted_pipeline_stage\",\"db_name\":\"tnt__weighted_pipeline_stage\",\"description\":\"Automated field to calculate the weighted pipeline based on opportunity stage\",\"is_filterable\":false,\"name\":\"tnt__weighted_pipeline_stage\",\"oasis\":{\"name\":\"tnt__weighted_pipeline_stage\"},\"ui\":{\"display_name\":\"Weighted Pipeline (Stage)\",\"placeholder\":\"Add Weighted Pipeline (Stage)\",\"tooltip\":\"Automated field to calculate the weighted pipeline based on opportunity stage\"}},{\"supported_filter_ops\":[\"any\",\"not_any\",\"empty\",\"not_empty\"],\"field_type\":\"rich_text\",\"data_name\":\"tnt__why_anything\",\"db_name\":\"tnt__why_anything\",\"description\":\"Enter why anything\",\"is_filterable\":true,\"name\":\"tnt__why_anything\",\"oasis\":{\"name\":\"tnt__why_anything\"},\"ui\":{\"display_name\":\"Why Anything?\",\"placeholder\":\"Add Why Anything?\"}},{\"supported_filter_ops\":[\"any\",\"not_any\",\"empty\",\"not_empty\"],\"field_type\":\"rich_text\",\"data_name\":\"tnt__why_devrev\",\"db_name\":\"tnt__why_devrev\",\"description\":\"Enter why devrev\",\"is_filterable\":true,\"name\":\"tnt__why_devrev\",\"oasis\":{\"name\":\"tnt__why_devrev\"},\"ui\":{\"display_name\":\"Why DevRev?\",\"placeholder\":\"Add Why DevRev?\"}},{\"supported_filter_ops\":[\"any\",\"not_any\",\"empty\",\"not_empty\"],\"field_type\":\"rich_text\",\"data_name\":\"tnt__why_now\",\"db_name\":\"tnt__why_now\",\"description\":\"Enter why now\",\"is_filterable\":true,\"name\":\"tnt__why_now\",\"oasis\":{\"name\":\"tnt__why_now\"},\"ui\":{\"display_name\":\"Why Now?\",\"placeholder\":\"Add Why Now?\"}},{\"supported_filter_ops\":[\"any\",\"not_any\",\"empty\",\"not_empty\"],\"field_type\":\"rich_text\",\"data_name\":\"tnt__win_notes\",\"db_name\":\"tnt__win_notes\",\"description\":\"Win Notes\",\"is_filterable\":true,\"name\":\"tnt__win_notes\",\"oasis\":{\"name\":\"tnt__win_notes\"},\"ui\":{\"display_name\":\"Win Notes\",\"placeholder\":\"Add Win Notes\"}}],\"type\":\"field_descriptor\"},\"type\":\"default\"}],\"reference_key\":\"opportunity_updated_1\",\"ui_metadata\":{\"position\":{\"x\":-146,\"y\":-247}}}],\"title\":\"Account Segment Missing Notification\"}","templateVersion":"2.0.0"}
|