@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.
Files changed (179) hide show
  1. package/README.md +37 -0
  2. package/bin/install.mjs +158 -0
  3. package/package.json +33 -0
  4. package/skills/account-evaluation/account-evaluation.md +64 -0
  5. package/skills/account-research/account-research.md +323 -0
  6. package/skills/account-research/references/signals-guide.md +52 -0
  7. package/skills/create-workflow-template/create-workflow-template.md +1091 -0
  8. package/skills/create-workflow-template/examples/3592-Generate rca from pia-template.json +1 -0
  9. package/skills/create-workflow-template/examples/4392-Async opportunity review agent-template.json +1 -0
  10. package/skills/create-workflow-template/examples/4441-Ticket escalator from customer message-template.json +1 -0
  11. package/skills/create-workflow-template/examples/4505-Auto-update issue tcd as end of sprint date-template.json +1 -0
  12. package/skills/create-workflow-template/examples/5040-Devrevu - enablement journey - poc emails-template.json +1 -0
  13. package/skills/create-workflow-template/examples/5158-Devrevu - enablement journey - mailing for non enablement journey users-template.json +1 -0
  14. package/skills/create-workflow-template/examples/5216-Account segment missing notification-template.json +1 -0
  15. package/skills/create-workflow-template/examples/working-csat-score-on-ticket-resolved.json +1 -0
  16. package/skills/create-workflow-template/examples/working-enhancement-replace-agent.json +1 -0
  17. package/skills/create-workflow-template/examples/working-invoke-code-sample.json +1 -0
  18. package/skills/create-workflow-template/examples/working-loop-variable-sample.json +1 -0
  19. package/skills/create-workflow-template/operations/actions.md +2919 -0
  20. package/skills/create-workflow-template/operations/blockings.md +38 -0
  21. package/skills/create-workflow-template/operations/controls.md +108 -0
  22. package/skills/create-workflow-template/operations/schema-index.md +166 -0
  23. package/skills/create-workflow-template/operations/schemas/account_created.md +58 -0
  24. package/skills/create-workflow-template/operations/schemas/account_updated.md +73 -0
  25. package/skills/create-workflow-template/operations/schemas/add_comment.md +29 -0
  26. package/skills/create-workflow-template/operations/schemas/airdrop_sync_run_started.md +33 -0
  27. package/skills/create-workflow-template/operations/schemas/airdrop_sync_run_status_updated.md +35 -0
  28. package/skills/create-workflow-template/operations/schemas/article_created.md +96 -0
  29. package/skills/create-workflow-template/operations/schemas/article_updated.md +135 -0
  30. package/skills/create-workflow-template/operations/schemas/ask_ai.md +11 -0
  31. package/skills/create-workflow-template/operations/schemas/classify_object.md +22 -0
  32. package/skills/create-workflow-template/operations/schemas/contact_created.md +43 -0
  33. package/skills/create-workflow-template/operations/schemas/contact_updated.md +65 -0
  34. package/skills/create-workflow-template/operations/schemas/conversation_created.md +108 -0
  35. package/skills/create-workflow-template/operations/schemas/conversation_sla_tracker_updated.md +46 -0
  36. package/skills/create-workflow-template/operations/schemas/conversation_updated.md +130 -0
  37. package/skills/create-workflow-template/operations/schemas/convert_conversation_to_ticket.md +13 -0
  38. package/skills/create-workflow-template/operations/schemas/create_account.md +62 -0
  39. package/skills/create-workflow-template/operations/schemas/create_article.md +79 -0
  40. package/skills/create-workflow-template/operations/schemas/create_brand.md +42 -0
  41. package/skills/create-workflow-template/operations/schemas/create_contact.md +65 -0
  42. package/skills/create-workflow-template/operations/schemas/create_dm.md +53 -0
  43. package/skills/create-workflow-template/operations/schemas/create_enhancement.md +63 -0
  44. package/skills/create-workflow-template/operations/schemas/create_incident.md +136 -0
  45. package/skills/create-workflow-template/operations/schemas/create_issue.md +150 -0
  46. package/skills/create-workflow-template/operations/schemas/create_meeting.md +105 -0
  47. package/skills/create-workflow-template/operations/schemas/create_opportunity.md +123 -0
  48. package/skills/create-workflow-template/operations/schemas/create_ticket.md +184 -0
  49. package/skills/create-workflow-template/operations/schemas/csat_response_received.md +73 -0
  50. package/skills/create-workflow-template/operations/schemas/dev_user_created.md +54 -0
  51. package/skills/create-workflow-template/operations/schemas/dev_user_updated.md +99 -0
  52. package/skills/create-workflow-template/operations/schemas/enhancement_created.md +46 -0
  53. package/skills/create-workflow-template/operations/schemas/enhancement_updated.md +89 -0
  54. package/skills/create-workflow-template/operations/schemas/evaluate_sentiment.md +14 -0
  55. package/skills/create-workflow-template/operations/schemas/execute_metric_action.md +11 -0
  56. package/skills/create-workflow-template/operations/schemas/feature_created.md +40 -0
  57. package/skills/create-workflow-template/operations/schemas/for_each.md +45 -0
  58. package/skills/create-workflow-template/operations/schemas/get_account.md +59 -0
  59. package/skills/create-workflow-template/operations/schemas/get_airdrop_sync_unit.md +32 -0
  60. package/skills/create-workflow-template/operations/schemas/get_brand.md +40 -0
  61. package/skills/create-workflow-template/operations/schemas/get_complete_enhancement_details.md +13 -0
  62. package/skills/create-workflow-template/operations/schemas/get_conversation.md +120 -0
  63. package/skills/create-workflow-template/operations/schemas/get_customer.md +60 -0
  64. package/skills/create-workflow-template/operations/schemas/get_enhancement.md +66 -0
  65. package/skills/create-workflow-template/operations/schemas/get_feature.md +56 -0
  66. package/skills/create-workflow-template/operations/schemas/get_incident.md +85 -0
  67. package/skills/create-workflow-template/operations/schemas/get_issue.md +117 -0
  68. package/skills/create-workflow-template/operations/schemas/get_kg_schema.md +23 -0
  69. package/skills/create-workflow-template/operations/schemas/get_meeting.md +87 -0
  70. package/skills/create-workflow-template/operations/schemas/get_metric_trackers.md +20 -0
  71. package/skills/create-workflow-template/operations/schemas/get_node_schema.md +29 -0
  72. package/skills/create-workflow-template/operations/schemas/get_opportunity.md +93 -0
  73. package/skills/create-workflow-template/operations/schemas/get_org_user.md +57 -0
  74. package/skills/create-workflow-template/operations/schemas/get_org_user_preference.md +40 -0
  75. package/skills/create-workflow-template/operations/schemas/get_part.md +55 -0
  76. package/skills/create-workflow-template/operations/schemas/get_self.md +54 -0
  77. package/skills/create-workflow-template/operations/schemas/get_session_details.md +45 -0
  78. package/skills/create-workflow-template/operations/schemas/get_sprint_board.md +103 -0
  79. package/skills/create-workflow-template/operations/schemas/get_ticket.md +136 -0
  80. package/skills/create-workflow-template/operations/schemas/get_workspace.md +21 -0
  81. package/skills/create-workflow-template/operations/schemas/go_back.md +13 -0
  82. package/skills/create-workflow-template/operations/schemas/http.md +38 -0
  83. package/skills/create-workflow-template/operations/schemas/hybrid_search.md +144 -0
  84. package/skills/create-workflow-template/operations/schemas/if_else.md +16 -0
  85. package/skills/create-workflow-template/operations/schemas/incident_created.md +88 -0
  86. package/skills/create-workflow-template/operations/schemas/incident_updated.md +126 -0
  87. package/skills/create-workflow-template/operations/schemas/init_variable.md +67 -0
  88. package/skills/create-workflow-template/operations/schemas/invoice_created.md +21 -0
  89. package/skills/create-workflow-template/operations/schemas/invoice_updated.md +41 -0
  90. package/skills/create-workflow-template/operations/schemas/invoke_code.md +132 -0
  91. package/skills/create-workflow-template/operations/schemas/issue_created.md +105 -0
  92. package/skills/create-workflow-template/operations/schemas/issue_sla_tracker_updated.md +46 -0
  93. package/skills/create-workflow-template/operations/schemas/issue_updated.md +172 -0
  94. package/skills/create-workflow-template/operations/schemas/link_incident_with_issue.md +14 -0
  95. package/skills/create-workflow-template/operations/schemas/link_ticket_with_issue.md +14 -0
  96. package/skills/create-workflow-template/operations/schemas/list_enhancements.md +74 -0
  97. package/skills/create-workflow-template/operations/schemas/list_issues.md +108 -0
  98. package/skills/create-workflow-template/operations/schemas/list_sessions.md +79 -0
  99. package/skills/create-workflow-template/operations/schemas/list_sprint.md +29 -0
  100. package/skills/create-workflow-template/operations/schemas/list_web_sessions.md +87 -0
  101. package/skills/create-workflow-template/operations/schemas/loop_over_accounts.md +106 -0
  102. package/skills/create-workflow-template/operations/schemas/loop_over_articles.md +126 -0
  103. package/skills/create-workflow-template/operations/schemas/loop_over_customers.md +88 -0
  104. package/skills/create-workflow-template/operations/schemas/loop_over_dev_users.md +75 -0
  105. package/skills/create-workflow-template/operations/schemas/loop_over_enhancements.md +112 -0
  106. package/skills/create-workflow-template/operations/schemas/loop_over_incidents.md +113 -0
  107. package/skills/create-workflow-template/operations/schemas/loop_over_issues.md +217 -0
  108. package/skills/create-workflow-template/operations/schemas/loop_over_meetings.md +150 -0
  109. package/skills/create-workflow-template/operations/schemas/loop_over_opportunity.md +161 -0
  110. package/skills/create-workflow-template/operations/schemas/loop_over_sprints.md +50 -0
  111. package/skills/create-workflow-template/operations/schemas/loop_over_tickets.md +203 -0
  112. package/skills/create-workflow-template/operations/schemas/manual_trigger.md +11 -0
  113. package/skills/create-workflow-template/operations/schemas/meeting_created.md +116 -0
  114. package/skills/create-workflow-template/operations/schemas/meeting_updated.md +152 -0
  115. package/skills/create-workflow-template/operations/schemas/oasis_sql_execute.md +11 -0
  116. package/skills/create-workflow-template/operations/schemas/opportunity_created.md +92 -0
  117. package/skills/create-workflow-template/operations/schemas/opportunity_updated.md +124 -0
  118. package/skills/create-workflow-template/operations/schemas/pick_user.md +16 -0
  119. package/skills/create-workflow-template/operations/schemas/question_answer_created.md +44 -0
  120. package/skills/create-workflow-template/operations/schemas/question_answer_updated.md +75 -0
  121. package/skills/create-workflow-template/operations/schemas/recall_chats.md +13 -0
  122. package/skills/create-workflow-template/operations/schemas/router.md +15 -0
  123. package/skills/create-workflow-template/operations/schemas/send_notification.md +19 -0
  124. package/skills/create-workflow-template/operations/schemas/set_variable.md +67 -0
  125. package/skills/create-workflow-template/operations/schemas/sleep_for.md +12 -0
  126. package/skills/create-workflow-template/operations/schemas/sleep_until.md +17 -0
  127. package/skills/create-workflow-template/operations/schemas/sprint_updated.md +37 -0
  128. package/skills/create-workflow-template/operations/schemas/suggest_part.md +14 -0
  129. package/skills/create-workflow-template/operations/schemas/task_updated.md +79 -0
  130. package/skills/create-workflow-template/operations/schemas/test_example.md +16 -0
  131. package/skills/create-workflow-template/operations/schemas/ticket_created.md +136 -0
  132. package/skills/create-workflow-template/operations/schemas/ticket_sla_tracker_updated.md +46 -0
  133. package/skills/create-workflow-template/operations/schemas/ticket_updated.md +198 -0
  134. package/skills/create-workflow-template/operations/schemas/timeline_comment_created.md +70 -0
  135. package/skills/create-workflow-template/operations/schemas/update_account.md +68 -0
  136. package/skills/create-workflow-template/operations/schemas/update_article.md +95 -0
  137. package/skills/create-workflow-template/operations/schemas/update_brand.md +44 -0
  138. package/skills/create-workflow-template/operations/schemas/update_contact.md +53 -0
  139. package/skills/create-workflow-template/operations/schemas/update_conversation.md +149 -0
  140. package/skills/create-workflow-template/operations/schemas/update_enhancement.md +64 -0
  141. package/skills/create-workflow-template/operations/schemas/update_incident.md +156 -0
  142. package/skills/create-workflow-template/operations/schemas/update_issue.md +173 -0
  143. package/skills/create-workflow-template/operations/schemas/update_meeting.md +114 -0
  144. package/skills/create-workflow-template/operations/schemas/update_opportunity.md +137 -0
  145. package/skills/create-workflow-template/operations/schemas/update_question_answer.md +60 -0
  146. package/skills/create-workflow-template/operations/schemas/update_ticket.md +188 -0
  147. package/skills/create-workflow-template/operations/schemas/watch_ticket_for_updates.md +225 -0
  148. package/skills/create-workflow-template/operations/schemas/web_search.md +17 -0
  149. package/skills/create-workflow-template/operations/schemas/while.md +24 -0
  150. package/skills/create-workflow-template/operations/schemas/widget_created.md +75 -0
  151. package/skills/create-workflow-template/operations/schemas/widget_updated.md +98 -0
  152. package/skills/create-workflow-template/operations/schemas/workspace_created.md +20 -0
  153. package/skills/create-workflow-template/operations/triggers.md +1583 -0
  154. package/skills/customer-brief/customer-brief.md +66 -0
  155. package/skills/deal-review-meddpicc/deal-review-meddpicc.md +58 -0
  156. package/skills/next-step-for-opportunity/next-step-for-opportunity.md +55 -0
  157. package/skills/opportunity-feature-prioritizer/SKILL.md +183 -0
  158. package/skills/sales-call-plan-coach/sales-call-plan-coach.md +73 -0
  159. package/skills/sales-context/sales-context.md +44 -0
  160. package/skills/sales-search-and-lookup/sales-search-and-lookup.md +58 -0
  161. package/skills/skill-creator/SKILL.md +570 -0
  162. package/skills/skill-creator/agents/analyzer.md +274 -0
  163. package/skills/skill-creator/agents/comparator.md +202 -0
  164. package/skills/skill-creator/agents/grader.md +223 -0
  165. package/skills/skill-creator/assets/eval_review.html +146 -0
  166. package/skills/skill-creator/eval-viewer/generate_review.py +471 -0
  167. package/skills/skill-creator/eval-viewer/viewer.html +1325 -0
  168. package/skills/skill-creator/references/schemas.md +430 -0
  169. package/skills/skill-creator/references/tool-patterns.md +290 -0
  170. package/skills/skill-creator/scripts/__init__.py +0 -0
  171. package/skills/skill-creator/scripts/aggregate_benchmark.py +401 -0
  172. package/skills/skill-creator/scripts/generate_report.py +326 -0
  173. package/skills/skill-creator/scripts/improve_description.py +247 -0
  174. package/skills/skill-creator/scripts/package_skill.py +136 -0
  175. package/skills/skill-creator/scripts/quick_validate.py +103 -0
  176. package/skills/skill-creator/scripts/run_eval.py +310 -0
  177. package/skills/skill-creator/scripts/run_loop.py +328 -0
  178. package/skills/skill-creator/scripts/utils.py +47 -0
  179. package/skills/trace-diagnosis/trace-diagnosis.md +186 -0
@@ -0,0 +1 @@
1
+ {"data":"{\"description\":\"\",\"serialization_version\":{\"major\":2,\"minor\":0,\"patch\":0},\"steps\":[{\"description\":\"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\":[\"account_article_custom_link\",\"slack\",\"churn_agent\"],\"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('implementation_updated_1', 'output').tnt__account\"}}],\"port_name\":\"input\"}],\"name\":\"Get Account 2\",\"next_steps\":[{\"next_port_name\":\"input\",\"next_step_reference_key\":\"http_3\",\"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\":\"enum\",\"allowed_values\":[\"-\",\"Dev0\",\"India North\",\"India South\",\"Qualitykiosk Technologies\",\"US East\",\"US West\",\"Zordial\"],\"data_name\":\"tnt__aai_squad\",\"db_name\":\"tnt__aai_squad\",\"description\":\"The AAI squad that this account belongs to.\",\"is_filterable\":true,\"name\":\"tnt__aai_squad\",\"oasis\":{\"name\":\"tnt__aai_squad\"},\"ui\":{\"display_name\":\"AAI Squad\",\"placeholder\":\"The AAI squad that this account belongs to.\",\"tooltip\":\"The AAI squad that this account belongs to.\"}},{\"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\"}},{\"supported_filter_ops\":[\"any\",\"not_any\",\"empty\",\"not_empty\"],\"field_type\":\"enum\",\"allowed_values\":[\"HVA\",\"LVA\",\"MVA\"],\"data_name\":\"tnt__account_rank\",\"db_name\":\"tnt__account_rank\",\"description\":\"Rank of the account based on value assessment\",\"is_filterable\":true,\"name\":\"tnt__account_rank\",\"oasis\":{\"name\":\"tnt__account_rank\"},\"ui\":{\"display_name\":\"Account Rank\",\"placeholder\":\"Add Account Rank\"}},{\"supported_filter_ops\":[\"all\",\"any\",\"not_any\",\"empty\",\"not_empty\"],\"field_type\":\"array\",\"base_type\":\"id\",\"data_name\":\"tnt__active_partners\",\"db_name\":\"tnt__active_partners\",\"description\":\"Active Partners selling into this account\",\"id_type\":[\"account\"],\"is_filterable\":true,\"name\":\"tnt__active_partners\",\"oasis\":{\"name\":\"tnt__active_partners\"},\"ui\":{\"display_name\":\"Active Partners\",\"placeholder\":\"Active Partners selling into this account\",\"tooltip\":\"Add the partners who are actively selling into this account \"}},{\"supported_filter_ops\":[\"any\",\"not_any\",\"empty\",\"not_empty\"],\"field_type\":\"int\",\"data_name\":\"tnt__acv\",\"db_name\":\"tnt__acv\",\"description\":\"Annual Contract Value for the account\",\"is_filterable\":true,\"name\":\"tnt__acv\",\"oasis\":{\"name\":\"tnt__acv\"},\"ui\":{\"display_name\":\"ACV\",\"placeholder\":\"Enter annual contract value\"}},{\"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\":\"Whether the account is an alliance partner\",\"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\":[\"Call Center\",\"Hyperscaler\",\"IT & HR\",\"LLMs\"],\"data_name\":\"tnt__alliance_partner_type\",\"db_name\":\"tnt__alliance_partner_type\",\"description\":\"Type of alliance partnership with the account\",\"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\":\"Total annual revenue of the account\",\"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\":\"Range of the account's annual revenue\",\"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\":\"Annual Recurring Revenue for the account\",\"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__aws_psm_email\",\"db_name\":\"tnt__aws_psm_email\",\"description\":\"Email of the AWS Partner Success Manager\",\"is_filterable\":true,\"name\":\"tnt__aws_psm_email\",\"oasis\":{\"name\":\"tnt__aws_psm_email\"},\"ui\":{\"display_name\":\"AWS Partner Success Manager Email\",\"placeholder\":\"Email of the AWS Partner Success Manager\"}},{\"supported_filter_ops\":[\"any\",\"not_any\",\"empty\",\"not_empty\"],\"field_type\":\"text\",\"data_name\":\"tnt__aws_psm_name\",\"db_name\":\"tnt__aws_psm_name\",\"description\":\"Name of the AWS Partner Success Manager\",\"is_filterable\":true,\"name\":\"tnt__aws_psm_name\",\"oasis\":{\"name\":\"tnt__aws_psm_name\"},\"ui\":{\"display_name\":\"AWS Partner Success Manager Name\",\"placeholder\":\"Name of the AWS Partner Success Manager\"}},{\"supported_filter_ops\":[\"any\",\"not_any\",\"empty\",\"not_empty\"],\"field_type\":\"text\",\"data_name\":\"tnt__aws_sales_rep_email\",\"db_name\":\"tnt__aws_sales_rep_email\",\"description\":\"Email of the AWS Sales Rep\",\"is_filterable\":true,\"name\":\"tnt__aws_sales_rep_email\",\"oasis\":{\"name\":\"tnt__aws_sales_rep_email\"},\"ui\":{\"display_name\":\"AWS Sales Rep Email\",\"placeholder\":\"Email of the AWS Sales Rep\"}},{\"supported_filter_ops\":[\"any\",\"not_any\",\"empty\",\"not_empty\"],\"field_type\":\"text\",\"data_name\":\"tnt__aws_sales_rep_name\",\"db_name\":\"tnt__aws_sales_rep_name\",\"description\":\"Name of the AWS Sales Rep\",\"is_filterable\":true,\"name\":\"tnt__aws_sales_rep_name\",\"oasis\":{\"name\":\"tnt__aws_sales_rep_name\"},\"ui\":{\"display_name\":\"AWS Sales Rep Name\",\"placeholder\":\"Name of the AWS Sales Rep\"}},{\"supported_filter_ops\":[\"any\",\"not_any\",\"empty\",\"not_empty\"],\"field_type\":\"enum\",\"allowed_values\":[\"Business Validation\",\"Closed Lost\",\"Committed\",\"Launched\",\"Prospect\",\"Qualified\",\"Technical Validation\"],\"data_name\":\"tnt__aws_stage\",\"db_name\":\"tnt__aws_stage\",\"description\":\"Current AWS partnership stage of the account\",\"is_filterable\":true,\"name\":\"tnt__aws_stage\",\"oasis\":{\"name\":\"tnt__aws_stage\"},\"ui\":{\"display_name\":\"AWS Stage\",\"placeholder\":\"AWS Stage\"}},{\"supported_filter_ops\":[\"any\",\"not_any\",\"empty\",\"not_empty\"],\"field_type\":\"text\",\"data_name\":\"tnt__billing_address\",\"db_name\":\"tnt__billing_address\",\"description\":\"Billing address of the account\",\"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\",\"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__billing_country\",\"db_name\":\"tnt__billing_country\",\"description\":\"Country of the account's billing address\",\"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\":\"text\",\"data_name\":\"tnt__buying_center\",\"db_name\":\"tnt__buying_center\",\"description\":\"Geography where Majority of C-suite reside\",\"is_filterable\":true,\"name\":\"tnt__buying_center\",\"oasis\":{\"name\":\"tnt__buying_center\"},\"ui\":{\"display_name\":\"Buying Center\",\"placeholder\":\"Geography where Majority of C-suite reside\",\"tooltip\":\"Geography where Majority of C-suite reside\"}},{\"supported_filter_ops\":[\"all\",\"any\",\"not_any\",\"empty\",\"not_empty\"],\"field_type\":\"array\",\"base_type\":\"text\",\"data_name\":\"tnt__case_study_links\",\"db_name\":\"tnt__case_study_links\",\"is_filterable\":true,\"name\":\"tnt__case_study_links\",\"oasis\":{\"name\":\"tnt__case_study_links\"},\"ui\":{\"display_name\":\"Case Study Links\",\"placeholder\":\"Add Case Study Links\"}},{\"supported_filter_ops\":[\"any\",\"not_any\",\"empty\",\"not_empty\"],\"field_type\":\"text\",\"data_name\":\"tnt__city\",\"db_name\":\"tnt__city\",\"description\":\"City where the account is located\",\"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\":\"Size of the company in terms of employees\",\"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 associated with the account\",\"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\",\"Australia\",\"Europe\",\"North America\",\"Oceania\",\"South America\"],\"data_name\":\"tnt__continent\",\"db_name\":\"tnt__continent\",\"description\":\"Continent where the account is located\",\"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 where the account is located\",\"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\":\"enum\",\"allowed_values\":[\"At Risk\",\"Critical\",\"Healthy\",\"Neutral\",\"Thriving\"],\"data_name\":\"tnt__cs_health_assessment\",\"db_name\":\"tnt__cs_health_assessment\",\"default_value\":\"Neutral\",\"description\":\"Customer success health assessment of the account\",\"is_filterable\":true,\"name\":\"tnt__cs_health_assessment\",\"oasis\":{\"name\":\"tnt__cs_health_assessment\"},\"ui\":{\"display_name\":\"CS Health Assessment\",\"placeholder\":\"Add CS Health Assessment\",\"tooltip\":\"1. Thriving – Highly satisfied, fully engaged, and maximizing product value. No risks. 2. Healthy – Satisfied, steady engagement, minimal issues. 3. Neutral – Generally satisfied with some minor challenges or inconsistent usage. 4. At Risk – Facing issues or declining engagement; requires attention. 5. Critical – High risk of churn; urgent intervention needed.\"}},{\"supported_filter_ops\":[\"any\",\"not_any\",\"empty\",\"not_empty\"],\"field_type\":\"id\",\"data_name\":\"tnt__css_implementation_tracker\",\"db_name\":\"tnt__css_implementation_tracker\",\"description\":\"Reference to the associated part for implementation tracking\",\"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\":[\"Freshdesk\",\"HappyFox\",\"Haptik.ai\",\"HubSpot Service Hub\",\"Intercom\",\"Jira Servicedesk\",\"Kapture\",\"Nugget\",\"OS Systems\",\"Others\",\"SFDC ServiceCloud\",\"Servicenow\",\"Yellow.ai\",\"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\":\"text\",\"data_name\":\"tnt__e2e_partner_devrev_paper\",\"db_name\":\"tnt__e2e_partner_devrev_paper\",\"default_value\":\"18%\",\"is_filterable\":true,\"name\":\"tnt__e2e_partner_devrev_paper\",\"oasis\":{\"name\":\"tnt__e2e_partner_devrev_paper\"},\"ui\":{\"display_name\":\"E2E Partner (DevRev Paper) \",\"placeholder\":\"Add E2E Partner (DevRev Paper) \"}},{\"supported_filter_ops\":[\"any\",\"not_any\",\"empty\",\"not_empty\"],\"field_type\":\"text\",\"data_name\":\"tnt__e2e_partner_partner_paper\",\"db_name\":\"tnt__e2e_partner_partner_paper\",\"default_value\":\"20%\",\"is_filterable\":true,\"name\":\"tnt__e2e_partner_partner_paper\",\"oasis\":{\"name\":\"tnt__e2e_partner_partner_paper\"},\"ui\":{\"display_name\":\"E2E Partner (Partner Paper)\",\"placeholder\":\"Add E2E Partner (Partner Paper)\"}},{\"supported_filter_ops\":[\"any\",\"not_any\",\"empty\",\"not_empty\"],\"field_type\":\"enum\",\"allowed_values\":[\"In-Progress\",\"Onboarded\",\"Prospect\"],\"data_name\":\"tnt__ecosystem_status\",\"db_name\":\"tnt__ecosystem_status\",\"description\":\"Status of the ecosystem\",\"is_filterable\":true,\"name\":\"tnt__ecosystem_status\",\"oasis\":{\"name\":\"tnt__ecosystem_status\"},\"ui\":{\"display_name\":\"Ecosystem Status\",\"placeholder\":\"Add Ecosystem Status\"}},{\"supported_filter_ops\":[\"any\",\"not_any\",\"empty\",\"not_empty\"],\"field_type\":\"enum\",\"allowed_values\":[\"Tier 1\",\"Tier 2\",\"Tier 3\"],\"data_name\":\"tnt__ecosystem_tier\",\"db_name\":\"tnt__ecosystem_tier\",\"description\":\"Tier of the startup ecosystem\",\"is_filterable\":true,\"name\":\"tnt__ecosystem_tier\",\"oasis\":{\"name\":\"tnt__ecosystem_tier\"},\"ui\":{\"display_name\":\"Ecosystem Tier\",\"placeholder\":\"Add Ecosystem Tier\"}},{\"supported_filter_ops\":[\"any\",\"not_any\",\"empty\",\"not_empty\"],\"field_type\":\"enum\",\"allowed_values\":[\"Accelerator and Incubator\",\"Angel\",\"Others\",\"Scout\",\"Venture Capital\"],\"data_name\":\"tnt__ecosystem_type\",\"db_name\":\"tnt__ecosystem_type\",\"description\":\"Type of the startup ecosystem\",\"is_filterable\":true,\"name\":\"tnt__ecosystem_type\",\"oasis\":{\"name\":\"tnt__ecosystem_type\"},\"ui\":{\"display_name\":\"Ecosystem Type\",\"placeholder\":\"Add Ecosystem Type\"}},{\"supported_filter_ops\":[\"any\",\"not_any\",\"empty\",\"not_empty\"],\"field_type\":\"int\",\"data_name\":\"tnt__employee_count\",\"db_name\":\"tnt__employee_count\",\"description\":\"Number of employees in the account\",\"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-3000\",\"251-500\",\"50-250\",\"501-1000\",\"Less than 50\",\"More than 3000\"],\"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\"}},{\"supported_filter_ops\":[\"any\",\"not_any\",\"empty\",\"not_empty\"],\"field_type\":\"id\",\"data_name\":\"tnt__executive_sponsor\",\"db_name\":\"tnt__executive_sponsor\",\"id_type\":[\"devu\"],\"is_filterable\":true,\"name\":\"tnt__executive_sponsor\",\"oasis\":{\"name\":\"tnt__executive_sponsor\"},\"ui\":{\"display_name\":\"Executive Sponsor\",\"placeholder\":\"Add Executive Sponsor\",\"tooltip\":\"Executive Sponsor for the customer\"}},{\"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\":\"Year the account was founded\",\"is_filterable\":true,\"name\":\"tnt__founded_year\",\"oasis\":{\"name\":\"tnt__founded_year\"},\"ui\":{\"display_name\":\"Founded year\",\"placeholder\":\"Add Founded year\"}},{\"supported_filter_ops\":[\"any\",\"not_any\",\"empty\",\"not_empty\"],\"field_type\":\"enum\",\"allowed_values\":[\"High\",\"Low\"],\"data_name\":\"tnt__friction_score\",\"db_name\":\"tnt__friction_score\",\"is_filterable\":true,\"name\":\"tnt__friction_score\",\"oasis\":{\"name\":\"tnt__friction_score\"},\"ui\":{\"display_name\":\"Friction Score\",\"placeholder\":\"Add Friction Score\"}},{\"field_type\":\"int\",\"data_name\":\"tnt__funding_amount\",\"db_name\":\"tnt__funding_amount\",\"description\":\"Total funding amount received by the account\",\"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\":[\"Acquired\",\"Angel/Seed\",\"Bootstrapped Large\",\"Bootstrapped Medium\",\"Bootstrapped Small\",\"Early Stage\",\"Funding Raised\",\"Late Stage\",\"Public\",\"Seed\",\"Series A\",\"Series B\",\"Series C\",\"Series D\",\"Series E\",\"Series F\",\"Series G\",\"Series H\",\"Series I\",\"Series J\",\"Series K\",\"Series L\",\"Series M\",\"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\":\"Theater\",\"is_filterable\":true,\"name\":\"tnt__geo\",\"oasis\":{\"name\":\"tnt__geo\"},\"ui\":{\"display_name\":\"Theater\",\"placeholder\":\"Add Theater\"}},{\"field_type\":\"date\",\"data_name\":\"tnt__go_live_date\",\"db_name\":\"tnt__go_live_date\",\"description\":\"Enter the Go Live Date of Customer for Billing \",\"is_filterable\":true,\"name\":\"tnt__go_live_date\",\"oasis\":{\"name\":\"tnt__go_live_date\"},\"ui\":{\"display_name\":\"Go Live Date\",\"placeholder\":\"Enter the Go Live Date of Customer for Billing \",\"tooltip\":\"Enter the Go Live Date of Customer for Billing \"}},{\"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\",\"default_value\":\"No Growth\",\"description\":\"Growth Opportunity\",\"is_filterable\":true,\"name\":\"tnt__growth_opportunity\",\"oasis\":{\"name\":\"tnt__growth_opportunity\"},\"ui\":{\"display_name\":\"Growth Opportunity\",\"placeholder\":\"Add Growth Opportunity\"}},{\"field_type\":\"bool\",\"data_name\":\"tnt__growth_override\",\"db_name\":\"tnt__growth_override\",\"description\":\"Owner: Rayan Rafeek, Alejandro Costa, Majo Garcia Lanz\",\"is_filterable\":false,\"name\":\"tnt__growth_override\",\"oasis\":{\"name\":\"tnt__growth_override\"},\"ui\":{\"display_name\":\"Growth Override\",\"placeholder\":\"Add Growth Override\"}},{\"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\":\"enum\",\"allowed_values\":[\"Blocked\",\"Live\",\"Onboarding\"],\"data_name\":\"tnt__implementation_status\",\"db_name\":\"tnt__implementation_status\",\"is_filterable\":true,\"name\":\"tnt__implementation_status\",\"oasis\":{\"name\":\"tnt__implementation_status\"},\"ui\":{\"display_name\":\"Implementation Status\",\"placeholder\":\"Add Implementation Status\"}},{\"supported_filter_ops\":[\"all\",\"any\",\"not_any\",\"empty\",\"not_empty\"],\"field_type\":\"array\",\"base_type\":\"id\",\"data_name\":\"tnt__incident_poc\",\"db_name\":\"tnt__incident_poc\",\"description\":\"Incident communication contact for each account\",\"id_type\":[\"revu\"],\"is_filterable\":true,\"is_required\":false,\"name\":\"tnt__incident_poc\",\"oasis\":{\"name\":\"tnt__incident_poc\"},\"ui\":{\"display_name\":\"Incident POC\",\"placeholder\":\"Add Incident POC\",\"tooltip\":\"Kindly add contact from the same workspace, the added contact would be informed about incident\"}},{\"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\":[\"A\",\"B\",\"C\",\"D\"],\"data_name\":\"tnt__industry_rank\",\"db_name\":\"tnt__industry_rank\",\"description\":\"Industry Rank\",\"is_filterable\":true,\"name\":\"tnt__industry_rank\",\"oasis\":{\"name\":\"tnt__industry_rank\"},\"ui\":{\"display_name\":\"Industry Rank\",\"placeholder\":\"Add Industry Rank\"}},{\"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\":\"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\"}},{\"supported_filter_ops\":[\"any\",\"not_any\",\"empty\",\"not_empty\"],\"field_type\":\"enum\",\"allowed_values\":[\"S1 - Partner Training & Enablement\",\"S2 - DevRev Led & Partner Assisted\",\"S3 - Partner Led & DevRev Assisted\",\"S4 - Partner Led Implementation\"],\"data_name\":\"tnt__max_implementation_readiness_stage\",\"db_name\":\"tnt__max_implementation_readiness_stage\",\"is_filterable\":true,\"name\":\"tnt__max_implementation_readiness_stage\",\"oasis\":{\"name\":\"tnt__max_implementation_readiness_stage\"},\"ui\":{\"display_name\":\"Max Implementation Readiness Stage\",\"placeholder\":\"Add Max Implementation Readiness Stage\"}},{\"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\":\"double\",\"data_name\":\"tnt__negative_sentiment_score\",\"db_name\":\"tnt__negative_sentiment_score\",\"is_filterable\":false,\"name\":\"tnt__negative_sentiment_score\",\"oasis\":{\"name\":\"tnt__negative_sentiment_score\"},\"ui\":{\"display_name\":\"Negative Sentiment Score\",\"placeholder\":\"Add negative sentiment score\"}},{\"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\"}},{\"field_type\":\"int\",\"data_name\":\"tnt__number_of_case_studies\",\"db_name\":\"tnt__number_of_case_studies\",\"is_filterable\":false,\"name\":\"tnt__number_of_case_studies\",\"oasis\":{\"name\":\"tnt__number_of_case_studies\"},\"ui\":{\"display_name\":\"Number of Case Studies\",\"placeholder\":\"Add Number of Case Studies\"}},{\"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\",\"revu\"],\"is_filterable\":true,\"name\":\"tnt__onecrm_eng\",\"oasis\":{\"name\":\"tnt__onecrm_eng\"},\"ui\":{\"display_name\":\"Applied AI Engineer\",\"placeholder\":\"Add Applied AI Engineer\",\"tooltip\":\"Supporting Applied AI Engineer\"}},{\"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\",\"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__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\":\"bool\",\"data_name\":\"tnt__opt_out\",\"db_name\":\"tnt__opt_out\",\"is_filterable\":true,\"name\":\"tnt__opt_out\",\"oasis\":{\"name\":\"tnt__opt_out\"},\"ui\":{\"display_name\":\"Opt Out\",\"placeholder\":\"Add Opt Out\"}},{\"supported_filter_ops\":[\"any\",\"not_any\",\"empty\",\"not_empty\"],\"field_type\":\"enum\",\"allowed_values\":[\"0-New\",\"1-Shortlisted\",\"2-Prospecting\",\"3-Engaged\",\"4-Opportunity in Progress\",\"5-Return to Nurture\",\"6-Disqualified\"],\"data_name\":\"tnt__outreach_status\",\"db_name\":\"tnt__outreach_status\",\"default_value\":\"0-New\",\"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\":[\"any\",\"not_any\",\"empty\",\"not_empty\"],\"field_type\":\"id\",\"data_name\":\"tnt__parent_account\",\"db_name\":\"tnt__parent_account\",\"id_type\":[\"account\"],\"is_filterable\":true,\"name\":\"tnt__parent_account\",\"oasis\":{\"name\":\"tnt__parent_account\"},\"ui\":{\"display_name\":\"Parent Account\",\"placeholder\":\"Add a parent account that is related to this account\",\"tooltip\":\"Add a Parent Account which is Global parent in the account hierarchy\"}},{\"field_type\":\"text\",\"data_name\":\"tnt__partner_agreement\",\"db_name\":\"tnt__partner_agreement\",\"description\":\"Link to the Partner Agreement\",\"is_filterable\":false,\"name\":\"tnt__partner_agreement\",\"oasis\":{\"name\":\"tnt__partner_agreement\"},\"ui\":{\"display_name\":\"Partner Agreement\",\"placeholder\":\"Link to the Partner Agreement\"}},{\"supported_filter_ops\":[\"any\",\"not_any\",\"empty\",\"not_empty\"],\"field_type\":\"text\",\"data_name\":\"tnt__partner_assist\",\"db_name\":\"tnt__partner_assist\",\"is_filterable\":true,\"name\":\"tnt__partner_assist\",\"oasis\":{\"name\":\"tnt__partner_assist\"},\"ui\":{\"display_name\":\"Partner Assist\",\"placeholder\":\"Add Partner Assist\"}},{\"supported_filter_ops\":[\"any\",\"not_any\",\"empty\",\"not_empty\"],\"field_type\":\"text\",\"data_name\":\"tnt__partner_led_devrev_paper\",\"db_name\":\"tnt__partner_led_devrev_paper\",\"default_value\":\"18%\",\"is_filterable\":true,\"name\":\"tnt__partner_led_devrev_paper\",\"oasis\":{\"name\":\"tnt__partner_led_devrev_paper\"},\"ui\":{\"display_name\":\"Partner Led (DevRev Paper)\",\"placeholder\":\"Add Partner Led (DevRev Paper)\"}},{\"supported_filter_ops\":[\"any\",\"not_any\",\"empty\",\"not_empty\"],\"field_type\":\"text\",\"data_name\":\"tnt__partner_led_partner_paper\",\"db_name\":\"tnt__partner_led_partner_paper\",\"default_value\":\"20%\",\"is_filterable\":true,\"name\":\"tnt__partner_led_partner_paper\",\"oasis\":{\"name\":\"tnt__partner_led_partner_paper\"},\"ui\":{\"display_name\":\"Partner Led (Partner Paper)\",\"placeholder\":\"Add Partner Led (Partner Paper)\"}},{\"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\",\"tooltip\":\"Please select all the regions that the partner might collaborate with us in. This is a multi-selection field\"}},{\"supported_filter_ops\":[\"all\",\"any\",\"not_any\",\"empty\",\"not_empty\"],\"field_type\":\"array\",\"base_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\",\"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__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\",\"tooltip\":\"Please select all the sub-regions that the partner might collaborate with us in. This is a multi-selection field\"}},{\"supported_filter_ops\":[\"all\",\"any\",\"not_any\",\"empty\",\"not_empty\"],\"field_type\":\"array\",\"base_type\":\"enum\",\"allowed_values\":[\"AMER\",\"APJ\",\"EMEA\"],\"data_name\":\"tnt__partner_theater\",\"db_name\":\"tnt__partner_theater\",\"description\":\"Partner Theater\",\"is_filterable\":true,\"name\":\"tnt__partner_theater\",\"oasis\":{\"name\":\"tnt__partner_theater\"},\"ui\":{\"display_name\":\"Partner Theater\",\"placeholder\":\"Add Partner Theater\"}},{\"supported_filter_ops\":[\"all\",\"any\",\"not_any\",\"empty\",\"not_empty\"],\"field_type\":\"array\",\"base_type\":\"enum\",\"allowed_values\":[\"Consulting\",\"Distributor\",\"GSI\",\"Implementation\",\"Regional Reseller\",\"Tech Alliance\"],\"data_name\":\"tnt__partner_type\",\"db_name\":\"tnt__partner_type\",\"description\":\"Partner Type\",\"is_filterable\":true,\"is_required\":false,\"name\":\"tnt__partner_type\",\"oasis\":{\"name\":\"tnt__partner_type\"},\"ui\":{\"display_name\":\"Partner Type\",\"placeholder\":\"Add Partner Type\"}},{\"supported_filter_ops\":[\"any\",\"not_any\",\"empty\",\"not_empty\"],\"field_type\":\"enum\",\"allowed_values\":[\"Ecosystem\",\"Emerging\",\"Focus\"],\"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\":[\"Custom\",\"Implementation\",\"No Payment\",\"Referral\",\"Resell on DevRev paper\",\"Resell on Partner paper\"],\"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\"}},{\"field_type\":\"timestamp\",\"data_name\":\"tnt__partnership_signed_date\",\"db_name\":\"tnt__partnership_signed_date\",\"description\":\"The date when the Partner signed the contract with us\",\"is_filterable\":false,\"name\":\"tnt__partnership_signed_date\",\"oasis\":{\"name\":\"tnt__partnership_signed_date\"},\"ui\":{\"display_name\":\"Partnership Signed Date\",\"placeholder\":\"Add Partnership Signed Date\",\"tooltip\":\"The date when the Partner signed the contract with us\"}},{\"supported_filter_ops\":[\"any\",\"not_any\",\"empty\",\"not_empty\"],\"field_type\":\"enum\",\"allowed_values\":[\"In Progress\",\"Prospect\",\"Signed\",\"Stalled\",\"Suspended\"],\"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\":[\"AI Actions\",\"AI Conversations\",\"Active Conversations Pro - Verified User\",\"Additional Base Storage\",\"Additional File Storage\",\"Build Pro Subscription\",\"Build Starter Subscription\",\"Build Ultimate Subscription\",\"Build and Support Pro\",\"Build and Support Ultimate\",\"DevRev Platform\",\"Grow Pro\",\"Grow Starter\",\"OneCRM Ultimate\",\"PLuG (UE)\",\"PLuG (UE) Onetime Additional Sessions\",\"PLuG Pro Subscription\",\"PLuG Session Analytics\",\"PLuG Starter Subscription\",\"PLuG Ultimate Subscription\",\"Support Pro Subscription\",\"Support Starter Subscription\",\"Support Ultimate Subscription\",\"Turing Squad Pro\",\"Turing Squad Starter\",\"Turing Squad Ultimate\",\"WhatsApp Messages\",\"WhatsApp Numbers\"],\"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\":\"id\",\"data_name\":\"tnt__primary_poc\",\"db_name\":\"tnt__primary_poc\",\"id_type\":[\"revu\"],\"is_filterable\":true,\"name\":\"tnt__primary_poc\",\"oasis\":{\"name\":\"tnt__primary_poc\"},\"ui\":{\"display_name\":\"Primary POC\",\"placeholder\":\"Add Primary POC\"}},{\"supported_filter_ops\":[\"all\",\"any\",\"not_any\",\"empty\",\"not_empty\"],\"field_type\":\"array\",\"base_type\":\"enum\",\"allowed_values\":[\"Enterprise\",\"Mid-Market\",\"SMB\",\"Startup\"],\"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\"}},{\"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\":\"text\",\"data_name\":\"tnt__referral\",\"db_name\":\"tnt__referral\",\"default_value\":\"15%\",\"is_filterable\":true,\"name\":\"tnt__referral\",\"oasis\":{\"name\":\"tnt__referral\"},\"ui\":{\"display_name\":\"Referral\",\"placeholder\":\"Add Referral\"}},{\"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\",\"Japan\",\"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__renewal_devrev_paper\",\"db_name\":\"tnt__renewal_devrev_paper\",\"default_value\":\"15%\",\"is_filterable\":true,\"name\":\"tnt__renewal_devrev_paper\",\"oasis\":{\"name\":\"tnt__renewal_devrev_paper\"},\"ui\":{\"display_name\":\"Renewal (DevRev Paper)\",\"placeholder\":\"Add Renewal (DevRev Paper)\"}},{\"supported_filter_ops\":[\"any\",\"not_any\",\"empty\",\"not_empty\"],\"field_type\":\"text\",\"data_name\":\"tnt__renewal_partner_paper\",\"db_name\":\"tnt__renewal_partner_paper\",\"is_filterable\":true,\"name\":\"tnt__renewal_partner_paper\",\"oasis\":{\"name\":\"tnt__renewal_partner_paper\"},\"ui\":{\"display_name\":\"Renewal (Partner Paper)\",\"placeholder\":\"Add Renewal (Partner Paper)\"}},{\"supported_filter_ops\":[\"any\",\"not_any\",\"empty\",\"not_empty\"],\"field_type\":\"int\",\"data_name\":\"tnt__revenue_potential\",\"db_name\":\"tnt__revenue_potential\",\"description\":\"Revenue Potential from this customer to DevRev for Session Analytics\",\"is_filterable\":true,\"name\":\"tnt__revenue_potential\",\"oasis\":{\"name\":\"tnt__revenue_potential\"},\"ui\":{\"display_name\":\"Revenue Potential (Session Analytics)\",\"placeholder\":\"Revenue Potential in USD for Session Analytics\",\"tooltip\":\"Revenue Potential in USD\"}},{\"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\"}},{\"supported_filter_ops\":[\"any\",\"not_any\",\"empty\",\"not_empty\"],\"field_type\":\"enum\",\"allowed_values\":[\"P1\",\"P2\",\"P3\",\"P4\"],\"data_name\":\"tnt__sales_priority\",\"db_name\":\"tnt__sales_priority\",\"description\":\"AE tags the priority to Account for the SDRs and themselves to focus \",\"is_filterable\":true,\"name\":\"tnt__sales_priority\",\"oasis\":{\"name\":\"tnt__sales_priority\"},\"ui\":{\"display_name\":\"Sales Priority\",\"placeholder\":\"Sales Priority of Accounts to focus\",\"tooltip\":\"Tag the priority of this account to focus\"}},{\"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\"}},{\"field_type\":\"bool\",\"data_name\":\"tnt__session_analytics_focus_account\",\"db_name\":\"tnt__session_analytics_focus_account\",\"description\":\"If the account has the potential to buy Session Analytics, mark it as true\",\"is_filterable\":true,\"name\":\"tnt__session_analytics_focus_account\",\"oasis\":{\"name\":\"tnt__session_analytics_focus_account\"},\"ui\":{\"display_name\":\"Session Analytics Focus Account\",\"placeholder\":\"Is this potential Session Analytics Account\",\"tooltip\":\"If the account has the potential to buy Session Analytics, mark it as true\"}},{\"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\":[\"any\",\"not_any\",\"empty\",\"not_empty\"],\"field_type\":\"enum\",\"allowed_values\":[\"Pro\",\"Starter\",\"Ultimate\"],\"data_name\":\"tnt__sla_plan\",\"db_name\":\"tnt__sla_plan\",\"is_filterable\":true,\"name\":\"tnt__sla_plan\",\"oasis\":{\"name\":\"tnt__sla_plan\"},\"ui\":{\"display_name\":\"SLA Plan\",\"placeholder\":\"Add SLA Plan\",\"tooltip\":\"This field will be set based on the highest subscription opted by the customer. Subscription details are available in the \\\"Plans\\\" field of the Account object.\"}},{\"supported_filter_ops\":[\"any\",\"not_any\",\"empty\",\"not_empty\"],\"field_type\":\"enum\",\"allowed_values\":[\"Advisor\",\"Events: Effortless\",\"Events: Exec Dinners\",\"Events: Industry Events\",\"Events: Meetups\",\"Events: Webinar\",\"Inbound: Organic\",\"Inbound: Paid\",\"Outbound\",\"Partner\"],\"data_name\":\"tnt__source\",\"db_name\":\"tnt__source\",\"description\":\"Source\",\"is_filterable\":true,\"name\":\"tnt__source\",\"oasis\":{\"name\":\"tnt__source\"},\"ui\":{\"display_name\":\"Source\",\"placeholder\":\"Add Source\"}},{\"supported_filter_ops\":[\"any\",\"not_any\",\"empty\",\"not_empty\"],\"field_type\":\"text\",\"data_name\":\"tnt__state\",\"db_name\":\"tnt__state\",\"description\":\"State\",\"is_filterable\":true,\"name\":\"tnt__state\",\"oasis\":{\"name\":\"tnt__state\"},\"ui\":{\"display_name\":\"State\",\"placeholder\":\"Add State\"}},{\"supported_filter_ops\":[\"any\",\"not_any\",\"empty\",\"not_empty\"],\"field_type\":\"enum\",\"allowed_values\":[\"Activated\",\"Deactivated\"],\"data_name\":\"tnt__status\",\"db_name\":\"tnt__status\",\"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\":[\"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\"}},{\"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\",\"AWS Roundtable'23\",\"AWS:re-invent2022\",\"Aditi Jain\",\"Agustin Vivas\",\"Allable\",\"Ameena Beevi\",\"Anindya Misra\",\"Argentinameetup23\",\"Atlassian Team'23\",\"Austinmeetup23\",\"Beta Launch\",\"BillBoardSept2023\",\"Billing Campaign: Responded\",\"Blrtechsummit2022\",\"Boomer Banaag\",\"BrandCampaign\",\"CIO-VirtualEvent\",\"CIO-summit23\",\"CIOKulb event\",\"CSISRAEL23\",\"CSS\",\"Campaign LP --- 91Ninjas x Support Form 1\",\"Campaign LP --- 91Ninjas x Support Form 2\",\"Campaign LP --- 91Ninjas x Ticketing\",\"Campaign LP --- AI Chatbot\",\"Campaign LP --- AI Support & Chatbot\",\"Campaign LP --- Customer Service/Helpdesk Software\",\"Campaign LP --- DevRev vs Zendesk\",\"Campaign LP --- Support Software\",\"Campaign LP --- Ticketing\",\"Chandra Nath\",\"Chase McDowell\",\"Circle\",\"Cohort 0\",\"Cohort 1\",\"Conversion\",\"Customer Referral\",\"CustomerPlusProduct\",\"CustomerSupport\",\"CustomerSupportBangalore\",\"CustomerSupportRetarget\",\"Derek Bennett\",\"DevRev+AWS-Meetup\",\"DevRev+AWS-Meetup22\",\"DevRev+CIOKlub-Meetup\",\"DevRev+CIOKlubChennai-Meetup\",\"DevRev+Descope-Meetup'23\",\"DevRev+IITM-Meetup23\",\"DevRev+MXV-Meetup\",\"DevRev+Mayfield-June23\",\"DevRev+SaaSInsider+Github-Meetup\",\"DevRev+Saasboomi-Meetup22\",\"DevRev+Stripe-Happyhour\",\"DevRev+TogetherFund-Meetup23\",\"DevRev-Meetup22\",\"Dheeraj Pandey\",\"ELC Annual'23\",\"EarlyStageStartups\",\"Elevate\",\"Emily Dworkin\",\"Event-Beta Launch\",\"Event-Circle Talk\",\"Event-India Meetup\",\"Event-Leo Capital\",\"Event-Podim\",\"Event-Product Tech Meetup\",\"Event-SaaSBOOMi\",\"Event-SxSW\",\"Event-TechCrunch Summer Party\",\"Events\",\"Frank Ochambela\",\"FreshdeskHypertarget\",\"GA-Tech Crunch\",\"GA_Conversion\",\"Game\",\"Gaurish Lawande\",\"Gayathri Balasubramanian\",\"Geektimecode23\",\"Gowri S\",\"Harmonic\",\"IQPC\",\"IsraelMeetup23\",\"Jae Hosking\",\"Jatin G\",\"Jeffin Mathew\",\"Joaquin Cordoba\",\"Kavya Kommareddy\",\"Kevin Kosacoff\",\"Lautaro Ortiz\",\"Lead_LinkedIn Campaign\",\"Mamram\",\"Manish Jindal\",\"Manoj Agarwal\",\"Manoj R\",\"Mayfield\",\"Mayfieldmeetup23\",\"Meetmagic + Innovatus\",\"Millenium Alliance\",\"Mubin Khan\",\"Mumbai 8-10th Jan 23 Outreach\",\"Neeraj Matiyani\",\"Noor J\",\"NvidiaGTC\",\"Omkar Babar\",\"Ophir Rom\",\"Ortus\",\"PM List\",\"Paige Caldwell\",\"Paul Park\",\"PerformanceCampaign\",\"PerformanceMax\",\"Podim'23\",\"Press\",\"Product School\",\"Product-Unconference'23\",\"Q1FY25_CSS_Exec_Event_London\",\"Q2FY25_Effortless_New_York\",\"Q4FY23-Closed\",\"Ramya Iyer\",\"Razorpay\",\"Relationship\",\"Retarget campaign\",\"Rohan Soj\",\"SD\",\"SG-Booth23\",\"SG-DGB23\",\"SG-ExhibitingComp23\",\"SG-OfficeHours23\",\"SG-Roundtable23\",\"SG-TargetedList23\",\"SXSW\",\"SZW group\",\"SaaS Central'23\",\"SaaS Con'23\",\"SaaSboomi Annual 2023\",\"SaaStock-Happyhour'23\",\"SaaStrAug2023\",\"Saastr Europe 23\",\"Sabari Prasanth\",\"Sanjay Somashekar\",\"Shamanth Kengeri\",\"Start-Up Spark\",\"Startup\",\"Strong Relationship\",\"Sunil Mahale\",\"Swapnil Pancholi\",\"TPF'23\",\"TSIA\",\"Tech and Leadership Meetup\",\"Tom Emmanual\",\"UBS Forums\",\"UE\",\"Ufirst-23\",\"Vimlesh Gautam\",\"Yadhu Krishnan\",\"Yellowai\",\"ZendeskAlternative\",\"ZendeskHypertarget\",\"ZendeskReplace\",\"beta_campaign22\",\"beta_campaign_april22\",\"beta_campaign_jun22\",\"beta_campaign_may22\",\"bio\",\"circleads\",\"customers\",\"custtestGM\",\"d5dd4da996-EMAIL_CAMPAIGN_2023_03_14_10_11\",\"devrev\",\"devrevemail\",\"digital campaign\",\"digital campaigns 2024\",\"draperevent23\",\"dreamforcehappyhour\",\"effortless23\",\"effortlessspeakers\",\"email campaign\",\"essentialism_bookcampaign\",\"fb_campaign\",\"google_campaign\",\"graice\",\"hackathon\",\"ind_ai_support_chatbot\",\"ind_customer_service_software\",\"ind_ticketing_system\",\"ind_ticketing_system_exact\",\"ind_ticketing_system_phrase_match\",\"ind_zendesk\",\"ind_zendesk_exact\",\"ind_zendesk_phrase\",\"linkedin\",\"linkedin_eventpage\",\"linkedinagendaeffortless\",\"linkedincpcWCBlueL\",\"linkedinnative\",\"linkedinpolleffortless\",\"magicball'23\",\"maverick\",\"peopleops\",\"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\",\"z47\"],\"data_name\":\"tnt__sub_source\",\"db_name\":\"tnt__sub_source\",\"description\":\"Sub-Source\",\"is_filterable\":true,\"name\":\"tnt__sub_source\",\"oasis\":{\"name\":\"tnt__sub_source\"},\"ui\":{\"display_name\":\"Sub-Source\",\"placeholder\":\"Add Sub-Source\"}},{\"supported_filter_ops\":[\"any\",\"not_any\",\"empty\",\"not_empty\"],\"field_type\":\"id\",\"data_name\":\"tnt__support\",\"db_name\":\"tnt__support\",\"description\":\"Support Personal involved with the customer\",\"id_type\":[\"devu\"],\"is_filterable\":true,\"name\":\"tnt__support\",\"oasis\":{\"name\":\"tnt__support\"},\"ui\":{\"display_name\":\"Support\",\"placeholder\":\"Support Dev User\",\"tooltip\":\"Add the Support Personal involved with the customer\"}},{\"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\":\"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\"}},{\"supported_filter_ops\":[\"all\",\"any\",\"not_any\",\"empty\",\"not_empty\"],\"field_type\":\"array\",\"base_type\":\"text\",\"data_name\":\"tnt__technologies\",\"db_name\":\"tnt__technologies\",\"description\":\"Technologies\",\"is_filterable\":true,\"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\"}},{\"supported_filter_ops\":[\"any\",\"not_any\",\"empty\",\"not_empty\"],\"field_type\":\"text\",\"data_name\":\"tnt__territory\",\"db_name\":\"tnt__territory\",\"description\":\"Territory\",\"is_filterable\":true,\"name\":\"tnt__territory\",\"oasis\":{\"name\":\"tnt__territory\"},\"ui\":{\"display_name\":\"Territory\",\"placeholder\":\"Add Territory\"}},{\"supported_filter_ops\":[\"all\",\"any\",\"not_any\",\"empty\",\"not_empty\"],\"field_type\":\"array\",\"base_type\":\"enum\",\"allowed_values\":[\"CS Home Page\",\"CS Page Visitor\",\"Clicked Ln Ad\",\"Demo Booked TY Page\",\"FD Alternative\",\"Form Submit\",\"HS Alternative\",\"Intercom Alternative\",\"Jira Alternative\",\"Paid Demo Page View\",\"Paid Website Session\",\"Viewed Ln Ad\",\"Visited Website\",\"Zen Alter Blog\",\"Zendesk Alternative\"],\"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\":\"text\",\"data_name\":\"tnt__transaction\",\"db_name\":\"tnt__transaction\",\"default_value\":\"4%\",\"is_filterable\":true,\"name\":\"tnt__transaction\",\"oasis\":{\"name\":\"tnt__transaction\"},\"ui\":{\"display_name\":\"Transaction\",\"placeholder\":\"Add Transaction\"}},{\"field_type\":\"date\",\"data_name\":\"tnt__traxcn_latest_funding_date\",\"db_name\":\"tnt__traxcn_latest_funding_date\",\"is_filterable\":true,\"name\":\"tnt__traxcn_latest_funding_date\",\"oasis\":{\"name\":\"tnt__traxcn_latest_funding_date\"},\"ui\":{\"display_name\":\"Traxcn Latest Funding Date\",\"placeholder\":\"Add Traxcn Latest Funding Date\"}},{\"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\":[\"Advisor\",\"Customer\",\"Former Customer\",\"Partner\",\"Prospect\",\"Startup Ecosystem\"],\"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\"}},{\"field_type\":\"bool\",\"data_name\":\"tnt__update_linked_contacts\",\"db_name\":\"tnt__update_linked_contacts\",\"description\":\"Field to run workflow to update all linked contacts to partner type account\",\"is_filterable\":true,\"name\":\"tnt__update_linked_contacts\",\"oasis\":{\"name\":\"tnt__update_linked_contacts\"},\"ui\":{\"display_name\":\"Update Linked Contact Type\",\"placeholder\":\"Update Linked Contacts\"}},{\"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\"}},{\"supported_filter_ops\":[\"any\",\"not_any\",\"empty\",\"not_empty\"],\"field_type\":\"enum\",\"allowed_values\":[\"High\",\"Low\"],\"data_name\":\"tnt__utilization_score\",\"db_name\":\"tnt__utilization_score\",\"is_filterable\":true,\"name\":\"tnt__utilization_score\",\"oasis\":{\"name\":\"tnt__utilization_score\"},\"ui\":{\"display_name\":\"Utilization Score\",\"placeholder\":\"Add Utilization Score\"}},{\"supported_filter_ops\":[\"all\",\"any\",\"not_any\",\"empty\",\"not_empty\"],\"field_type\":\"array\",\"base_type\":\"enum\",\"allowed_values\":[\"FinServ\",\"Govt\",\"HR\",\"Healthcare\",\"Hospitality\",\"Mfg\",\"O&G\",\"Retail\",\"T&T\",\"Tech\"],\"data_name\":\"tnt__vertical_focus\",\"db_name\":\"tnt__vertical_focus\",\"description\":\"Select the industry type/s the partner is involved with\",\"is_filterable\":true,\"name\":\"tnt__vertical_focus\",\"oasis\":{\"name\":\"tnt__vertical_focus\"},\"ui\":{\"display_name\":\"Vertical Focus\",\"placeholder\":\"Add Vertical Focus\",\"tooltip\":\"Update the Industry vertical/s the partner is focused on\"}},{\"field_type\":\"bool\",\"data_name\":\"tnt__viewing_linkedin_ads\",\"db_name\":\"tnt__viewing_linkedin_ads\",\"description\":\"Identifies whether an account is viewing the linked ads\",\"is_filterable\":true,\"name\":\"tnt__viewing_linkedin_ads\",\"oasis\":{\"name\":\"tnt__viewing_linkedin_ads\"},\"ui\":{\"display_name\":\"Viewing Linkedin Ads\",\"placeholder\":\"Viewing Linkedin Ads?\"}},{\"supported_filter_ops\":[\"all\",\"any\",\"not_any\",\"empty\",\"not_empty\"],\"field_type\":\"array\",\"base_type\":\"id\",\"data_name\":\"tnt__visible_to\",\"db_name\":\"tnt__visible_to\",\"description\":\"Policy will be defined on the All Users role where we will use this field to provide READ access to users of groups present in the value of this field\",\"id_type\":[\"group\"],\"is_filterable\":true,\"name\":\"tnt__visible_to\",\"oasis\":{\"name\":\"tnt__visible_to\"},\"ui\":{\"display_name\":\"Visible To\",\"placeholder\":\"Add group here to provide READ access to the object\",\"tooltip\":\"Add group here to provide READ access to this ticket\"}},{\"field_type\":\"bool\",\"data_name\":\"tnt__visited_website\",\"db_name\":\"tnt__visited_website\",\"description\":\"Identifies whether an account visited website\",\"is_filterable\":true,\"name\":\"tnt__visited_website\",\"oasis\":{\"name\":\"tnt__visited_website\"},\"ui\":{\"display_name\":\"Visited Website\",\"placeholder\":\"Visited Website?\"}},{\"supported_filter_ops\":[\"any\",\"not_any\",\"empty\",\"not_empty\"],\"field_type\":\"int\",\"data_name\":\"tnt__weighted_score\",\"db_name\":\"tnt__weighted_score\",\"description\":\"Weighted Score\",\"is_filterable\":true,\"name\":\"tnt__weighted_score\",\"oasis\":{\"name\":\"tnt__weighted_score\"},\"ui\":{\"display_name\":\"Weighted Score\",\"placeholder\":\"Add Weighted Score\"}},{\"field_type\":\"text\",\"data_name\":\"tnt__zip_code\",\"db_name\":\"tnt__zip_code\",\"description\":\"Zip Code\",\"is_filterable\":false,\"name\":\"tnt__zip_code\",\"oasis\":{\"name\":\"tnt__zip_code\"},\"ui\":{\"display_name\":\"Zip Code\",\"placeholder\":\"Add Zip Code\"}},{\"field_type\":\"date\",\"data_name\":\"tnt__zoominfo_enriched_date\",\"db_name\":\"tnt__zoominfo_enriched_date\",\"description\":\"ZoomInfo Enrichment Date\",\"is_filterable\":true,\"name\":\"tnt__zoominfo_enriched_date\",\"oasis\":{\"name\":\"tnt__zoominfo_enriched_date\"},\"ui\":{\"display_name\":\"ZoomInfo Enrichment Date\",\"placeholder\":\"Add ZoomInfo Enrichment Date\"}},{\"field_type\":\"text\",\"data_name\":\"tnt__zoominfo_id\",\"db_name\":\"tnt__zoominfo_id\",\"description\":\"ZoomInfo ID\",\"is_filterable\":false,\"name\":\"tnt__zoominfo_id\",\"oasis\":{\"name\":\"tnt__zoominfo_id\"},\"ui\":{\"display_name\":\"ZoomInfo ID\",\"placeholder\":\"Add ZoomInfo ID\"}}],\"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_2\",\"ui_metadata\":{\"position\":{\"x\":-6.192850164428336,\"y\":-25.889291101842794}}},{\"description\":\"Make HTTP requests\",\"input_ports\":[{\"name\":\"input\",\"schema\":{\"composite_schemas\":[{\"description\":\"Key-value pair\",\"fields\":[{\"field_type\":\"text\",\"data_name\":\"key\",\"db_name\":\"key\",\"description\":\"Key\",\"is_required\":true,\"name\":\"key\",\"oasis\":{\"name\":\"key\"}},{\"field_type\":\"text\",\"data_name\":\"value\",\"db_name\":\"value\",\"description\":\"Value\",\"name\":\"value\",\"oasis\":{\"name\":\"value\"}}],\"name\":\"pair\"},{\"description\":\"Transformation to apply to the HTTP response body\",\"fields\":[{\"field_type\":\"text\",\"data_name\":\"jq\",\"db_name\":\"jq\",\"description\":\"JQ query to apply to the HTTP response body. Refer to https://jqlang.org/manual/#object-identifier-index for more usage examples.\",\"name\":\"jq\",\"oasis\":{\"name\":\"jq\"}}],\"name\":\"transform\"}],\"field_descriptors\":[{\"field_type\":\"enum\",\"allowed_values\":[\"GET\",\"POST\",\"PUT\",\"PATCH\",\"DELETE\"],\"data_name\":\"method\",\"db_name\":\"method\",\"default_value\":\"GET\",\"description\":\"Method of the HTTP request\",\"name\":\"method\",\"oasis\":{\"name\":\"method\"}},{\"field_type\":\"array\",\"base_type\":\"composite\",\"composite_type\":\"pair\",\"data_name\":\"query_params\",\"db_name\":\"query_params\",\"description\":\"Query parameters of the HTTP request\",\"name\":\"query_params\",\"oasis\":{\"name\":\"query_params\"}},{\"field_type\":\"enum\",\"allowed_values\":[\"Bearer\",\"Basic\",\"None\"],\"data_name\":\"auth_type\",\"db_name\":\"auth_type\",\"default_value\":\"None\",\"description\":\"Authentication type\",\"name\":\"auth_type\",\"oasis\":{\"name\":\"auth_type\"}},{\"field_type\":\"text\",\"data_name\":\"url\",\"db_name\":\"url\",\"description\":\"URL of the HTTP request\",\"is_required\":true,\"name\":\"url\",\"oasis\":{\"name\":\"url\"}},{\"field_type\":\"array\",\"base_type\":\"composite\",\"composite_type\":\"pair\",\"data_name\":\"headers\",\"db_name\":\"headers\",\"description\":\"Headers of the HTTP request\",\"name\":\"headers\",\"oasis\":{\"name\":\"headers\"}},{\"field_type\":\"text\",\"data_name\":\"body\",\"db_name\":\"body\",\"description\":\"Body of the HTTP request\",\"name\":\"body\",\"oasis\":{\"name\":\"body\"}},{\"field_type\":\"text\",\"data_name\":\"sample_response\",\"db_name\":\"sample_response\",\"description\":\"Sample response of the HTTP response body\",\"is_required\":false,\"name\":\"sample_response\",\"oasis\":{\"name\":\"sample_response\"}},{\"field_type\":\"composite\",\"composite_type\":\"transform\",\"data_name\":\"transform\",\"db_name\":\"transform\",\"description\":\"Transformation to apply to the HTTP response body\",\"name\":\"transform\",\"oasis\":{\"name\":\"transform\"}},{\"field_type\":\"bool\",\"data_name\":\"enable_retries\",\"db_name\":\"enable_retries\",\"default_value\":false,\"description\":\"Enable retries on 5XX (Internal Server Error) and 429 (Too Many Requests) error codes\",\"is_required\":false,\"name\":\"enable_retries\",\"oasis\":{\"name\":\"enable_retries\"},\"ui\":{\"display_name\":\"Enable Retries\"}},{\"field_type\":\"tokens\",\"data_name\":\"auth_header\",\"db_name\":\"auth_header\",\"description\":\"Name of the authorization header. If not set, defaults to 'authorization'.\",\"name\":\"auth_header\",\"oasis\":{\"name\":\"auth_header\"},\"ui\":{\"display_name\":\"Authorization Header\",\"placeholder\":\"Authorization\"}}],\"invalidate_on_field_update\":[\"sample_response\",\"transform\"],\"type\":\"field_descriptor\"},\"type\":\"default\"}],\"input_values\":[{\"fields\":[{\"name\":\"auth_type\",\"value\":{\"type\":\"literal\",\"value\":\"Bearer\"}},{\"name\":\"method\",\"value\":{\"type\":\"literal\",\"value\":\"POST\"}},{\"name\":\"transform\",\"value\":{\"type\":\"composite_value\",\"value\":{\"fields\":[{\"name\":\"jq\",\"value\":{\"type\":\"text_template\",\"value\":\"{ name: .rev_user.display_name, email: .rev_user.email }\"}}]}}},{\"name\":\"sample_response\",\"value\":{\"type\":\"text_template\",\"value\":\"{\\n\\\"rev_user\\\": {\\n\\\"created_by\\\": {\\n\\n \\\"type\\\": \\\"dev_user\\\",\\n\\n \\\"display_id\\\": \\\"string\\\",\\n\\n \\\"id\\\": \\\"string\\\",\\n\\n \\\"display_name\\\": \\\"string\\\",\\n\\n \\\"display_picture\\\": {\\n\\n \\\"display_id\\\": \\\"string\\\",\\n\\n \\\"id\\\": \\\"string\\\",\\n\\n \\\"file\\\": {\\n\\n \\\"type\\\": \\\"string\\\",\\n\\n \\\"name\\\": \\\"string\\\",\\n\\n \\\"size\\\": 0\\n\\n }\\n\\n },\\n\\n \\\"email\\\": \\\"string\\\",\\n\\n \\\"full_name\\\": \\\"string\\\",\\n\\n \\\"state\\\": \\\"active\\\"\\n\\n},\\n\\n\\\"created_date\\\": \\\"2023-01-01T12:00:00.000Z\\\",\\n\\n\\\"display_id\\\": \\\"string\\\",\\n\\n\\\"id\\\": \\\"string\\\",\\n\\n\\\"modified_by\\\": {\\n\\n \\\"type\\\": \\\"dev_user\\\",\\n\\n \\\"display_id\\\": \\\"string\\\",\\n\\n \\\"id\\\": \\\"string\\\",\\n\\n \\\"display_name\\\": \\\"string\\\",\\n\\n \\\"display_picture\\\": {\\n\\n \\\"display_id\\\": \\\"string\\\",\\n\\n \\\"id\\\": \\\"string\\\",\\n\\n \\\"file\\\": {\\n\\n \\\"type\\\": \\\"string\\\",\\n\\n \\\"name\\\": \\\"string\\\",\\n\\n \\\"size\\\": 0\\n\\n }\\n\\n },\\n\\n \\\"email\\\": \\\"string\\\",\\n\\n \\\"full_name\\\": \\\"string\\\",\\n\\n \\\"state\\\": \\\"active\\\"\\n\\n},\\n\\n\\\"modified_date\\\": \\\"2023-01-01T12:00:00.000Z\\\",\\n\\n\\\"display_name\\\": \\\"string\\\",\\n\\n\\\"display_picture\\\": {\\n\\n \\\"display_id\\\": \\\"string\\\",\\n\\n \\\"id\\\": \\\"string\\\",\\n\\n \\\"file\\\": {\\n\\n \\\"type\\\": \\\"string\\\",\\n\\n \\\"name\\\": \\\"string\\\",\\n\\n \\\"size\\\": 0\\n\\n }\\n\\n},\\n\\n\\\"email\\\": \\\"string\\\",\\n\\n\\\"full_name\\\": \\\"string\\\",\\n\\n\\\"phone_numbers\\\": [\\n\\n \\\"string\\\"\\n\\n],\\n\\n\\\"primary_identity\\\": {\\n\\n \\\"type\\\": \\\"dev_user\\\",\\n\\n \\\"display_id\\\": \\\"string\\\",\\n\\n \\\"id\\\": \\\"string\\\",\\n\\n \\\"display_name\\\": \\\"string\\\",\\n\\n \\\"display_picture\\\": {\\n\\n \\\"display_id\\\": \\\"string\\\",\\n\\n \\\"id\\\": \\\"string\\\",\\n\\n \\\"file\\\": {\\n\\n \\\"type\\\": \\\"string\\\",\\n\\n \\\"name\\\": \\\"string\\\",\\n\\n \\\"size\\\": 0\\n\\n }\\n\\n },\\n\\n \\\"email\\\": \\\"string\\\",\\n\\n \\\"full_name\\\": \\\"string\\\",\\n\\n \\\"state\\\": \\\"active\\\"\\n\\n},\\n\\n\\\"state\\\": \\\"active\\\",\\n\\n\\\"description\\\": \\\"string\\\",\\n\\n\\\"external_ref\\\": \\\"string\\\",\\n\\n\\\"rev_org\\\": {\\n\\n \\\"type\\\": \\\"rev_org\\\",\\n\\n \\\"display_id\\\": \\\"string\\\",\\n\\n \\\"id\\\": \\\"string\\\",\\n\\n \\\"display_name\\\": \\\"string\\\"\\n\\n}\\n}\\n}\"}},{\"name\":\"url\",\"value\":{\"type\":\"text_template\",\"value\":\"https://api.devrev.ai/rev-users.get\"}},{\"name\":\"body\",\"value\":{\"type\":\"text_template\",\"value\":\"{\\\"id\\\":\\\"{% expr $get('http_3', 'output').body %}\\\"}\"}}],\"port_name\":\"input\"}],\"name\":\"GET POC EMAIL AND NAME\",\"next_steps\":[{\"next_port_name\":\"input\",\"next_step_reference_key\":\"send_emails_1\",\"port_name\":\"output\"}],\"operation\":{\"namespace\":\"devrev\",\"slug\":\"http\"},\"output_ports\":[{\"name\":\"output\",\"schema\":{\"composite_schemas\":[{\"description\":\"Key-value pair\",\"fields\":[{\"field_type\":\"text\",\"data_name\":\"key\",\"db_name\":\"key\",\"description\":\"Key\",\"is_required\":true,\"name\":\"key\",\"oasis\":{\"name\":\"key\"}},{\"field_type\":\"text\",\"data_name\":\"value\",\"db_name\":\"value\",\"description\":\"Value\",\"name\":\"value\",\"oasis\":{\"name\":\"value\"}}],\"name\":\"pair\"},{\"description\":\"Response body schema\",\"fields\":[{\"field_type\":\"text\",\"data_name\":\"name\",\"db_name\":\"name\",\"description\":\"name field\",\"name\":\"name\",\"oasis\":{\"name\":\"name\"}},{\"field_type\":\"text\",\"data_name\":\"email\",\"db_name\":\"email\",\"description\":\"email field\",\"name\":\"email\",\"oasis\":{\"name\":\"email\"}}],\"name\":\"_gen:response\"}],\"field_descriptors\":[{\"field_type\":\"int\",\"data_name\":\"status_code\",\"db_name\":\"status_code\",\"description\":\"Status code of the HTTP request\",\"name\":\"status_code\",\"oasis\":{\"name\":\"status_code\"}},{\"field_type\":\"composite\",\"composite_type\":\"_gen:response\",\"data_name\":\"body\",\"db_name\":\"body\",\"description\":\"Body of the HTTP request\",\"name\":\"body\",\"oasis\":{\"name\":\"body\"}},{\"field_type\":\"array\",\"base_type\":\"composite\",\"composite_type\":\"pair\",\"data_name\":\"headers\",\"db_name\":\"headers\",\"description\":\"Headers of the HTTP request\",\"name\":\"headers\",\"oasis\":{\"name\":\"headers\"}},{\"field_type\":\"text\",\"data_name\":\"content_type\",\"db_name\":\"content_type\",\"description\":\"Content type of the HTTP response\",\"name\":\"content_type\",\"oasis\":{\"name\":\"content_type\"}}],\"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\":\"http_2\",\"ui_metadata\":{\"position\":{\"x\":-3,\"y\":304}}},{\"description\":\"Make HTTP requests\",\"input_ports\":[{\"name\":\"input\",\"schema\":{\"composite_schemas\":[{\"description\":\"Key-value pair\",\"fields\":[{\"field_type\":\"text\",\"data_name\":\"key\",\"db_name\":\"key\",\"description\":\"Key\",\"is_required\":true,\"name\":\"key\",\"oasis\":{\"name\":\"key\"}},{\"field_type\":\"text\",\"data_name\":\"value\",\"db_name\":\"value\",\"description\":\"Value\",\"name\":\"value\",\"oasis\":{\"name\":\"value\"}}],\"name\":\"pair\"},{\"description\":\"Transformation to apply to the HTTP response body\",\"fields\":[{\"field_type\":\"text\",\"data_name\":\"jq\",\"db_name\":\"jq\",\"description\":\"JQ query to apply to the HTTP response body. Refer to https://jqlang.org/manual/#object-identifier-index for more usage examples.\",\"name\":\"jq\",\"oasis\":{\"name\":\"jq\"}}],\"name\":\"transform\"}],\"field_descriptors\":[{\"field_type\":\"enum\",\"allowed_values\":[\"GET\",\"POST\",\"PUT\",\"PATCH\",\"DELETE\"],\"data_name\":\"method\",\"db_name\":\"method\",\"default_value\":\"GET\",\"description\":\"Method of the HTTP request\",\"name\":\"method\",\"oasis\":{\"name\":\"method\"}},{\"field_type\":\"array\",\"base_type\":\"composite\",\"composite_type\":\"pair\",\"data_name\":\"query_params\",\"db_name\":\"query_params\",\"description\":\"Query parameters of the HTTP request\",\"name\":\"query_params\",\"oasis\":{\"name\":\"query_params\"}},{\"field_type\":\"enum\",\"allowed_values\":[\"Bearer\",\"Basic\",\"None\"],\"data_name\":\"auth_type\",\"db_name\":\"auth_type\",\"default_value\":\"None\",\"description\":\"Authentication type\",\"name\":\"auth_type\",\"oasis\":{\"name\":\"auth_type\"}},{\"field_type\":\"text\",\"data_name\":\"url\",\"db_name\":\"url\",\"description\":\"URL of the HTTP request\",\"is_required\":true,\"name\":\"url\",\"oasis\":{\"name\":\"url\"}},{\"field_type\":\"array\",\"base_type\":\"composite\",\"composite_type\":\"pair\",\"data_name\":\"headers\",\"db_name\":\"headers\",\"description\":\"Headers of the HTTP request\",\"name\":\"headers\",\"oasis\":{\"name\":\"headers\"}},{\"field_type\":\"text\",\"data_name\":\"body\",\"db_name\":\"body\",\"description\":\"Body of the HTTP request\",\"name\":\"body\",\"oasis\":{\"name\":\"body\"},\"ui\":{}},{\"field_type\":\"text\",\"data_name\":\"sample_response\",\"db_name\":\"sample_response\",\"description\":\"Sample response of the HTTP response body\",\"is_required\":false,\"name\":\"sample_response\",\"oasis\":{\"name\":\"sample_response\"},\"ui\":{}},{\"field_type\":\"composite\",\"composite_type\":\"transform\",\"data_name\":\"transform\",\"db_name\":\"transform\",\"description\":\"Transformation to apply to the HTTP response body\",\"name\":\"transform\",\"oasis\":{\"name\":\"transform\"}},{\"field_type\":\"bool\",\"data_name\":\"enable_retries\",\"db_name\":\"enable_retries\",\"default_value\":false,\"description\":\"Enable retries on 5XX (Internal Server Error) and 429 (Too Many Requests) error codes\",\"is_required\":false,\"name\":\"enable_retries\",\"oasis\":{\"name\":\"enable_retries\"},\"ui\":{\"display_name\":\"Enable Retries\"}},{\"field_type\":\"tokens\",\"data_name\":\"auth_header\",\"db_name\":\"auth_header\",\"description\":\"Name of the authorization header. If not set, defaults to 'authorization'.\",\"name\":\"auth_header\",\"oasis\":{\"name\":\"auth_header\"},\"ui\":{\"display_name\":\"Authorization Header\",\"placeholder\":\"Authorization\"}}],\"invalidate_on_field_update\":[\"sample_response\",\"transform\"],\"type\":\"field_descriptor\"},\"type\":\"default\"}],\"input_values\":[{\"fields\":[{\"name\":\"auth_type\",\"value\":{\"type\":\"literal\",\"value\":\"Bearer\"}},{\"name\":\"method\",\"value\":{\"type\":\"literal\",\"value\":\"POST\"}},{\"name\":\"sample_response\",\"value\":{\"type\":\"text_template\",\"value\":\"{\\n \\\"account\\\": {\\n \\\"created_by\\\": {\\n \\\"type\\\": \\\"dev_user\\\",\\n \\\"display_id\\\": \\\"string\\\",\\n \\\"id\\\": \\\"string\\\",\\n \\\"display_name\\\": \\\"string\\\",\\n \\\"display_picture\\\": {\\n \\\"display_id\\\": \\\"string\\\",\\n \\\"id\\\": \\\"string\\\",\\n \\\"file\\\": {\\n \\\"type\\\": \\\"string\\\",\\n \\\"name\\\": \\\"string\\\",\\n \\\"size\\\": 0\\n }\\n },\\n \\\"email\\\": \\\"string\\\",\\n \\\"full_name\\\": \\\"string\\\",\\n \\\"state\\\": \\\"active\\\"\\n },\\n \\\"created_date\\\": \\\"2023-01-01T12:00:00.000Z\\\",\\n \\\"display_id\\\": \\\"string\\\",\\n \\\"id\\\": \\\"string\\\",\\n \\\"modified_by\\\": {\\n \\\"type\\\": \\\"dev_user\\\",\\n \\\"display_id\\\": \\\"string\\\",\\n \\\"id\\\": \\\"string\\\",\\n \\\"display_name\\\": \\\"string\\\",\\n \\\"display_picture\\\": {\\n \\\"display_id\\\": \\\"string\\\",\\n \\\"id\\\": \\\"string\\\",\\n \\\"file\\\": {\\n \\\"type\\\": \\\"string\\\",\\n \\\"name\\\": \\\"string\\\",\\n \\\"size\\\": 0\\n }\\n },\\n \\\"email\\\": \\\"string\\\",\\n \\\"full_name\\\": \\\"string\\\",\\n \\\"state\\\": \\\"active\\\"\\n },\\n \\\"modified_date\\\": \\\"2023-01-01T12:00:00.000Z\\\",\\n \\\"display_name\\\": \\\"string\\\",\\n \\\"artifacts\\\": [\\n {\\n \\\"display_id\\\": \\\"string\\\",\\n \\\"id\\\": \\\"string\\\",\\n \\\"file\\\": {\\n \\\"type\\\": \\\"string\\\",\\n \\\"name\\\": \\\"string\\\",\\n \\\"size\\\": 0\\n }\\n }\\n ],\\n \\\"custom_fields\\\": {},\\n \\\"custom_schema_fragments\\\": [\\n \\\"don:core:dvrv-us-1:devo/example:custom_type_fragment/custom-type-fragment-id\\\"\\n ],\\n \\\"description\\\": \\\"string\\\",\\n \\\"domains\\\": [\\n \\\"string\\\"\\n ],\\n \\\"external_refs\\\": [\\n \\\"string\\\"\\n ],\\n \\\"owned_by\\\": [\\n {\\n \\\"type\\\": \\\"dev_user\\\",\\n \\\"display_id\\\": \\\"string\\\",\\n \\\"id\\\": \\\"string\\\",\\n \\\"display_name\\\": \\\"string\\\",\\n \\\"display_picture\\\": {\\n \\\"display_id\\\": \\\"string\\\",\\n \\\"id\\\": \\\"string\\\",\\n \\\"file\\\": {\\n \\\"type\\\": \\\"string\\\",\\n \\\"name\\\": \\\"string\\\",\\n \\\"size\\\": 0\\n }\\n },\\n \\\"email\\\": \\\"string\\\",\\n \\\"full_name\\\": \\\"string\\\",\\n \\\"state\\\": \\\"active\\\"\\n }\\n ],\\n \\\"primary_account\\\": {\\n \\\"display_id\\\": \\\"string\\\",\\n \\\"id\\\": \\\"string\\\",\\n \\\"display_name\\\": \\\"string\\\"\\n },\\n \\\"stock_schema_fragment\\\": \\\"don:core:dvrv-us-1:devo/example:custom_type_fragment/custom-type-fragment-id\\\",\\n \\\"subtype\\\": \\\"string\\\",\\n \\\"tags\\\": [\\n {\\n \\\"tag\\\": {\\n \\\"display_id\\\": \\\"string\\\",\\n \\\"id\\\": \\\"string\\\",\\n \\\"name\\\": \\\"string\\\",\\n \\\"style_new\\\": {\\n \\\"color\\\": \\\"string\\\"\\n }\\n },\\n \\\"value\\\": \\\"string\\\"\\n }\\n ],\\n \\\"tier\\\": \\\"string\\\",\\n \\\"websites\\\": [\\n \\\"string\\\"\\n ]\\n }\\n}\"}},{\"name\":\"url\",\"value\":{\"type\":\"text_template\",\"value\":\"https://api.devrev.ai/accounts.get\"}},{\"name\":\"transform\",\"value\":{\"type\":\"composite_value\",\"value\":{\"fields\":[{\"name\":\"jq\",\"value\":{\"type\":\"text_template\",\"value\":\".account.custom_fields.tnt__primary_poc[0]\"}}]}}},{\"name\":\"body\",\"value\":{\"type\":\"text_template\",\"value\":\"{\\\"id\\\":\\\"{% expr $get('get_account_2', 'output').display_id %}\\\"}\"}}],\"port_name\":\"input\"}],\"name\":\"POC id\",\"next_steps\":[{\"next_port_name\":\"input\",\"next_step_reference_key\":\"http_2\",\"port_name\":\"output\"}],\"operation\":{\"namespace\":\"devrev\",\"slug\":\"http\"},\"output_ports\":[{\"name\":\"output\",\"schema\":{\"composite_schemas\":[{\"description\":\"Key-value pair\",\"fields\":[{\"field_type\":\"text\",\"data_name\":\"key\",\"db_name\":\"key\",\"description\":\"Key\",\"is_required\":true,\"name\":\"key\",\"oasis\":{\"name\":\"key\"}},{\"field_type\":\"text\",\"data_name\":\"value\",\"db_name\":\"value\",\"description\":\"Value\",\"name\":\"value\",\"oasis\":{\"name\":\"value\"}}],\"name\":\"pair\"}],\"field_descriptors\":[{\"field_type\":\"int\",\"data_name\":\"status_code\",\"db_name\":\"status_code\",\"description\":\"Status code of the HTTP request\",\"name\":\"status_code\",\"oasis\":{\"name\":\"status_code\"}},{\"field_type\":\"text\",\"data_name\":\"body\",\"db_name\":\"body\",\"description\":\"Body of the HTTP request\",\"name\":\"body\",\"oasis\":{\"name\":\"body\"}},{\"field_type\":\"array\",\"base_type\":\"composite\",\"composite_type\":\"pair\",\"data_name\":\"headers\",\"db_name\":\"headers\",\"description\":\"Headers of the HTTP request\",\"name\":\"headers\",\"oasis\":{\"name\":\"headers\"}},{\"field_type\":\"text\",\"data_name\":\"content_type\",\"db_name\":\"content_type\",\"description\":\"Content type of the HTTP response\",\"name\":\"content_type\",\"oasis\":{\"name\":\"content_type\"}}],\"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\":\"http_3\",\"ui_metadata\":{\"position\":{\"x\":-4.407499462281152,\"y\":135.02344770902974}}},{\"description\":\"Triggered when Implementation is updated\",\"input_ports\":[{\"name\":\"input\",\"schema\":{\"field_descriptors\":[{\"field_type\":\"array\",\"base_type\":\"uenum\",\"allowed_values\":[{\"id\":0,\"label\":\"Stage\",\"ordinal\":0,\"value\":\"stage\"},{\"id\":1,\"label\":\"Title\",\"ordinal\":1,\"value\":\"title\"},{\"id\":2,\"label\":\"AAI Owner\",\"ordinal\":2,\"value\":\"tnt__aai_owner\"},{\"id\":3,\"label\":\"AAI Squad\",\"ordinal\":3,\"value\":\"tnt__aai_squad\"},{\"id\":4,\"label\":\"Account ID\",\"ordinal\":4,\"value\":\"tnt__account\"},{\"id\":5,\"label\":\"Activate workflow\",\"ordinal\":5,\"value\":\"tnt__activate_workflow\"},{\"id\":6,\"label\":\"Close Date\",\"ordinal\":6,\"value\":\"tnt__close_date\"},{\"id\":7,\"label\":\"Owners\",\"ordinal\":7,\"value\":\"tnt__owners\"},{\"id\":8,\"label\":\"Project Plan \",\"ordinal\":8,\"value\":\"tnt__project_plan\"},{\"id\":9,\"label\":\"Stage\",\"ordinal\":9,\"value\":\"tnt__stage\"},{\"id\":10,\"label\":\"Start Date\",\"ordinal\":10,\"value\":\"tnt__start_date\"},{\"id\":11,\"label\":\"Tags\",\"ordinal\":11,\"value\":\"tnt__tags\"},{\"id\":12,\"label\":\"Target Close Date\",\"ordinal\":12,\"value\":\"tnt__target_close_date\"},{\"id\":13,\"label\":\"Target Start Date\",\"ordinal\":13,\"value\":\"tnt__target_start_date\"},{\"id\":14,\"label\":\"Type\",\"ordinal\":14,\"value\":\"tnt__type\"}],\"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\":\"struct\",\"data_name\":\"_filter\",\"db_name\":\"_filter\",\"description\":\"Filter for the trigger event\",\"name\":\"_filter\",\"oasis\":{\"name\":\"_filter\"},\"ui\":{\"display_name\":\"Filter\"}}],\"type\":\"field_descriptor\"},\"type\":\"default\"}],\"input_values\":[{\"fields\":[{\"name\":\"_filter\",\"value\":{\"type\":\"literal\",\"value\":{\"conditions\":[{\"conditions\":[{\"operands\":[{\"type\":\"jsonata_expression\",\"value\":\"$get('implementation_updated_1', 'output').tnt__activate_workflow\"},{\"type\":\"literal\",\"value\":\"Yes\"}],\"operator\":\"equals\",\"type\":\"rule\",\"ui_reference_key\":\"f5d863b8-0a82-44f9-9c21-6f1b8572d2f0\"}],\"logical_operator\":\"and\",\"negate\":false,\"type\":\"group\",\"ui_reference_key\":\"6dab0898-ae67-486a-81bc-988835a58f47\"}],\"logical_operator\":\"and\",\"negate\":false,\"type\":\"group\",\"ui_reference_key\":\"5b764274-0b81-4359-b581-6eec92ff132f\"}}},{\"name\":\"fields_to_watch\",\"value\":{\"type\":\"list_value\",\"value\":{\"items\":[{\"type\":\"literal\",\"value\":[\"tnt__activate_workflow\"]}]}}}],\"port_name\":\"input\"}],\"name\":\"Implementation Updated\",\"next_steps\":[{\"next_port_name\":\"input\",\"next_step_reference_key\":\"get_account_2\",\"port_name\":\"output\"}],\"operation\":{\"namespace\":\"custom_object\",\"slug\":\"implementation_updated\"},\"output_ports\":[{\"name\":\"output\",\"schema\":{\"composite_schemas\":[{\"description\":\"Information about the source fields that have been AirSynced into DevRev.\",\"fields\":[{\"field_type\":\"timestamp\",\"data_name\":\"closed_date\",\"db_name\":\"closed_date\",\"description\":\"Timestamp when the object was closed in the source system.\",\"is_filterable\":true,\"name\":\"closed_date\",\"oasis\":{\"name\":\"closed_date\"},\"origin\":\"external_source_data_comp\",\"ui\":{\"client_overrides\":[{\"client_name\":\"web\",\"view_overrides\":[{\"is_hidden\":true,\"view_name\":\"create\"}]}],\"display_name\":\"Source Closed Date\",\"is_hidden\":true,\"is_hidden_during_create\":true,\"is_read_only\":true,\"is_sortable\":true}},{\"field_type\":\"timestamp\",\"data_name\":\"created_date\",\"db_name\":\"created_date\",\"description\":\"Timestamp when the object was created in the source system.\",\"is_filterable\":true,\"name\":\"created_date\",\"oasis\":{\"name\":\"created_date\"},\"origin\":\"external_source_data_comp\",\"ui\":{\"client_overrides\":[{\"client_name\":\"web\",\"view_overrides\":[{\"is_hidden\":true,\"view_name\":\"create\"}]}],\"display_name\":\"Source Created Date\",\"is_hidden_during_create\":true,\"is_read_only\":true,\"is_sortable\":true}},{\"field_type\":\"timestamp\",\"data_name\":\"modified_date\",\"db_name\":\"modified_date\",\"description\":\"Timestamp when the object was modified in the source system.\",\"is_filterable\":true,\"name\":\"modified_date\",\"oasis\":{\"name\":\"modified_date\"},\"origin\":\"external_source_data_comp\",\"ui\":{\"client_overrides\":[{\"client_name\":\"web\",\"view_overrides\":[{\"is_hidden\":true,\"view_name\":\"create\"}]}],\"display_name\":\"Source Modified Date\",\"is_hidden_during_create\":true,\"is_read_only\":true,\"is_sortable\":true}}],\"name\":\"external_source_data_comp\"},{\"description\":\"Describes the current stage of a object\",\"fields\":[{\"field_type\":\"text\",\"data_name\":\"notes\",\"db_name\":\"notes\",\"description\":\"Notes relevant to the stage.\",\"name\":\"notes\",\"oasis\":{\"name\":\"notes\"},\"origin\":\"stage\",\"ui\":{\"display_name\":\"Stage notes\",\"is_hidden\":true}},{\"field_type\":\"int\",\"data_name\":\"ordinal\",\"db_name\":\"ordinal\",\"description\":\"Current stage number of the object (sortable)\",\"is_filterable\":true,\"is_required\":true,\"is_system\":true,\"name\":\"ordinal\",\"oasis\":{\"name\":\"ordinal\"},\"origin\":\"stage\",\"ui\":{\"display_name\":\"Stage number\",\"is_hidden\":true}},{\"field_type\":\"id\",\"data_name\":\"stage\",\"db_name\":\"stage\",\"description\":\"ID of the stage.\",\"id_type\":[\"custom_stage\"],\"is_filterable\":true,\"is_required\":true,\"name\":\"stage\",\"oasis\":{\"name\":\"stage\"},\"origin\":\"stage\",\"ui\":{\"display_name\":\"Stage ID\",\"is_hidden\":true}},{\"field_type\":\"id\",\"data_name\":\"state\",\"db_name\":\"state\",\"description\":\"DON of the state.\",\"id_type\":[\"custom_state\"],\"is_required\":true,\"is_system\":true,\"name\":\"state\",\"oasis\":{\"name\":\"state\"},\"origin\":\"stage\",\"ui\":{\"display_name\":\"State ID.\",\"is_hidden\":true}}],\"name\":\"stage\"},{\"description\":\"Meta information about the staged record\",\"fields\":[{\"field_type\":\"bool\",\"data_name\":\"is_staged\",\"db_name\":\"is_staged\",\"description\":\"Whether the record is staged and requires confirmation before further processing\",\"is_filterable\":true,\"name\":\"is_staged\",\"oasis\":{\"name\":\"is_staged\"},\"origin\":\"staged_info\",\"ui\":{\"client_overrides\":[{\"client_name\":\"web\",\"view_overrides\":[{\"is_hidden\":true,\"view_name\":\"detail\"},{\"is_hidden\":true,\"view_name\":\"summary\"},{\"is_hidden\":true,\"view_name\":\"create\"}]}],\"create_view\":{\"is_hidden\":true},\"detail_view\":{\"is_hidden\":true},\"display_name\":\"Changes Need Review\",\"is_hidden_during_create\":true,\"summary_view\":{\"is_hidden\":true}}},{\"field_type\":\"array\",\"base_type\":\"composite\",\"composite_type\":\"staged_unresolved_field\",\"data_name\":\"sync_in_unresolved_fields\",\"db_name\":\"sync_in_unresolved_fields\",\"description\":\"A list of fields that have not been resolved while syncing from external system of records to DevRev\",\"name\":\"sync_in_unresolved_fields\",\"oasis\":{\"name\":\"sync_in_unresolved_fields\"},\"origin\":\"staged_info\",\"ui\":{\"client_overrides\":[{\"client_name\":\"web\",\"view_overrides\":[{\"is_hidden\":true,\"view_name\":\"create\"}]}],\"display_name\":\"Sync In Unresolved Fields\",\"is_hidden\":true,\"is_hidden_during_create\":true}},{\"field_type\":\"array\",\"base_type\":\"composite\",\"composite_type\":\"staged_unresolved_field\",\"data_name\":\"sync_out_unresolved_fields\",\"db_name\":\"sync_out_unresolved_fields\",\"description\":\"A list of fields that have not been resolved while syncing from DevRev to external system of records\",\"name\":\"sync_out_unresolved_fields\",\"oasis\":{\"name\":\"sync_out_unresolved_fields\"},\"origin\":\"staged_info\",\"ui\":{\"client_overrides\":[{\"client_name\":\"web\",\"view_overrides\":[{\"is_hidden\":true,\"view_name\":\"create\"}]}],\"display_name\":\"Sync Out Unresolved Fields\",\"is_hidden\":true,\"is_hidden_during_create\":true}},{\"field_type\":\"array\",\"base_type\":\"tokens\",\"data_name\":\"unresolved_fields\",\"db_name\":\"unresolved_fields\",\"description\":\"A list of fields that have not been resolved, which is causing the record to be staged\",\"name\":\"unresolved_fields\",\"oasis\":{\"name\":\"unresolved_fields\"},\"origin\":\"staged_info\",\"ui\":{\"client_overrides\":[{\"client_name\":\"web\",\"view_overrides\":[{\"is_hidden\":true,\"view_name\":\"create\"}]}],\"display_name\":\"Unresolved Fields\",\"is_hidden\":true,\"is_hidden_during_create\":true}}],\"name\":\"staged_info\"},{\"description\":\"DevRev and external information about one unresolved field. At least one of the fields should be populated. Ideally all.\",\"fields\":[{\"field_type\":\"tokens\",\"data_name\":\"devrev_field_name\",\"db_name\":\"devrev_field_name\",\"description\":\"DevRev field name of the object's attribute.\",\"max_len\":1024,\"name\":\"devrev_field_name\",\"oasis\":{\"name\":\"devrev_field_name\"},\"origin\":\"staged_unresolved_field\",\"ui\":{\"client_overrides\":[{\"client_name\":\"web\",\"view_overrides\":[{\"is_hidden\":true,\"view_name\":\"create\"}]}],\"display_name\":\"DevRev Field Name\",\"is_hidden\":true,\"is_hidden_during_create\":true}},{\"field_type\":\"tokens\",\"data_name\":\"external_display_name\",\"db_name\":\"external_display_name\",\"description\":\"External field name as seen by the end user.\",\"max_len\":1024,\"name\":\"external_display_name\",\"oasis\":{\"name\":\"external_display_name\"},\"origin\":\"staged_unresolved_field\",\"ui\":{\"client_overrides\":[{\"client_name\":\"web\",\"view_overrides\":[{\"is_hidden\":true,\"view_name\":\"create\"}]}],\"display_name\":\"External Display Name\",\"is_hidden\":true,\"is_hidden_during_create\":true}},{\"field_type\":\"tokens\",\"data_name\":\"external_field_name\",\"db_name\":\"external_field_name\",\"description\":\"Api name of the external object's field.\",\"max_len\":1024,\"name\":\"external_field_name\",\"oasis\":{\"name\":\"external_field_name\"},\"origin\":\"staged_unresolved_field\",\"ui\":{\"client_overrides\":[{\"client_name\":\"web\",\"view_overrides\":[{\"is_hidden\":true,\"view_name\":\"create\"}]}],\"display_name\":\"External Field Name\",\"is_hidden\":true,\"is_hidden_during_create\":true}}],\"name\":\"staged_unresolved_field\"},{\"description\":\"Information about the sync to DevRev.\",\"fields\":[{\"field_type\":\"enum\",\"allowed_values\":[\"failed\",\"modified\",\"staged\",\"succeeded\"],\"data_name\":\"status\",\"db_name\":\"status\",\"description\":\"Status of the sync for the object.\",\"is_filterable\":true,\"name\":\"status\",\"oasis\":{\"name\":\"status\"},\"origin\":\"sync_in\",\"ui\":{\"client_overrides\":[{\"client_name\":\"web\",\"view_overrides\":[{\"is_hidden\":true,\"view_name\":\"detail\"},{\"is_hidden\":true,\"view_name\":\"summary\"},{\"is_hidden\":true,\"view_name\":\"create\"}]}],\"create_view\":{\"is_hidden\":true},\"detail_view\":{\"is_hidden\":true},\"display_name\":\"Sync-in Status\",\"is_hidden_during_create\":true,\"is_read_only\":true,\"summary_view\":{\"is_hidden\":true}}},{\"field_type\":\"timestamp\",\"data_name\":\"sync_date\",\"db_name\":\"sync_date\",\"description\":\"Timestamp when the object was synced in/from DevRev.\",\"is_filterable\":true,\"name\":\"sync_date\",\"oasis\":{\"name\":\"sync_date\"},\"origin\":\"sync_in\",\"ui\":{\"client_overrides\":[{\"client_name\":\"web\",\"view_overrides\":[{\"is_hidden\":true,\"view_name\":\"detail\"},{\"is_hidden\":true,\"view_name\":\"summary\"},{\"is_hidden\":true,\"view_name\":\"create\"}]}],\"create_view\":{\"is_hidden\":true},\"detail_view\":{\"is_hidden\":true},\"display_name\":\"Sync-in Date\",\"is_hidden_during_create\":true,\"is_read_only\":true,\"summary_view\":{\"is_hidden\":true}}},{\"field_type\":\"id\",\"data_name\":\"sync_history\",\"db_name\":\"sync_history\",\"description\":\"Id of the sync_history when the object was synced.\",\"id_type\":[\"sync_history\"],\"is_filterable\":true,\"name\":\"sync_history\",\"oasis\":{\"name\":\"sync_history\"},\"origin\":\"sync_in\",\"ui\":{\"client_overrides\":[{\"client_name\":\"web\",\"view_overrides\":[{\"is_hidden\":true,\"view_name\":\"create\"}]}],\"display_name\":\"Sync-in History\",\"is_hidden\":true,\"is_hidden_during_create\":true,\"is_read_only\":true}},{\"field_type\":\"id\",\"data_name\":\"sync_unit\",\"db_name\":\"sync_unit\",\"description\":\"Id of the sync_unit to which the object belongs.\",\"id_type\":[\"sync_unit\"],\"is_filterable\":true,\"name\":\"sync_unit\",\"oasis\":{\"name\":\"sync_unit\"},\"origin\":\"sync_in\",\"ui\":{\"client_overrides\":[{\"client_name\":\"web\",\"view_overrides\":[{\"is_hidden\":true,\"view_name\":\"detail\"},{\"is_hidden\":true,\"view_name\":\"summary\"},{\"is_hidden\":true,\"view_name\":\"create\"}]}],\"create_view\":{\"is_hidden\":true},\"detail_view\":{\"is_hidden\":true},\"display_name\":\"Sync Name\",\"is_hidden_during_create\":true,\"is_read_only\":true,\"summary_view\":{\"is_hidden\":true}}}],\"name\":\"sync_in\"},{\"description\":\"Sync information for records synced into/from DevRev.\",\"fields\":[{\"field_type\":\"tokens\",\"data_name\":\"external_record_id\",\"db_name\":\"external_record_id\",\"description\":\"ID of the record in the external system.\",\"is_filterable\":true,\"mfz\":{\"caveats_permitted\":true},\"name\":\"external_record_id\",\"oasis\":{\"name\":\"external_record_id\"},\"origin\":\"sync_metadata\",\"ui\":{\"client_overrides\":[{\"client_name\":\"web\",\"view_overrides\":[{\"is_hidden\":true,\"view_name\":\"summary\"},{\"is_hidden\":true,\"view_name\":\"create\"}]}],\"create_view\":{\"is_hidden\":true},\"display_name\":\"External ID\",\"is_hidden_during_create\":true,\"is_read_only\":true,\"summary_view\":{\"is_hidden\":true}}},{\"field_type\":\"tokens\",\"data_name\":\"external_record_type\",\"db_name\":\"external_record_type\",\"description\":\"Type of the external record in the external system.\",\"is_filterable\":true,\"mfz\":{\"caveats_permitted\":true},\"name\":\"external_record_type\",\"oasis\":{\"name\":\"external_record_type\"},\"origin\":\"sync_metadata\",\"ui\":{\"client_overrides\":[{\"client_name\":\"web\",\"view_overrides\":[{\"is_hidden\":true,\"view_name\":\"summary\"},{\"is_hidden\":true,\"view_name\":\"create\"}]}],\"create_view\":{\"is_hidden\":true},\"display_name\":\"External Record Type\",\"is_hidden_during_create\":true,\"is_read_only\":true,\"summary_view\":{\"is_hidden\":true}}},{\"field_type\":\"tokens\",\"data_name\":\"external_reference\",\"db_name\":\"external_reference\",\"description\":\"External record URL.\",\"is_filterable\":true,\"name\":\"external_reference\",\"oasis\":{\"name\":\"external_reference\"},\"origin\":\"sync_metadata\",\"ui\":{\"client_overrides\":[{\"client_name\":\"web\",\"view_overrides\":[{\"is_hidden\":true,\"view_name\":\"detail\"},{\"is_hidden\":true,\"view_name\":\"summary\"},{\"is_hidden\":true,\"view_name\":\"create\"}]}],\"create_view\":{\"is_hidden\":true},\"detail_view\":{\"is_hidden\":true},\"display_name\":\"External Record\",\"is_hidden_during_create\":true,\"is_read_only\":true,\"summary_view\":{\"is_hidden\":true}}},{\"field_type\":\"composite\",\"composite_type\":\"sync_in\",\"data_name\":\"last_sync_in\",\"db_name\":\"last_sync_in\",\"description\":\"The last sync from the external system to DevRev.\",\"is_filterable\":true,\"name\":\"last_sync_in\",\"oasis\":{\"name\":\"last_sync_in\"},\"origin\":\"sync_metadata\",\"ui\":{\"client_overrides\":[{\"client_name\":\"web\",\"view_overrides\":[{\"is_hidden\":true,\"view_name\":\"create\"}]}],\"display_name\":\"Last Sync to DevRev\",\"is_hidden\":true,\"is_hidden_during_create\":true,\"is_read_only\":true}},{\"field_type\":\"composite\",\"composite_type\":\"sync_out\",\"data_name\":\"last_sync_out\",\"db_name\":\"last_sync_out\",\"description\":\"The last sync from DevRev to the external system.\",\"is_filterable\":true,\"name\":\"last_sync_out\",\"oasis\":{\"name\":\"last_sync_out\"},\"origin\":\"sync_metadata\",\"ui\":{\"client_overrides\":[{\"client_name\":\"web\",\"view_overrides\":[{\"is_hidden\":true,\"view_name\":\"create\"}]}],\"display_name\":\"Last Sync from DevRev\",\"is_hidden\":true,\"is_hidden_during_create\":true,\"is_read_only\":true}},{\"field_type\":\"tokens\",\"data_name\":\"origin_system\",\"db_name\":\"origin_system\",\"description\":\"Where the record was first created.\",\"is_filterable\":true,\"mfz\":{\"caveats_permitted\":true},\"name\":\"origin_system\",\"oasis\":{\"name\":\"origin_system\"},\"origin\":\"sync_metadata\",\"ui\":{\"client_overrides\":[{\"client_name\":\"web\",\"view_overrides\":[{\"is_hidden\":true,\"view_name\":\"detail\"},{\"is_hidden\":true,\"view_name\":\"summary\"},{\"is_hidden\":true,\"view_name\":\"create\"}]}],\"create_view\":{\"is_hidden\":true},\"detail_view\":{\"is_hidden\":true},\"display_name\":\"Sync Origin System\",\"is_hidden_during_create\":true,\"is_read_only\":true,\"summary_view\":{\"is_hidden\":true}}},{\"field_type\":\"array\",\"base_type\":\"id\",\"data_name\":\"synced_by_dev_users\",\"db_name\":\"synced_by_dev_users\",\"description\":\"List of users that created the sync unit.\",\"id_type\":[\"devu\"],\"mfz\":{\"caveats_permitted\":true},\"name\":\"synced_by_dev_users\",\"oasis\":{\"name\":\"synced_by_dev_users\"},\"origin\":\"sync_metadata\",\"ui\":{\"client_overrides\":[{\"client_name\":\"web\",\"view_overrides\":[{\"is_hidden\":true,\"view_name\":\"create\"}]}],\"display_name\":\"Synced By Users\",\"is_hidden\":true,\"is_hidden_during_create\":true,\"is_read_only\":true}}],\"name\":\"sync_metadata\"},{\"description\":\"Information about the sync from DevRev.\",\"fields\":[{\"field_type\":\"enum\",\"allowed_values\":[\"failed\",\"modified\",\"succeeded\"],\"data_name\":\"status\",\"db_name\":\"status\",\"description\":\"Status of the sync for the object.\",\"is_filterable\":true,\"name\":\"status\",\"oasis\":{\"name\":\"status\"},\"origin\":\"sync_out\",\"ui\":{\"client_overrides\":[{\"client_name\":\"web\",\"view_overrides\":[{\"is_hidden\":true,\"view_name\":\"detail\"},{\"is_hidden\":true,\"view_name\":\"summary\"},{\"is_hidden\":true,\"view_name\":\"create\"}]}],\"create_view\":{\"is_hidden\":true},\"detail_view\":{\"is_hidden\":true},\"display_name\":\"Sync-out Status\",\"is_hidden_during_create\":true,\"is_read_only\":true,\"summary_view\":{\"is_hidden\":true}}},{\"field_type\":\"timestamp\",\"data_name\":\"sync_date\",\"db_name\":\"sync_date\",\"description\":\"Timestamp when the object was synced in/from DevRev.\",\"is_filterable\":true,\"name\":\"sync_date\",\"oasis\":{\"name\":\"sync_date\"},\"origin\":\"sync_out\",\"ui\":{\"client_overrides\":[{\"client_name\":\"web\",\"view_overrides\":[{\"is_hidden\":true,\"view_name\":\"detail\"},{\"is_hidden\":true,\"view_name\":\"summary\"},{\"is_hidden\":true,\"view_name\":\"create\"}]}],\"create_view\":{\"is_hidden\":true},\"detail_view\":{\"is_hidden\":true},\"display_name\":\"Sync-out Date\",\"is_hidden_during_create\":true,\"is_read_only\":true,\"summary_view\":{\"is_hidden\":true}}},{\"field_type\":\"id\",\"data_name\":\"sync_history\",\"db_name\":\"sync_history\",\"description\":\"Id of the sync_history when the object was synced.\",\"id_type\":[\"sync_history\"],\"is_filterable\":true,\"name\":\"sync_history\",\"oasis\":{\"name\":\"sync_history\"},\"origin\":\"sync_out\",\"ui\":{\"client_overrides\":[{\"client_name\":\"web\",\"view_overrides\":[{\"is_hidden\":true,\"view_name\":\"create\"}]}],\"display_name\":\"Sync-out History\",\"is_hidden\":true,\"is_hidden_during_create\":true,\"is_read_only\":true}},{\"field_type\":\"id\",\"data_name\":\"sync_unit\",\"db_name\":\"sync_unit\",\"description\":\"Id of the sync_unit to which the object belongs.\",\"id_type\":[\"sync_unit\"],\"is_filterable\":true,\"name\":\"sync_unit\",\"oasis\":{\"name\":\"sync_unit\"},\"origin\":\"sync_out\",\"ui\":{\"client_overrides\":[{\"client_name\":\"web\",\"view_overrides\":[{\"is_hidden\":true,\"view_name\":\"create\"}]}],\"display_name\":\"Sync-out Name\",\"is_hidden\":true,\"is_hidden_during_create\":true,\"is_read_only\":true}}],\"name\":\"sync_out\"},{\"fields\":[{\"field_type\":\"text\",\"data_name\":\"display_id\",\"db_name\":\"display_id\",\"description\":\"Human-readable object ID unique to the Dev organization.\",\"name\":\"display_id\",\"oasis\":{\"name\":\"display_id\"}},{\"field_type\":\"id\",\"data_name\":\"id\",\"db_name\":\"id\",\"description\":\"Globally unique object ID.\",\"id_type\":[\"artifact\"],\"is_required\":true,\"name\":\"id\",\"oasis\":{\"name\":\"id\"}}],\"name\":\"_gen:display_picture\"},{\"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\":\"external_ref\",\"db_name\":\"external_ref\",\"description\":\"External ref is a mutable unique identifier for a user within the Rev organization from your primary customer record. If none is available, a good alternative is the email address/phone number which could uniquely identify the user. If none is specified, a system-generated identifier will be assigned to the user.\",\"name\":\"external_ref\",\"oasis\":{\"name\":\"external_ref\"}},{\"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\":\"external_ref\",\"db_name\":\"external_ref\",\"description\":\"External ref is a mutable unique identifier for a user within the Rev organization from your primary customer record. If none is available, a good alternative is the email address/phone number which could uniquely identify the user. If none is specified, a system-generated identifier will be assigned to the user.\",\"name\":\"external_ref\",\"oasis\":{\"name\":\"external_ref\"}},{\"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\":\"Old implementation object\",\"fields\":[{\"supported_filter_ops\":[\"all\",\"any\",\"not_any\",\"empty\",\"not_empty\"],\"field_type\":\"array\",\"base_type\":\"tokens\",\"data_name\":\"apps\",\"db_name\":\"apps\",\"description\":\"Apps corresponding to the app fragments\",\"is_filterable\":true,\"is_system\":true,\"name\":\"apps\",\"oasis\":{\"name\":\"apps\"},\"origin\":\"custom_object\",\"ui\":{\"display_name\":\"Apps\",\"is_base_field\":true,\"is_hidden\":true}},{\"field_type\":\"composite\",\"composite_type\":\"_gen:created_by\",\"data_name\":\"created_by\",\"db_name\":\"created_by\",\"name\":\"created_by\",\"oasis\":{\"name\":\"created_by\"},\"ui\":{\"display_name\":\"Created by\",\"is_groupable\":true}},{\"field_type\":\"timestamp\",\"data_name\":\"created_date\",\"db_name\":\"created_date\",\"description\":\"Timestamp when the object was created\",\"is_filterable\":true,\"is_immutable\":true,\"is_required\":true,\"is_system\":true,\"name\":\"created_date\",\"oasis\":{\"name\":\"created_date\"},\"origin\":\"atom\",\"ui\":{\"display_name\":\"Created date\",\"filter_presets\":[\"last_n_hours:1\",\"last_n_hours:24\",\"next_n_hours:1\",\"next_n_hours:24\",\"before_n_hours:1\",\"before_n_hours:24\",\"after_n_hours:1\",\"after_n_hours:24\"],\"is_sortable\":true}},{\"field_type\":\"struct\",\"data_name\":\"custom_fields\",\"db_name\":\"custom_fields\",\"description\":\"Custom fields\",\"name\":\"custom_fields\",\"oasis\":{\"name\":\"custom_fields\"},\"origin\":\"custom_object\",\"ui\":{\"display_name\":\"\",\"is_hidden\":true}},{\"field_type\":\"array\",\"base_type\":\"tokens\",\"data_name\":\"custom_schema_fragments\",\"db_name\":\"custom_schema_fragment_ids\",\"description\":\"IDs of the attached custom schema fragments\",\"name\":\"custom_schema_fragment_ids\",\"oasis\":{\"name\":\"custom_schema_fragment_ids\"},\"origin\":\"custom_object\",\"ui\":{\"display_name\":\"\",\"is_hidden\":true}},{\"field_type\":\"rich_text\",\"data_name\":\"description\",\"db_name\":\"description\",\"description\":\"Description of the object.\",\"max_len\":65536,\"name\":\"description\",\"oasis\":{\"name\":\"description\"},\"origin\":\"custom_object\",\"ui\":{\"display_name\":\"Description\",\"is_base_field\":true}},{\"field_type\":\"tokens\",\"data_name\":\"dev_oid\",\"db_name\":\"dev_oid\",\"description\":\"Globally unique ID for a Dev organization\",\"is_immutable\":true,\"is_required\":true,\"is_system\":true,\"mfz\":{},\"name\":\"dev_oid\",\"oasis\":{\"name\":\"dev_oid\"},\"origin\":\"atom\",\"ui\":{\"display_name\":\"Dev organization ID\",\"is_hidden\":true}},{\"field_type\":\"tokens\",\"data_name\":\"display_id\",\"db_name\":\"display_id\",\"description\":\"Human-readable object ID unique to the Dev organization\",\"is_immutable\":true,\"is_required\":true,\"is_system\":true,\"mfz\":{},\"name\":\"display_id\",\"oasis\":{\"name\":\"display_id\"},\"origin\":\"atom\",\"ui\":{\"display_name\":\"Display ID\",\"is_hidden\":true}},{\"field_type\":\"composite\",\"composite_type\":\"external_source_data_comp\",\"data_name\":\"external_source_data\",\"db_name\":\"external_source_data\",\"description\":\"Stores information about the external source fields that have been AirSynced into DevRev.\",\"is_filterable\":true,\"name\":\"external_source_data\",\"oasis\":{\"name\":\"external_source_data\"},\"origin\":\"custom_object\",\"ui\":{\"client_overrides\":[{\"client_name\":\"web\",\"view_overrides\":[{\"is_hidden\":true,\"view_name\":\"create\"}]}],\"display_name\":\"External Source Data\",\"is_hidden\":true,\"is_hidden_during_create\":true,\"is_read_only\":true}},{\"field_type\":\"id\",\"data_name\":\"id\",\"db_name\":\"id\",\"description\":\"Globally unique DevRev Object Name (DON)\",\"id_type\":[\"custom_object\"],\"is_immutable\":true,\"is_required\":true,\"is_system\":true,\"mfz\":{},\"name\":\"id\",\"oasis\":{\"name\":\"id\"},\"origin\":\"atom\",\"ui\":{\"display_name\":\"ID\",\"is_hidden\":false}},{\"field_type\":\"bool\",\"data_name\":\"is_deleted\",\"db_name\":\"is_deleted\",\"description\":\"Whether or not the object has been marked as deleted\",\"is_system\":true,\"name\":\"is_deleted\",\"oasis\":{\"name\":\"is_deleted\"},\"origin\":\"atom\",\"ui\":{\"display_name\":\"Is deleted\",\"is_hidden\":true}},{\"field_type\":\"int\",\"data_name\":\"last_system_modification_version\",\"db_name\":\"last_system_modification_version\",\"description\":\"Last version of the object which was modified by a system update\",\"is_system\":true,\"name\":\"last_system_modification_version\",\"oasis\":{\"name\":\"last_system_modification_version\"},\"origin\":\"atom\",\"ui\":{\"display_name\":\"Last System Modification Version\",\"is_hidden\":true}},{\"supported_filter_ops\":[\"any\",\"not_any\",\"empty\",\"not_empty\"],\"field_type\":\"tokens\",\"data_name\":\"leaf_type\",\"db_name\":\"leaf_type\",\"description\":\"Type of the object.\",\"is_filterable\":true,\"is_immutable\":true,\"is_required\":true,\"name\":\"leaf_type\",\"oasis\":{\"name\":\"leaf_type\"},\"origin\":\"custom_object\",\"ui\":{\"display_name\":\"Leaf type\",\"is_hidden\":true}},{\"field_type\":\"composite\",\"composite_type\":\"_gen:modified_by\",\"data_name\":\"modified_by\",\"db_name\":\"modified_by\",\"name\":\"modified_by\",\"oasis\":{\"name\":\"modified_by\"},\"ui\":{\"client_overrides\":[{\"client_name\":\"web\",\"view_overrides\":[{\"is_hidden\":true,\"view_name\":\"filter\"}]}],\"display_name\":\"Modified by\",\"filter_view\":{\"is_hidden\":true}}},{\"field_type\":\"timestamp\",\"data_name\":\"modified_date\",\"db_name\":\"modified_date\",\"description\":\"Timestamp when the object was last modified\",\"is_filterable\":true,\"is_required\":true,\"is_system\":true,\"name\":\"modified_date\",\"oasis\":{\"name\":\"modified_date\"},\"origin\":\"atom\",\"ui\":{\"display_name\":\"Modified date\",\"filter_presets\":[\"last_n_hours:1\",\"last_n_hours:24\",\"next_n_hours:1\",\"next_n_hours:24\",\"before_n_hours:1\",\"before_n_hours:24\",\"after_n_hours:1\",\"after_n_hours:24\"],\"is_sortable\":true}},{\"supported_filter_ops\":[\"any\",\"not_any\",\"empty\",\"not_empty\"],\"field_type\":\"tokens\",\"data_name\":\"object_type\",\"db_name\":\"object_type\",\"description\":\"Type of DevRev object\",\"is_filterable\":true,\"is_immutable\":true,\"is_required\":true,\"is_system\":true,\"mfz\":{},\"name\":\"object_type\",\"oasis\":{\"name\":\"object_type\"},\"origin\":\"atom\",\"ui\":{\"display_name\":\"Object type\",\"is_hidden\":true}},{\"field_type\":\"int\",\"data_name\":\"object_version\",\"db_name\":\"object_version\",\"description\":\"Version of the object, increments on each update\",\"is_required\":true,\"is_system\":true,\"name\":\"object_version\",\"oasis\":{\"name\":\"object_version\"},\"origin\":\"atom\",\"ui\":{\"display_name\":\"Object Version\",\"is_hidden\":true}},{\"field_type\":\"composite\",\"composite_type\":\"stage\",\"data_name\":\"stage\",\"db_name\":\"stage\",\"description\":\"Stage of the object.\",\"is_filterable\":true,\"name\":\"stage\",\"oasis\":{\"name\":\"stage\"},\"origin\":\"custom_object\",\"ui\":{\"display_name\":\"Stage\",\"is_bulk_action_enabled\":true,\"is_groupable\":true,\"is_hidden\":true,\"is_sortable\":true}},{\"field_type\":\"composite\",\"composite_type\":\"staged_info\",\"data_name\":\"staged_info\",\"db_name\":\"staged_info\",\"description\":\"Meta information about the staged record\",\"is_filterable\":true,\"name\":\"staged_info\",\"oasis\":{\"name\":\"staged_info\"},\"origin\":\"custom_object\",\"ui\":{\"client_overrides\":[{\"client_name\":\"web\",\"view_overrides\":[{\"is_hidden\":true,\"view_name\":\"create\"}]}],\"display_name\":\"Staged information\",\"is_hidden\":true,\"is_hidden_during_create\":true}},{\"field_type\":\"tokens\",\"data_name\":\"stock_schema_fragment\",\"db_name\":\"stock_schema_fragment_id\",\"description\":\"ID of the stock schema fragment\",\"is_system\":true,\"name\":\"stock_schema_fragment_id\",\"oasis\":{\"name\":\"stock_schema_fragment_id\"},\"origin\":\"custom_object\",\"ui\":{\"display_name\":\"\",\"is_hidden\":true}},{\"supported_filter_ops\":[\"any\",\"not_any\",\"empty\",\"not_empty\"],\"field_type\":\"tokens\",\"data_name\":\"subtype\",\"db_name\":\"subtype\",\"description\":\"Subtype corresponding to the custom type fragment\",\"is_filterable\":true,\"is_system\":true,\"name\":\"subtype\",\"oasis\":{\"name\":\"subtype\"},\"origin\":\"custom_object\",\"ui\":{\"display_name\":\"Subtype\",\"is_base_field\":true,\"is_groupable\":true,\"order\":5,\"placeholder\":\"Select Subtype\"}},{\"field_type\":\"composite\",\"composite_type\":\"sync_metadata\",\"data_name\":\"sync_metadata\",\"db_name\":\"sync_metadata\",\"description\":\"Sync information for records synced into/from DevRev.\",\"is_filterable\":true,\"mfz\":{\"caveats_permitted\":true},\"name\":\"sync_metadata\",\"oasis\":{\"name\":\"sync_metadata\"},\"origin\":\"custom_object\",\"ui\":{\"client_overrides\":[{\"client_name\":\"web\",\"view_overrides\":[{\"is_hidden\":true,\"view_name\":\"create\"}]}],\"display_name\":\"Sync Information\",\"is_hidden\":true,\"is_hidden_during_create\":true,\"is_read_only\":true}},{\"field_type\":\"text\",\"data_name\":\"title\",\"db_name\":\"title\",\"description\":\"Title of the object.\",\"max_len\":100,\"name\":\"title\",\"oasis\":{\"name\":\"title\"},\"origin\":\"custom_object\",\"ui\":{\"display_name\":\"Title\",\"is_base_field\":true}},{\"supported_filter_ops\":[\"any\",\"not_any\",\"empty\",\"not_empty\"],\"field_type\":\"tokens\",\"data_name\":\"unique_key\",\"db_name\":\"unique_key\",\"description\":\"A unique key that, if provided, ensures the combination of {leaf_type, unique_key} is distinct across all objects in the system.\",\"is_filterable\":true,\"is_immutable\":true,\"name\":\"unique_key\",\"oasis\":{\"name\":\"unique_key\"},\"origin\":\"custom_object\",\"ui\":{\"display_name\":\"Unique key\",\"is_hidden\":true}},{\"supported_filter_ops\":[\"all\",\"any\",\"not_any\",\"empty\",\"not_empty\"],\"field_type\":\"array\",\"base_type\":\"id\",\"data_name\":\"tnt__aai_owner\",\"db_name\":\"tnt__aai_owner\",\"id_type\":[\"devu\"],\"is_filterable\":true,\"is_required\":false,\"name\":\"tnt__aai_owner\",\"oasis\":{\"name\":\"tnt__aai_owner\"},\"ui\":{\"display_name\":\"AAI Owner\",\"placeholder\":\"Add AAI Owner\"}},{\"supported_filter_ops\":[\"any\",\"not_any\",\"empty\",\"not_empty\"],\"field_type\":\"enum\",\"allowed_values\":[\"EMEA\",\"India North\",\"India South\",\"US East\",\"US West\"],\"data_name\":\"tnt__aai_squad\",\"db_name\":\"tnt__aai_squad\",\"is_filterable\":true,\"name\":\"tnt__aai_squad\",\"oasis\":{\"name\":\"tnt__aai_squad\"},\"ui\":{\"display_name\":\"AAI Squad\",\"placeholder\":\"Add AAI Squad\"}},{\"supported_filter_ops\":[\"any\",\"not_any\",\"empty\",\"not_empty\"],\"field_type\":\"id\",\"data_name\":\"tnt__account\",\"db_name\":\"tnt__account\",\"description\":\"The DevRev account ID\",\"id_type\":[\"account\"],\"is_filterable\":true,\"name\":\"tnt__account\",\"oasis\":{\"name\":\"tnt__account\"},\"ui\":{\"display_name\":\"Account ID\",\"placeholder\":\"Add Account ID\"}},{\"supported_filter_ops\":[\"any\",\"not_any\",\"empty\",\"not_empty\"],\"field_type\":\"enum\",\"allowed_values\":[\"No\",\"Yes\"],\"data_name\":\"tnt__activate_workflow\",\"db_name\":\"tnt__activate_workflow\",\"is_filterable\":true,\"name\":\"tnt__activate_workflow\",\"oasis\":{\"name\":\"tnt__activate_workflow\"},\"ui\":{\"display_name\":\"Activate workflow\",\"placeholder\":\"Add Activate workflow\"}},{\"field_type\":\"timestamp\",\"data_name\":\"tnt__close_date\",\"db_name\":\"tnt__close_date\",\"description\":\"Represents the completion date of the implementation\",\"is_filterable\":true,\"name\":\"tnt__close_date\",\"oasis\":{\"name\":\"tnt__close_date\"},\"ui\":{\"display_name\":\"Close Date\",\"placeholder\":\"Add Close Date\"}},{\"supported_filter_ops\":[\"all\",\"any\",\"not_any\",\"empty\",\"not_empty\"],\"field_type\":\"array\",\"base_type\":\"id\",\"data_name\":\"tnt__owners\",\"db_name\":\"tnt__owners\",\"id_type\":[\"devu\"],\"is_filterable\":true,\"name\":\"tnt__owners\",\"oasis\":{\"name\":\"tnt__owners\"},\"ui\":{\"display_name\":\"Owners\",\"placeholder\":\"Add Owners\"}},{\"field_type\":\"rich_text\",\"data_name\":\"tnt__project_plan\",\"db_name\":\"tnt__project_plan\",\"is_filterable\":false,\"is_required\":false,\"name\":\"tnt__project_plan\",\"oasis\":{\"name\":\"tnt__project_plan\"},\"ui\":{\"display_name\":\"Project Plan \",\"placeholder\":\"Add Project Plan \"}},{\"supported_filter_ops\":[\"any\",\"not_any\",\"empty\",\"not_empty\"],\"field_type\":\"enum\",\"allowed_values\":[\"1. Scope and configuration\",\"2. Testing (UAT)\",\"3. Enablement\",\"4. Go-live\",\"5. Adoption and optimization\",\"6. Stabilization and value realization\"],\"data_name\":\"tnt__stage\",\"db_name\":\"tnt__stage\",\"is_filterable\":true,\"name\":\"tnt__stage\",\"oasis\":{\"name\":\"tnt__stage\"},\"ui\":{\"display_name\":\"Stage\",\"placeholder\":\"Add Stage\"}},{\"field_type\":\"timestamp\",\"data_name\":\"tnt__start_date\",\"db_name\":\"tnt__start_date\",\"description\":\"Represents the start date of the implementation process\",\"is_filterable\":true,\"name\":\"tnt__start_date\",\"oasis\":{\"name\":\"tnt__start_date\"},\"ui\":{\"display_name\":\"Start Date\",\"placeholder\":\"Add Start Date\"}},{\"supported_filter_ops\":[\"all\",\"any\",\"not_any\",\"empty\",\"not_empty\"],\"field_type\":\"array\",\"base_type\":\"id\",\"data_name\":\"tnt__tags\",\"db_name\":\"tnt__tags\",\"description\":\"Tags associated with the object\",\"id_type\":[\"tag\"],\"is_filterable\":true,\"name\":\"tnt__tags\",\"oasis\":{\"name\":\"tnt__tags\"},\"ui\":{\"display_name\":\"Tags\",\"placeholder\":\"Add Tags\"}},{\"field_type\":\"timestamp\",\"data_name\":\"tnt__target_close_date\",\"db_name\":\"tnt__target_close_date\",\"is_filterable\":false,\"name\":\"tnt__target_close_date\",\"oasis\":{\"name\":\"tnt__target_close_date\"},\"ui\":{\"display_name\":\"Target Close Date\",\"placeholder\":\"Add Target Close Date\"}},{\"field_type\":\"timestamp\",\"data_name\":\"tnt__target_start_date\",\"db_name\":\"tnt__target_start_date\",\"is_filterable\":false,\"name\":\"tnt__target_start_date\",\"oasis\":{\"name\":\"tnt__target_start_date\"},\"ui\":{\"display_name\":\"Target Start Date\",\"placeholder\":\"Add Target Start Date\"}},{\"supported_filter_ops\":[\"all\",\"any\",\"not_any\",\"empty\",\"not_empty\"],\"field_type\":\"array\",\"base_type\":\"enum\",\"allowed_values\":[\"Agentic\",\"Build\",\"Support\"],\"data_name\":\"tnt__type\",\"db_name\":\"tnt__type\",\"is_filterable\":true,\"name\":\"tnt__type\",\"oasis\":{\"name\":\"tnt__type\"},\"ui\":{\"display_name\":\"Type\",\"placeholder\":\"Type of Implementation\"}}],\"name\":\"old_implementation\"}],\"field_descriptors\":[{\"supported_filter_ops\":[\"all\",\"any\",\"not_any\",\"empty\",\"not_empty\"],\"field_type\":\"array\",\"base_type\":\"tokens\",\"data_name\":\"apps\",\"db_name\":\"apps\",\"description\":\"Apps corresponding to the app fragments\",\"is_filterable\":true,\"is_system\":true,\"name\":\"apps\",\"oasis\":{\"name\":\"apps\"},\"origin\":\"custom_object\",\"ui\":{\"display_name\":\"Apps\",\"is_base_field\":true,\"is_hidden\":true}},{\"field_type\":\"composite\",\"composite_type\":\"_gen:created_by\",\"data_name\":\"created_by\",\"db_name\":\"created_by\",\"name\":\"created_by\",\"oasis\":{\"name\":\"created_by\"},\"ui\":{\"display_name\":\"Created by\",\"is_groupable\":true}},{\"field_type\":\"timestamp\",\"data_name\":\"created_date\",\"db_name\":\"created_date\",\"description\":\"Timestamp when the object was created\",\"is_filterable\":true,\"is_immutable\":true,\"is_required\":true,\"is_system\":true,\"name\":\"created_date\",\"oasis\":{\"name\":\"created_date\"},\"origin\":\"atom\",\"ui\":{\"display_name\":\"Created date\",\"filter_presets\":[\"last_n_hours:1\",\"last_n_hours:24\",\"next_n_hours:1\",\"next_n_hours:24\",\"before_n_hours:1\",\"before_n_hours:24\",\"after_n_hours:1\",\"after_n_hours:24\"],\"is_sortable\":true}},{\"field_type\":\"struct\",\"data_name\":\"custom_fields\",\"db_name\":\"custom_fields\",\"description\":\"Custom fields\",\"name\":\"custom_fields\",\"oasis\":{\"name\":\"custom_fields\"},\"origin\":\"custom_object\",\"ui\":{\"display_name\":\"\",\"is_hidden\":true}},{\"field_type\":\"array\",\"base_type\":\"tokens\",\"data_name\":\"custom_schema_fragments\",\"db_name\":\"custom_schema_fragment_ids\",\"description\":\"IDs of the attached custom schema fragments\",\"name\":\"custom_schema_fragment_ids\",\"oasis\":{\"name\":\"custom_schema_fragment_ids\"},\"origin\":\"custom_object\",\"ui\":{\"display_name\":\"\",\"is_hidden\":true}},{\"field_type\":\"rich_text\",\"data_name\":\"description\",\"db_name\":\"description\",\"description\":\"Description of the object.\",\"max_len\":65536,\"name\":\"description\",\"oasis\":{\"name\":\"description\"},\"origin\":\"custom_object\",\"ui\":{\"display_name\":\"Description\",\"is_base_field\":true}},{\"field_type\":\"tokens\",\"data_name\":\"dev_oid\",\"db_name\":\"dev_oid\",\"description\":\"Globally unique ID for a Dev organization\",\"is_immutable\":true,\"is_required\":true,\"is_system\":true,\"mfz\":{},\"name\":\"dev_oid\",\"oasis\":{\"name\":\"dev_oid\"},\"origin\":\"atom\",\"ui\":{\"display_name\":\"Dev organization ID\",\"is_hidden\":true}},{\"field_type\":\"tokens\",\"data_name\":\"display_id\",\"db_name\":\"display_id\",\"description\":\"Human-readable object ID unique to the Dev organization\",\"is_immutable\":true,\"is_required\":true,\"is_system\":true,\"mfz\":{},\"name\":\"display_id\",\"oasis\":{\"name\":\"display_id\"},\"origin\":\"atom\",\"ui\":{\"display_name\":\"Display ID\",\"is_hidden\":true}},{\"field_type\":\"composite\",\"composite_type\":\"external_source_data_comp\",\"data_name\":\"external_source_data\",\"db_name\":\"external_source_data\",\"description\":\"Stores information about the external source fields that have been AirSynced into DevRev.\",\"is_filterable\":true,\"name\":\"external_source_data\",\"oasis\":{\"name\":\"external_source_data\"},\"origin\":\"custom_object\",\"ui\":{\"client_overrides\":[{\"client_name\":\"web\",\"view_overrides\":[{\"is_hidden\":true,\"view_name\":\"create\"}]}],\"display_name\":\"External Source Data\",\"is_hidden\":true,\"is_hidden_during_create\":true,\"is_read_only\":true}},{\"field_type\":\"bool\",\"data_name\":\"is_deleted\",\"db_name\":\"is_deleted\",\"description\":\"Whether or not the object has been marked as deleted\",\"is_system\":true,\"name\":\"is_deleted\",\"oasis\":{\"name\":\"is_deleted\"},\"origin\":\"atom\",\"ui\":{\"display_name\":\"Is deleted\",\"is_hidden\":true}},{\"field_type\":\"int\",\"data_name\":\"last_system_modification_version\",\"db_name\":\"last_system_modification_version\",\"description\":\"Last version of the object which was modified by a system update\",\"is_system\":true,\"name\":\"last_system_modification_version\",\"oasis\":{\"name\":\"last_system_modification_version\"},\"origin\":\"atom\",\"ui\":{\"display_name\":\"Last System Modification Version\",\"is_hidden\":true}},{\"supported_filter_ops\":[\"any\",\"not_any\",\"empty\",\"not_empty\"],\"field_type\":\"tokens\",\"data_name\":\"leaf_type\",\"db_name\":\"leaf_type\",\"description\":\"Type of the object.\",\"is_filterable\":true,\"is_immutable\":true,\"is_required\":true,\"name\":\"leaf_type\",\"oasis\":{\"name\":\"leaf_type\"},\"origin\":\"custom_object\",\"ui\":{\"display_name\":\"Leaf type\",\"is_hidden\":true}},{\"field_type\":\"composite\",\"composite_type\":\"_gen:modified_by\",\"data_name\":\"modified_by\",\"db_name\":\"modified_by\",\"name\":\"modified_by\",\"oasis\":{\"name\":\"modified_by\"},\"ui\":{\"client_overrides\":[{\"client_name\":\"web\",\"view_overrides\":[{\"is_hidden\":true,\"view_name\":\"filter\"}]}],\"display_name\":\"Modified by\",\"filter_view\":{\"is_hidden\":true}}},{\"field_type\":\"timestamp\",\"data_name\":\"modified_date\",\"db_name\":\"modified_date\",\"description\":\"Timestamp when the object was last modified\",\"is_filterable\":true,\"is_required\":true,\"is_system\":true,\"name\":\"modified_date\",\"oasis\":{\"name\":\"modified_date\"},\"origin\":\"atom\",\"ui\":{\"display_name\":\"Modified date\",\"filter_presets\":[\"last_n_hours:1\",\"last_n_hours:24\",\"next_n_hours:1\",\"next_n_hours:24\",\"before_n_hours:1\",\"before_n_hours:24\",\"after_n_hours:1\",\"after_n_hours:24\"],\"is_sortable\":true}},{\"supported_filter_ops\":[\"any\",\"not_any\",\"empty\",\"not_empty\"],\"field_type\":\"tokens\",\"data_name\":\"object_type\",\"db_name\":\"object_type\",\"description\":\"Type of DevRev object\",\"is_filterable\":true,\"is_immutable\":true,\"is_required\":true,\"is_system\":true,\"mfz\":{},\"name\":\"object_type\",\"oasis\":{\"name\":\"object_type\"},\"origin\":\"atom\",\"ui\":{\"display_name\":\"Object type\",\"is_hidden\":true}},{\"field_type\":\"int\",\"data_name\":\"object_version\",\"db_name\":\"object_version\",\"description\":\"Version of the object, increments on each update\",\"is_required\":true,\"is_system\":true,\"name\":\"object_version\",\"oasis\":{\"name\":\"object_version\"},\"origin\":\"atom\",\"ui\":{\"display_name\":\"Object Version\",\"is_hidden\":true}},{\"field_type\":\"composite\",\"composite_type\":\"stage\",\"data_name\":\"stage\",\"db_name\":\"stage\",\"description\":\"Stage of the object.\",\"is_filterable\":true,\"name\":\"stage\",\"oasis\":{\"name\":\"stage\"},\"origin\":\"custom_object\",\"ui\":{\"display_name\":\"Stage\",\"is_bulk_action_enabled\":true,\"is_groupable\":true,\"is_hidden\":true,\"is_sortable\":true}},{\"field_type\":\"composite\",\"composite_type\":\"staged_info\",\"data_name\":\"staged_info\",\"db_name\":\"staged_info\",\"description\":\"Meta information about the staged record\",\"is_filterable\":true,\"name\":\"staged_info\",\"oasis\":{\"name\":\"staged_info\"},\"origin\":\"custom_object\",\"ui\":{\"client_overrides\":[{\"client_name\":\"web\",\"view_overrides\":[{\"is_hidden\":true,\"view_name\":\"create\"}]}],\"display_name\":\"Staged information\",\"is_hidden\":true,\"is_hidden_during_create\":true}},{\"field_type\":\"tokens\",\"data_name\":\"stock_schema_fragment\",\"db_name\":\"stock_schema_fragment_id\",\"description\":\"ID of the stock schema fragment\",\"is_system\":true,\"name\":\"stock_schema_fragment_id\",\"oasis\":{\"name\":\"stock_schema_fragment_id\"},\"origin\":\"custom_object\",\"ui\":{\"display_name\":\"\",\"is_hidden\":true}},{\"supported_filter_ops\":[\"any\",\"not_any\",\"empty\",\"not_empty\"],\"field_type\":\"tokens\",\"data_name\":\"subtype\",\"db_name\":\"subtype\",\"description\":\"Subtype corresponding to the custom type fragment\",\"is_filterable\":true,\"is_system\":true,\"name\":\"subtype\",\"oasis\":{\"name\":\"subtype\"},\"origin\":\"custom_object\",\"ui\":{\"display_name\":\"Subtype\",\"is_base_field\":true,\"is_groupable\":true,\"order\":5,\"placeholder\":\"Select Subtype\"}},{\"field_type\":\"composite\",\"composite_type\":\"sync_metadata\",\"data_name\":\"sync_metadata\",\"db_name\":\"sync_metadata\",\"description\":\"Sync information for records synced into/from DevRev.\",\"is_filterable\":true,\"mfz\":{\"caveats_permitted\":true},\"name\":\"sync_metadata\",\"oasis\":{\"name\":\"sync_metadata\"},\"origin\":\"custom_object\",\"ui\":{\"client_overrides\":[{\"client_name\":\"web\",\"view_overrides\":[{\"is_hidden\":true,\"view_name\":\"create\"}]}],\"display_name\":\"Sync Information\",\"is_hidden\":true,\"is_hidden_during_create\":true,\"is_read_only\":true}},{\"field_type\":\"text\",\"data_name\":\"title\",\"db_name\":\"title\",\"description\":\"Title of the object.\",\"max_len\":100,\"name\":\"title\",\"oasis\":{\"name\":\"title\"},\"origin\":\"custom_object\",\"ui\":{\"display_name\":\"Title\",\"is_base_field\":true}},{\"supported_filter_ops\":[\"any\",\"not_any\",\"empty\",\"not_empty\"],\"field_type\":\"tokens\",\"data_name\":\"unique_key\",\"db_name\":\"unique_key\",\"description\":\"A unique key that, if provided, ensures the combination of {leaf_type, unique_key} is distinct across all objects in the system.\",\"is_filterable\":true,\"is_immutable\":true,\"name\":\"unique_key\",\"oasis\":{\"name\":\"unique_key\"},\"origin\":\"custom_object\",\"ui\":{\"display_name\":\"Unique key\",\"is_hidden\":true}},{\"field_type\":\"composite\",\"composite_type\":\"old_implementation\",\"data_name\":\"old_implementation\",\"db_name\":\"old_implementation\",\"description\":\"Old implementation object\",\"name\":\"old_implementation\",\"oasis\":{\"name\":\"old_implementation\"},\"ui\":{\"display_name\":\"Old implementation\"}},{\"supported_filter_ops\":[\"all\",\"any\",\"not_any\",\"empty\",\"not_empty\"],\"field_type\":\"array\",\"base_type\":\"id\",\"data_name\":\"tnt__aai_owner\",\"db_name\":\"tnt__aai_owner\",\"id_type\":[\"devu\"],\"is_filterable\":true,\"is_required\":false,\"name\":\"tnt__aai_owner\",\"oasis\":{\"name\":\"tnt__aai_owner\"},\"ui\":{\"display_name\":\"AAI Owner\",\"placeholder\":\"Add AAI Owner\"}},{\"supported_filter_ops\":[\"any\",\"not_any\",\"empty\",\"not_empty\"],\"field_type\":\"enum\",\"allowed_values\":[\"EMEA\",\"India North\",\"India South\",\"US East\",\"US West\"],\"data_name\":\"tnt__aai_squad\",\"db_name\":\"tnt__aai_squad\",\"is_filterable\":true,\"name\":\"tnt__aai_squad\",\"oasis\":{\"name\":\"tnt__aai_squad\"},\"ui\":{\"display_name\":\"AAI Squad\",\"placeholder\":\"Add AAI Squad\"}},{\"supported_filter_ops\":[\"any\",\"not_any\",\"empty\",\"not_empty\"],\"field_type\":\"id\",\"data_name\":\"tnt__account\",\"db_name\":\"tnt__account\",\"description\":\"The DevRev account ID\",\"id_type\":[\"account\"],\"is_filterable\":true,\"name\":\"tnt__account\",\"oasis\":{\"name\":\"tnt__account\"},\"ui\":{\"display_name\":\"Account ID\",\"placeholder\":\"Add Account ID\"}},{\"supported_filter_ops\":[\"any\",\"not_any\",\"empty\",\"not_empty\"],\"field_type\":\"enum\",\"allowed_values\":[\"No\",\"Yes\"],\"data_name\":\"tnt__activate_workflow\",\"db_name\":\"tnt__activate_workflow\",\"is_filterable\":true,\"name\":\"tnt__activate_workflow\",\"oasis\":{\"name\":\"tnt__activate_workflow\"},\"ui\":{\"display_name\":\"Activate workflow\",\"placeholder\":\"Add Activate workflow\"}},{\"field_type\":\"timestamp\",\"data_name\":\"tnt__close_date\",\"db_name\":\"tnt__close_date\",\"description\":\"Represents the completion date of the implementation\",\"is_filterable\":true,\"name\":\"tnt__close_date\",\"oasis\":{\"name\":\"tnt__close_date\"},\"ui\":{\"display_name\":\"Close Date\",\"placeholder\":\"Add Close Date\"}},{\"supported_filter_ops\":[\"all\",\"any\",\"not_any\",\"empty\",\"not_empty\"],\"field_type\":\"array\",\"base_type\":\"id\",\"data_name\":\"tnt__owners\",\"db_name\":\"tnt__owners\",\"id_type\":[\"devu\"],\"is_filterable\":true,\"name\":\"tnt__owners\",\"oasis\":{\"name\":\"tnt__owners\"},\"ui\":{\"display_name\":\"Owners\",\"placeholder\":\"Add Owners\"}},{\"field_type\":\"rich_text\",\"data_name\":\"tnt__project_plan\",\"db_name\":\"tnt__project_plan\",\"is_filterable\":false,\"is_required\":false,\"name\":\"tnt__project_plan\",\"oasis\":{\"name\":\"tnt__project_plan\"},\"ui\":{\"display_name\":\"Project Plan \",\"placeholder\":\"Add Project Plan \"}},{\"supported_filter_ops\":[\"any\",\"not_any\",\"empty\",\"not_empty\"],\"field_type\":\"enum\",\"allowed_values\":[\"1. Scope and configuration\",\"2. Testing (UAT)\",\"3. Enablement\",\"4. Go-live\",\"5. Adoption and optimization\",\"6. Stabilization and value realization\"],\"data_name\":\"tnt__stage\",\"db_name\":\"tnt__stage\",\"is_filterable\":true,\"name\":\"tnt__stage\",\"oasis\":{\"name\":\"tnt__stage\"},\"ui\":{\"display_name\":\"Stage\",\"placeholder\":\"Add Stage\"}},{\"field_type\":\"timestamp\",\"data_name\":\"tnt__start_date\",\"db_name\":\"tnt__start_date\",\"description\":\"Represents the start date of the implementation process\",\"is_filterable\":true,\"name\":\"tnt__start_date\",\"oasis\":{\"name\":\"tnt__start_date\"},\"ui\":{\"display_name\":\"Start Date\",\"placeholder\":\"Add Start Date\"}},{\"supported_filter_ops\":[\"all\",\"any\",\"not_any\",\"empty\",\"not_empty\"],\"field_type\":\"array\",\"base_type\":\"id\",\"data_name\":\"tnt__tags\",\"db_name\":\"tnt__tags\",\"description\":\"Tags associated with the object\",\"id_type\":[\"tag\"],\"is_filterable\":true,\"name\":\"tnt__tags\",\"oasis\":{\"name\":\"tnt__tags\"},\"ui\":{\"display_name\":\"Tags\",\"placeholder\":\"Add Tags\"}},{\"field_type\":\"timestamp\",\"data_name\":\"tnt__target_close_date\",\"db_name\":\"tnt__target_close_date\",\"is_filterable\":false,\"name\":\"tnt__target_close_date\",\"oasis\":{\"name\":\"tnt__target_close_date\"},\"ui\":{\"display_name\":\"Target Close Date\",\"placeholder\":\"Add Target Close Date\"}},{\"field_type\":\"timestamp\",\"data_name\":\"tnt__target_start_date\",\"db_name\":\"tnt__target_start_date\",\"is_filterable\":false,\"name\":\"tnt__target_start_date\",\"oasis\":{\"name\":\"tnt__target_start_date\"},\"ui\":{\"display_name\":\"Target Start Date\",\"placeholder\":\"Add Target Start Date\"}},{\"supported_filter_ops\":[\"all\",\"any\",\"not_any\",\"empty\",\"not_empty\"],\"field_type\":\"array\",\"base_type\":\"enum\",\"allowed_values\":[\"Agentic\",\"Build\",\"Support\"],\"data_name\":\"tnt__type\",\"db_name\":\"tnt__type\",\"is_filterable\":true,\"name\":\"tnt__type\",\"oasis\":{\"name\":\"tnt__type\"},\"ui\":{\"display_name\":\"Type\",\"placeholder\":\"Type of Implementation\"}},{\"field_type\":\"id\",\"data_name\":\"id\",\"db_name\":\"id\",\"description\":\"ID of the implementation\",\"id_type\":[\"custom_object.implementation\"],\"is_required\":true,\"name\":\"id\",\"oasis\":{\"name\":\"id\"},\"ui\":{\"display_name\":\"ID\"}}],\"type\":\"field_descriptor\"},\"type\":\"default\"}],\"reference_key\":\"implementation_updated_1\",\"ui_metadata\":{\"position\":{\"x\":-6.460777368356759,\"y\":-162.86327977972496}}},{\"description\":\"You can now send personalized emails using this node. Check the [Documentation](https://devrev.ai/docs/automations/send-emails) for usage details and limitations.\",\"input_ports\":[{\"name\":\"input\",\"schema\":{\"field_descriptors\":[{\"field_type\":\"array\",\"base_type\":\"text\",\"data_name\":\"to_emails\",\"db_name\":\"to_emails\",\"description\":\"The email addresses of the recipients\",\"is_required\":true,\"name\":\"to_emails\",\"oasis\":{\"name\":\"to_emails\"},\"ui\":{\"display_name\":\"Recipient Email Addresses\"}},{\"field_type\":\"array\",\"base_type\":\"text\",\"data_name\":\"cc_emails\",\"db_name\":\"cc_emails\",\"description\":\"The email addresses of the CC recipients\",\"is_required\":false,\"name\":\"cc_emails\",\"oasis\":{\"name\":\"cc_emails\"},\"ui\":{\"display_name\":\"CC Recipient Email Addresses\"}},{\"field_type\":\"array\",\"base_type\":\"text\",\"data_name\":\"bcc_emails\",\"db_name\":\"bcc_emails\",\"description\":\"The email addresses of the BCC recipients\",\"is_required\":false,\"name\":\"bcc_emails\",\"oasis\":{\"name\":\"bcc_emails\"},\"ui\":{\"display_name\":\"BCC Recipient Email Addresses\"}},{\"field_type\":\"text\",\"data_name\":\"sender_name\",\"db_name\":\"sender_name\",\"description\":\"The name of the sender\",\"is_required\":false,\"name\":\"sender_name\",\"oasis\":{\"name\":\"sender_name\"},\"ui\":{\"display_name\":\"Sender Name\"}},{\"field_type\":\"text\",\"data_name\":\"reply_to\",\"db_name\":\"reply_to\",\"description\":\"The email address of the reply-to\",\"is_required\":false,\"name\":\"reply_to\",\"oasis\":{\"name\":\"reply_to\"},\"ui\":{\"display_name\":\"Reply-To Email Address\"}},{\"field_type\":\"text\",\"data_name\":\"from_email\",\"db_name\":\"from_email\",\"description\":\"The email address of the sender\",\"is_required\":true,\"name\":\"from_email\",\"oasis\":{\"name\":\"from_email\"},\"ui\":{\"display_name\":\"Sender Email Address\"}},{\"field_type\":\"text\",\"data_name\":\"email_subject\",\"db_name\":\"email_subject\",\"description\":\"The subject of the email\",\"is_required\":true,\"name\":\"email_subject\",\"oasis\":{\"name\":\"email_subject\"},\"ui\":{\"display_name\":\"Email Subject\"}},{\"field_type\":\"text\",\"data_name\":\"email_body\",\"db_name\":\"email_body\",\"description\":\"The body of the email in HTML/text format. Use this field to customize the email body in workflow.\",\"name\":\"email_body\",\"oasis\":{\"name\":\"email_body\"},\"ui\":{\"display_name\":\"Email Body\"}},{\"field_type\":\"text\",\"data_name\":\"template_name\",\"db_name\":\"template_name\",\"description\":\"The name of the email template. Use this field to directly use the email template from Sendgrid.\",\"name\":\"template_name\",\"oasis\":{\"name\":\"template_name\"},\"ui\":{\"display_name\":\"Email Template Name\"}},{\"field_type\":\"text\",\"data_name\":\"fields\",\"db_name\":\"fields\",\"description\":\"The fields to be replaced in the email template. Use this field only when you choose to use the email template from Sendgrid.<Example:field1=value,field2=value>\",\"name\":\"fields\",\"oasis\":{\"name\":\"fields\"},\"ui\":{\"display_name\":\"Fields to Replace in Email Template\"}}],\"type\":\"field_descriptor\"},\"type\":\"default\"}],\"input_values\":[{\"fields\":[{\"name\":\"from_email\",\"value\":{\"type\":\"text_template\",\"value\":\"devrevuteam@devrev.ai\"}},{\"name\":\"email_subject\",\"value\":{\"type\":\"text_template\",\"value\":\"Ready to Transform Your Support Team? Start Here\"}},{\"name\":\"email_body\",\"value\":{\"type\":\"text_template\",\"value\":\"```\\n<p>Hi\\n```\\n\\n{% expr $get('http_2', 'output').body.name %}\\n\\n```\\n!</p>\\n<p><strong>Your team's DevRev enablement journey is ready to launch—and it starts with you.</strong></p>\\n<p>\\nWe've built a structured program designed to take your team from onboarding to mastery. The first step to get started in this journey is inviting your whole team! <strong>Two simple ways to invite your team (instructions at the end)</strong>:\\n\\n<p><strong>Option 1: Invite Through DevRev [Preferred]</strong></p>\\n\\n<p><strong>Option 2: Upload a CSV</strong></p>\\n\\n<p><strong>What your team will experience:</strong><br />\\nYour support agents will follow a guided learning path tailored to their role:\\n</p>\\n<ul>\\n <li>Self-paced foundational courses</li>\\n <li>Live hands-on workshops</li>\\n <li>Community learning with peers</li>\\n <li>Direct access to our product teams</li>\\n</ul>\\n\\n<p> This training path is a key driver of success with DevRev. Teams that complete their assigned training are <strong>1.5× more productive </strong> than those who don’t. </p>\\n<p><strong>Your role:</strong> Get the team invited in the next 5 days. We handle the rest.</p>\\n\\n<p>\\nQuestions? Reply to this email—we're here to help you succeed.\\n</p>\\n\\n<p><strong> Instructions </strong></p>\\n<p><strong>Option 1: Manual User Invitation</strong></p>\\n\\n<p>Use this method to manually invite users directly from the DevRev application instead of uploading a CSV.</p>\\n\\n<p><strong>Steps</strong></p>\\n\\n<ol>\\n <li>Log in to DevRev and go to Settings. Navigate to User Management &gt; Users.</li>\\n <li>Click + Users in the top-right corner. This will open the user invitation flow.</li>\\n <li>Enter the user’s work email address. Assign the user to the appropriate group (for example, Platform Users) and select the relevant license plan (for example, Support-Pro).</li>\\n <li>Click Send Invite.</li>\\n</ol>\\n\\n<p>The user will receive an email invitation with a link to accept and complete onboarding.</p>\\n\\n<p><strong>Notes</strong></p>\\n\\n<ul>\\n <li>Ensure the correct group and license are selected to enable access to the intended learning path.</li>\\n <li>Invitations are sent immediately upon submission.</li>\\n</ul>\\n\\n<p><strong>Option 2: CSV Upload Invitation</strong></p>\\n\\n<p>This file is used to invite users to DevRevU and automatically enroll them into the appropriate learning paths. The information provided determines how users are added to the platform, which enablement journey they are assigned to, and how their learning progress is tracked.</p>\\n\\n<p><strong>Steps</strong></p>\\n\\n<ol>\\n <li>Create a spreadsheet with the following headers: Email Address | First Name | Last Name | Role.</li>\\n <li>Add one user per row with accurate details.</li>\\n <li>Save the file in CSV format.</li>\\n <li>Upload the file to trigger user invitations.</li>\\n</ol>\\n\\n<p><strong>Role Mapping</strong></p>\\n\\n<p>Selecting the correct role ensures users are enrolled in the most relevant learning path.</p>\\n\\n<ul>\\n <li>Support → Support Enablement Path</li>\\n <li>Build → Build Enablement Path</li>\\n <li>Agentic → Agentic / AI Enablement Path</li>\\n</ul>\\n\\n<p><strong>Note</strong></p>\\n\\n<ul>\\n <li>Please use official work email addresses to ensure proper access and tracking.</li>\\n</ul>\\n\\n<p><strong>— Team DevRevU</strong></p>\\n```\"}},{\"name\":\"to_emails\",\"value\":{\"type\":\"list_value\",\"value\":{\"items\":[{\"type\":\"jsonata_expression\",\"value\":\"$append($get('http_2', 'output').body.email, [])\"}]}}}],\"port_name\":\"input\"}],\"name\":\"MAIL TO POC\",\"next_steps\":[{\"next_port_name\":\"input\",\"next_step_reference_key\":\"send_emails_2\",\"port_name\":\"output\"}],\"operation\":{\"namespace\":\"send-emails\",\"slug\":\"send_emails\"},\"output_ports\":[{\"name\":\"output\",\"schema\":{\"field_descriptors\":[{\"field_type\":\"bool\",\"data_name\":\"status\",\"db_name\":\"status\",\"default_value\":false,\"is_required\":true,\"name\":\"status\",\"oasis\":{\"name\":\"status\"},\"ui\":{\"display_name\":\"status\"}}],\"type\":\"field_descriptor\"},\"type\":\"default\"},{\"name\":\"error\",\"schema\":{\"field_descriptors\":[{\"field_type\":\"text\",\"data_name\":\"message\",\"db_name\":\"message\",\"description\":\"Error message with more details about the error\",\"name\":\"message\",\"oasis\":{\"name\":\"message\"},\"ui\":{\"display_name\":\"Error Message\"}},{\"field_type\":\"enum\",\"allowed_values\":[\"bad_request\",\"not_found\",\"internal\"],\"data_name\":\"type\",\"db_name\":\"type\",\"description\":\"Type of the error\",\"name\":\"type\",\"oasis\":{\"name\":\"type\"},\"ui\":{\"display_name\":\"Error Type\"}}],\"type\":\"field_descriptor\"},\"type\":\"error\"}],\"reference_key\":\"send_emails_1\",\"ui_metadata\":{\"position\":{\"x\":-1.4565782872097657,\"y\":490.79408579133656}}},{\"description\":\"You can now send personalized emails using this node. Check the [Documentation](https://devrev.ai/docs/automations/send-emails) for usage details and limitations.\",\"input_ports\":[{\"name\":\"input\",\"schema\":{\"field_descriptors\":[{\"field_type\":\"array\",\"base_type\":\"text\",\"data_name\":\"to_emails\",\"db_name\":\"to_emails\",\"description\":\"The email addresses of the recipients\",\"is_required\":true,\"name\":\"to_emails\",\"oasis\":{\"name\":\"to_emails\"},\"ui\":{\"display_name\":\"Recipient Email Addresses\"}},{\"field_type\":\"array\",\"base_type\":\"text\",\"data_name\":\"cc_emails\",\"db_name\":\"cc_emails\",\"description\":\"The email addresses of the CC recipients\",\"is_required\":false,\"name\":\"cc_emails\",\"oasis\":{\"name\":\"cc_emails\"},\"ui\":{\"display_name\":\"CC Recipient Email Addresses\"}},{\"field_type\":\"array\",\"base_type\":\"text\",\"data_name\":\"bcc_emails\",\"db_name\":\"bcc_emails\",\"description\":\"The email addresses of the BCC recipients\",\"is_required\":false,\"name\":\"bcc_emails\",\"oasis\":{\"name\":\"bcc_emails\"},\"ui\":{\"display_name\":\"BCC Recipient Email Addresses\"}},{\"field_type\":\"text\",\"data_name\":\"sender_name\",\"db_name\":\"sender_name\",\"description\":\"The name of the sender\",\"is_required\":false,\"name\":\"sender_name\",\"oasis\":{\"name\":\"sender_name\"},\"ui\":{\"display_name\":\"Sender Name\"}},{\"field_type\":\"text\",\"data_name\":\"reply_to\",\"db_name\":\"reply_to\",\"description\":\"The email address of the reply-to\",\"is_required\":false,\"name\":\"reply_to\",\"oasis\":{\"name\":\"reply_to\"},\"ui\":{\"display_name\":\"Reply-To Email Address\"}},{\"field_type\":\"text\",\"data_name\":\"from_email\",\"db_name\":\"from_email\",\"description\":\"The email address of the sender\",\"is_required\":true,\"name\":\"from_email\",\"oasis\":{\"name\":\"from_email\"},\"ui\":{\"display_name\":\"Sender Email Address\"}},{\"field_type\":\"text\",\"data_name\":\"email_subject\",\"db_name\":\"email_subject\",\"description\":\"The subject of the email\",\"is_required\":true,\"name\":\"email_subject\",\"oasis\":{\"name\":\"email_subject\"},\"ui\":{\"display_name\":\"Email Subject\"}},{\"field_type\":\"text\",\"data_name\":\"email_body\",\"db_name\":\"email_body\",\"description\":\"The body of the email in HTML/text format. Use this field to customize the email body in workflow.\",\"name\":\"email_body\",\"oasis\":{\"name\":\"email_body\"},\"ui\":{\"display_name\":\"Email Body\"}},{\"field_type\":\"text\",\"data_name\":\"template_name\",\"db_name\":\"template_name\",\"description\":\"The name of the email template. Use this field to directly use the email template from Sendgrid.\",\"name\":\"template_name\",\"oasis\":{\"name\":\"template_name\"},\"ui\":{\"display_name\":\"Email Template Name\"}},{\"field_type\":\"text\",\"data_name\":\"fields\",\"db_name\":\"fields\",\"description\":\"The fields to be replaced in the email template. Use this field only when you choose to use the email template from Sendgrid.<Example:field1=value,field2=value>\",\"name\":\"fields\",\"oasis\":{\"name\":\"fields\"},\"ui\":{\"display_name\":\"Fields to Replace in Email Template\"}}],\"type\":\"field_descriptor\"},\"type\":\"default\"}],\"input_values\":[{\"fields\":[{\"name\":\"email_subject\",\"value\":{\"type\":\"text_template\",\"value\":\"Email 1 already sent!\"}},{\"name\":\"from_email\",\"value\":{\"type\":\"text_template\",\"value\":\"devrevuteam@devrev.ai\"}},{\"name\":\"email_body\",\"value\":{\"type\":\"text_template\",\"value\":\"```\\n<p><strong>Hi DevRevU Team this is just a reminder that we have sent the first email of the enablement journey. The second email will trigger in the next 3 days!</p></strong>\\n```\"}},{\"name\":\"to_emails\",\"value\":{\"type\":\"list_value\",\"value\":{\"items\":[{\"type\":\"literal\",\"value\":[\"devrevuteam@devrev.ai\"]}]}}}],\"port_name\":\"input\"}],\"name\":\"Alert to DevRevU team\",\"next_steps\":[{\"next_port_name\":\"input\",\"next_step_reference_key\":\"sleep_for_1\",\"port_name\":\"output\"}],\"operation\":{\"namespace\":\"send-emails\",\"slug\":\"send_emails\"},\"output_ports\":[{\"name\":\"output\",\"schema\":{\"field_descriptors\":[{\"field_type\":\"bool\",\"data_name\":\"status\",\"db_name\":\"status\",\"default_value\":false,\"is_required\":true,\"name\":\"status\",\"oasis\":{\"name\":\"status\"},\"ui\":{\"display_name\":\"status\"}}],\"type\":\"field_descriptor\"},\"type\":\"default\"},{\"name\":\"error\",\"schema\":{\"field_descriptors\":[{\"field_type\":\"text\",\"data_name\":\"message\",\"db_name\":\"message\",\"description\":\"Error message with more details about the error\",\"name\":\"message\",\"oasis\":{\"name\":\"message\"},\"ui\":{\"display_name\":\"Error Message\"}},{\"field_type\":\"enum\",\"allowed_values\":[\"bad_request\",\"not_found\",\"internal\"],\"data_name\":\"type\",\"db_name\":\"type\",\"description\":\"Type of the error\",\"name\":\"type\",\"oasis\":{\"name\":\"type\"},\"ui\":{\"display_name\":\"Error Type\"}}],\"type\":\"field_descriptor\"},\"type\":\"error\"}],\"reference_key\":\"send_emails_2\",\"ui_metadata\":{\"position\":{\"x\":2.3774874981566256,\"y\":691.232172475374}}},{\"description\":\"You can now send personalized emails using this node. Check the [Documentation](https://devrev.ai/docs/automations/send-emails) for usage details and limitations.\",\"input_ports\":[{\"name\":\"input\",\"schema\":{\"field_descriptors\":[{\"field_type\":\"array\",\"base_type\":\"text\",\"data_name\":\"to_emails\",\"db_name\":\"to_emails\",\"description\":\"The email addresses of the recipients\",\"is_required\":true,\"name\":\"to_emails\",\"oasis\":{\"name\":\"to_emails\"},\"ui\":{\"display_name\":\"Recipient Email Addresses\"}},{\"field_type\":\"array\",\"base_type\":\"text\",\"data_name\":\"cc_emails\",\"db_name\":\"cc_emails\",\"description\":\"The email addresses of the CC recipients\",\"is_required\":false,\"name\":\"cc_emails\",\"oasis\":{\"name\":\"cc_emails\"},\"ui\":{\"display_name\":\"CC Recipient Email Addresses\"}},{\"field_type\":\"array\",\"base_type\":\"text\",\"data_name\":\"bcc_emails\",\"db_name\":\"bcc_emails\",\"description\":\"The email addresses of the BCC recipients\",\"is_required\":false,\"name\":\"bcc_emails\",\"oasis\":{\"name\":\"bcc_emails\"},\"ui\":{\"display_name\":\"BCC Recipient Email Addresses\"}},{\"field_type\":\"text\",\"data_name\":\"sender_name\",\"db_name\":\"sender_name\",\"description\":\"The name of the sender\",\"is_required\":false,\"name\":\"sender_name\",\"oasis\":{\"name\":\"sender_name\"},\"ui\":{\"display_name\":\"Sender Name\"}},{\"field_type\":\"text\",\"data_name\":\"reply_to\",\"db_name\":\"reply_to\",\"description\":\"The email address of the reply-to\",\"is_required\":false,\"name\":\"reply_to\",\"oasis\":{\"name\":\"reply_to\"},\"ui\":{\"display_name\":\"Reply-To Email Address\"}},{\"field_type\":\"text\",\"data_name\":\"from_email\",\"db_name\":\"from_email\",\"description\":\"The email address of the sender\",\"is_required\":true,\"name\":\"from_email\",\"oasis\":{\"name\":\"from_email\"},\"ui\":{\"display_name\":\"Sender Email Address\"}},{\"field_type\":\"text\",\"data_name\":\"email_subject\",\"db_name\":\"email_subject\",\"description\":\"The subject of the email\",\"is_required\":true,\"name\":\"email_subject\",\"oasis\":{\"name\":\"email_subject\"},\"ui\":{\"display_name\":\"Email Subject\"}},{\"field_type\":\"text\",\"data_name\":\"email_body\",\"db_name\":\"email_body\",\"description\":\"The body of the email in HTML/text format. Use this field to customize the email body in workflow.\",\"name\":\"email_body\",\"oasis\":{\"name\":\"email_body\"},\"ui\":{\"display_name\":\"Email Body\"}},{\"field_type\":\"text\",\"data_name\":\"template_name\",\"db_name\":\"template_name\",\"description\":\"The name of the email template. Use this field to directly use the email template from Sendgrid.\",\"name\":\"template_name\",\"oasis\":{\"name\":\"template_name\"},\"ui\":{\"display_name\":\"Email Template Name\"}},{\"field_type\":\"text\",\"data_name\":\"fields\",\"db_name\":\"fields\",\"description\":\"The fields to be replaced in the email template. Use this field only when you choose to use the email template from Sendgrid.<Example:field1=value,field2=value>\",\"name\":\"fields\",\"oasis\":{\"name\":\"fields\"},\"ui\":{\"display_name\":\"Fields to Replace in Email Template\"}}],\"type\":\"field_descriptor\"},\"type\":\"default\"}],\"input_values\":[{\"fields\":[{\"name\":\"email_subject\",\"value\":{\"type\":\"text_template\",\"value\":\"Don't Miss This: Invite Your Team to DevRev Enablement Today\"}},{\"name\":\"email_body\",\"value\":{\"type\":\"text_template\",\"value\":\"```\\n<p>Hi \\n```\\n\\n{% expr $get('http_2', 'output').body.name %}\\n\\n```\\n!</p>\\n<p>\\nQuick check-in. Have you invited your team to the DevRev enablement program yet? Remember, the training path is a key driver of success with DevRev. Teams that complete their assigned training are <strong> 1.5× more productive </strong> than those who don’t.\\n</p>\\n<p>\\nIf not, now's the time. The sooner they're in, the sooner they see results.\\n</p>\\n<p><strong>Two quick options (instructions at the end):</strong></p>\\n<p><strong>Option 1: Invite Through DevRev [Preferred]</strong></p>\\n<p><strong>Option 2: Upload a CSV</strong></p>\\n\\n<p>\\nThis takes less than 10 minutes, and your team will be ready to start their learning journey immediately.\\n</p>\\n<p>\\nQuestions? Let us know.\\n</p>\\n<p><strong> Instructions </strong></p>\\n<p><strong>Option 1: Manual User Invitation</strong></p>\\n\\n<p>Use this method to manually invite users directly from the DevRev application instead of uploading a CSV.</p>\\n\\n<p><strong>Steps</strong></p>\\n\\n<ol>\\n <li>Log in to DevRev and go to Settings. Navigate to User Management &gt; Users.</li>\\n <li>Click + Users in the top-right corner. This will open the user invitation flow.</li>\\n <li>Enter the user’s work email address. Assign the user to the appropriate group (for example, Platform Users) and select the relevant license plan (for example, Support-Pro).</li>\\n <li>Click Send Invite.</li>\\n</ol>\\n\\n<p>The user will receive an email invitation with a link to accept and complete onboarding.</p>\\n\\n<p><strong>Notes</strong></p>\\n\\n<ul>\\n <li>Ensure the correct group and license are selected to enable access to the intended learning path.</li>\\n <li>Invitations are sent immediately upon submission.</li>\\n</ul>\\n\\n<p><strong>Option 2: CSV Upload Invitation</strong></p>\\n\\n<p>This file is used to invite users to DevRevU and automatically enroll them into the appropriate learning paths. The information provided determines how users are added to the platform, which enablement journey they are assigned to, and how their learning progress is tracked.</p>\\n\\n<p><strong>Steps</strong></p>\\n\\n<ol>\\n <li>Create a spreadsheet with the following headers: Email Address | First Name | Last Name | Role.</li>\\n <li>Add one user per row with accurate details.</li>\\n <li>Save the file in CSV format.</li>\\n <li>Upload the file to trigger user invitations.</li>\\n</ol>\\n\\n<p><strong>Role Mapping</strong></p>\\n\\n<p>Selecting the correct role ensures users are enrolled in the most relevant learning path.</p>\\n\\n<ul>\\n <li>Support → Support Enablement Path</li>\\n <li>Build → Build Enablement Path</li>\\n <li>Agentic → Agentic / AI Enablement Path</li>\\n</ul>\\n\\n<p><strong>Note</strong></p>\\n\\n<ul>\\n <li>Please use official work email addresses to ensure proper access and tracking.</li>\\n</ul>\\n<p><strong>— Team DevRevU</strong></p>\\n```\"}},{\"name\":\"from_email\",\"value\":{\"type\":\"text_template\",\"value\":\"devrevuteam@devrev.ai\"}},{\"name\":\"to_emails\",\"value\":{\"type\":\"list_value\",\"value\":{\"items\":[{\"type\":\"jsonata_expression\",\"value\":\"$append($get('http_2', 'output').body.email, [])\"}]}}}],\"port_name\":\"input\"}],\"name\":\"POC Nudge\",\"operation\":{\"namespace\":\"send-emails\",\"slug\":\"send_emails\"},\"output_ports\":[{\"name\":\"output\",\"schema\":{\"field_descriptors\":[{\"field_type\":\"bool\",\"data_name\":\"status\",\"db_name\":\"status\",\"default_value\":false,\"is_required\":true,\"name\":\"status\",\"oasis\":{\"name\":\"status\"},\"ui\":{\"display_name\":\"status\"}}],\"type\":\"field_descriptor\"},\"type\":\"default\"},{\"name\":\"error\",\"schema\":{\"field_descriptors\":[{\"field_type\":\"text\",\"data_name\":\"message\",\"db_name\":\"message\",\"description\":\"Error message with more details about the error\",\"name\":\"message\",\"oasis\":{\"name\":\"message\"},\"ui\":{\"display_name\":\"Error Message\"}},{\"field_type\":\"enum\",\"allowed_values\":[\"bad_request\",\"not_found\",\"internal\"],\"data_name\":\"type\",\"db_name\":\"type\",\"description\":\"Type of the error\",\"name\":\"type\",\"oasis\":{\"name\":\"type\"},\"ui\":{\"display_name\":\"Error Type\"}}],\"type\":\"field_descriptor\"},\"type\":\"error\"}],\"reference_key\":\"send_emails_5\",\"ui_metadata\":{\"position\":{\"x\":-15.318277364033378,\"y\":1052.2802364904528}}},{\"description\":\"Pause the workflow for a specified duration\",\"input_ports\":[{\"name\":\"input\",\"schema\":{\"field_descriptors\":[{\"field_type\":\"composite\",\"composite_type\":\"devrev:duration\",\"data_name\":\"duration\",\"db_name\":\"duration\",\"description\":\"Duration to sleep for\",\"is_required\":true,\"name\":\"duration\",\"oasis\":{\"name\":\"duration\"}}],\"type\":\"field_descriptor\"},\"type\":\"default\"},{\"name\":\"callback\",\"schema\":{\"type\":\"field_descriptor\"},\"type\":\"system\"}],\"input_values\":[{\"fields\":[{\"name\":\"duration\",\"value\":{\"type\":\"literal\",\"value\":{\"seconds\":30}}}],\"port_name\":\"input\"}],\"name\":\"Sleep For\",\"next_steps\":[{\"next_port_name\":\"input\",\"next_step_reference_key\":\"send_emails_5\",\"port_name\":\"output\"}],\"operation\":{\"namespace\":\"devrev\",\"slug\":\"sleep_for\"},\"output_ports\":[{\"name\":\"output\",\"schema\":{\"type\":\"field_descriptor\"},\"type\":\"default\"},{\"name\":\"error\",\"schema\":{\"field_descriptors\":[{\"field_type\":\"text\",\"data_name\":\"message\",\"db_name\":\"message\",\"description\":\"Error message with more details about the error\",\"name\":\"message\",\"oasis\":{\"name\":\"message\"},\"ui\":{\"display_name\":\"Error Message\"}},{\"field_type\":\"enum\",\"allowed_values\":[\"bad_request\",\"not_found\",\"internal\"],\"data_name\":\"type\",\"db_name\":\"type\",\"description\":\"Type of the error\",\"name\":\"type\",\"oasis\":{\"name\":\"type\"},\"ui\":{\"display_name\":\"Error Type\"}}],\"type\":\"field_descriptor\"},\"type\":\"error\"}],\"reference_key\":\"sleep_for_1\",\"ui_metadata\":{\"position\":{\"x\":-3.354986156504026,\"y\":872.8368229567986}}}],\"title\":\"DevRevU - Enablement Journey - POC emails\"}","templateVersion":"2.0.0"}