@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,38 @@
1
+ # Blocking Operations (2)
2
+
3
+ > Pause/wait operations that suspend a workflow until a condition or duration is met.
4
+
5
+
6
+ ## 1. Sleep For
7
+
8
+ - **Slug:** `sleep_for`
9
+ - **Namespace:** `devrev`
10
+ - **ID:** `operation-devrev.sleep_for`
11
+ - **Tags:** HIPAA
12
+
13
+ Pause the workflow for a specified duration
14
+
15
+ ### Input (`input`)
16
+
17
+ - `duration` (composite) **(required)** — Duration to sleep for
18
+
19
+ ---
20
+
21
+ ## 2. Sleep Until
22
+
23
+ - **Slug:** `sleep_until`
24
+ - **Namespace:** `devrev`
25
+ - **ID:** `operation-devrev.sleep_until`
26
+ - **Tags:** HIPAA
27
+
28
+ Pause the workflow until a specific date and time. You can also adjust this time by adding or subtracting some duration. Use this to delay actions, like sending reminders, until the right moment. If the time is in the past, the workflow will resume immediately.
29
+
30
+ ### Input (`input`)
31
+
32
+ - `sleep_until` (timestamp) **(required)** — Select the time when the workflow should resume
33
+ - `offset_duration` (composite) — Choose if you want to add or subtract extra time from the date and time you picked
34
+ - `add_or_subtract` (enum) **(required)** — Choose whether to add or subtract the duration from the specified timestamp
35
+ - Allowed: `add`, `subtract`
36
+ - `duration` (composite) **(required)** — Duration of time to add or subtract
37
+
38
+ ---
@@ -0,0 +1,108 @@
1
+ # Control Operations (8)
2
+
3
+ > Flow-control operations that route or branch workflow execution.
4
+
5
+
6
+ ## 1. AI Agent Skill
7
+
8
+ - **Slug:** `ai_agent_skill`
9
+ - **Namespace:** `devrev`
10
+ - **ID:** `operation-devrev.ai_agent_skill`
11
+ - **Tags:** HIPAA
12
+ - **Scopes:** `ai_agent:execute`
13
+
14
+ Executes custom workflow logic for AI agents
15
+
16
+ ### Input (`input`)
17
+
18
+ - `agent_session_id` (id) **(required)** — The agent session identifier
19
+ - ID types: `ai_agent_session`
20
+ - `skill_call_id` (text) **(required)** — The skill call identifier
21
+ - `skill_name` (text) **(required)** — The name of the skill being executed
22
+
23
+ ---
24
+
25
+ ## 2. For Each
26
+
27
+ - **Slug:** `for_each`
28
+ - **Namespace:** `devrev`
29
+ - **ID:** `operation-devrev.for_each`
30
+ - **Tags:** HIPAA
31
+
32
+ Iterate over a list of items
33
+
34
+ ---
35
+
36
+ ## 3. Go Back
37
+
38
+ - **Slug:** `go_back`
39
+ - **Namespace:** `devrev`
40
+ - **ID:** `operation-devrev.go_back`
41
+ - **Tags:** HIPAA
42
+
43
+ Go back to the previous step in the workflow
44
+
45
+ ---
46
+
47
+ ## 4. If Else
48
+
49
+ - **Slug:** `if_else`
50
+ - **Namespace:** `devrev`
51
+ - **ID:** `operation-devrev.if_else`
52
+ - **Tags:** HIPAA
53
+
54
+ Branch the workflow based on a condition
55
+
56
+ ### Input (`input`)
57
+
58
+ - `condition` (struct) **(required)** — Condition to evaluate
59
+
60
+ ---
61
+
62
+ ## 5. Initialize Variable
63
+
64
+ - **Slug:** `init_variable`
65
+ - **Namespace:** `devrev`
66
+ - **ID:** `operation-devrev.init_variable`
67
+ - **Tags:** HIPAA
68
+
69
+ Initializes a variable of a type
70
+
71
+ ---
72
+
73
+ ## 6. Router
74
+
75
+ - **Slug:** `router`
76
+ - **Namespace:** `devrev`
77
+ - **ID:** `operation-devrev.router`
78
+ - **Tags:** HIPAA, BETA
79
+
80
+ Route workflow into parallel paths, executing only the routes whose conditions are met
81
+
82
+ ---
83
+
84
+ ## 7. Set Variable
85
+
86
+ - **Slug:** `set_variable`
87
+ - **Namespace:** `devrev`
88
+ - **ID:** `operation-devrev.set_variable`
89
+ - **Tags:** HIPAA
90
+
91
+ Sets a variable with the given value
92
+
93
+ ---
94
+
95
+ ## 8. While
96
+
97
+ - **Slug:** `while`
98
+ - **Namespace:** `devrev`
99
+ - **ID:** `operation-devrev.while`
100
+ - **Tags:** HIPAA
101
+
102
+ Executes a block of steps while a condition is true. Maximum iterations of 1000.
103
+
104
+ ### Output (`block_start`)
105
+
106
+ - `iteration_number` (int) — The current iteration number of the loop starting from 1
107
+
108
+ ---
@@ -0,0 +1,166 @@
1
+ # Operation Schema Index
2
+
3
+ > 130 operations with resolved schemas.
4
+
5
+ ## Field Types Reference
6
+
7
+ | Type | Description |
8
+ |------|-------------|
9
+ | `text` | String/text value |
10
+ | `bool` | Boolean (true/false) |
11
+ | `int` | Integer number |
12
+ | `double` | Float/double number |
13
+ | `timestamp` | ISO 8601 timestamp |
14
+ | `id` | DevRev object ID (e.g., `don:core:...`) |
15
+ | `[]id` | Array of IDs |
16
+ | `enum` | Enumeration value |
17
+ | `[]enum` | Array of enum values |
18
+ | `composite` | Nested object (see composite_schemas) |
19
+ | `[]composite` | Array of nested objects |
20
+ | `rich_text` | Rich text content |
21
+ | `json` | Arbitrary JSON |
22
+
23
+ ## Triggers (40)
24
+
25
+ - [`account_created`](schemas/account_created.md)
26
+ - [`account_updated`](schemas/account_updated.md)
27
+ - [`airdrop_sync_run_started`](schemas/airdrop_sync_run_started.md)
28
+ - [`airdrop_sync_run_status_updated`](schemas/airdrop_sync_run_status_updated.md)
29
+ - [`article_created`](schemas/article_created.md)
30
+ - [`article_updated`](schemas/article_updated.md)
31
+ - [`contact_created`](schemas/contact_created.md)
32
+ - [`contact_updated`](schemas/contact_updated.md)
33
+ - [`conversation_created`](schemas/conversation_created.md)
34
+ - [`conversation_sla_tracker_updated`](schemas/conversation_sla_tracker_updated.md)
35
+ - [`conversation_updated`](schemas/conversation_updated.md)
36
+ - [`csat_response_received`](schemas/csat_response_received.md)
37
+ - [`dev_user_created`](schemas/dev_user_created.md)
38
+ - [`dev_user_updated`](schemas/dev_user_updated.md)
39
+ - [`enhancement_created`](schemas/enhancement_created.md)
40
+ - [`enhancement_updated`](schemas/enhancement_updated.md)
41
+ - [`feature_created`](schemas/feature_created.md)
42
+ - [`incident_created`](schemas/incident_created.md)
43
+ - [`incident_updated`](schemas/incident_updated.md)
44
+ - [`invoice_created`](schemas/invoice_created.md)
45
+ - [`invoice_updated`](schemas/invoice_updated.md)
46
+ - [`issue_created`](schemas/issue_created.md)
47
+ - [`issue_sla_tracker_updated`](schemas/issue_sla_tracker_updated.md)
48
+ - [`issue_updated`](schemas/issue_updated.md)
49
+ - [`manual_trigger`](schemas/manual_trigger.md)
50
+ - [`meeting_created`](schemas/meeting_created.md)
51
+ - [`meeting_updated`](schemas/meeting_updated.md)
52
+ - [`opportunity_created`](schemas/opportunity_created.md)
53
+ - [`opportunity_updated`](schemas/opportunity_updated.md)
54
+ - [`question_answer_created`](schemas/question_answer_created.md)
55
+ - [`question_answer_updated`](schemas/question_answer_updated.md)
56
+ - [`sprint_updated`](schemas/sprint_updated.md)
57
+ - [`task_updated`](schemas/task_updated.md)
58
+ - [`ticket_created`](schemas/ticket_created.md)
59
+ - [`ticket_sla_tracker_updated`](schemas/ticket_sla_tracker_updated.md)
60
+ - [`ticket_updated`](schemas/ticket_updated.md)
61
+ - [`timeline_comment_created`](schemas/timeline_comment_created.md)
62
+ - [`widget_created`](schemas/widget_created.md)
63
+ - [`widget_updated`](schemas/widget_updated.md)
64
+ - [`workspace_created`](schemas/workspace_created.md)
65
+
66
+ ## Actions (64)
67
+
68
+ - [`create_account`](schemas/create_account.md)
69
+ - [`create_article`](schemas/create_article.md)
70
+ - [`create_brand`](schemas/create_brand.md)
71
+ - [`create_contact`](schemas/create_contact.md)
72
+ - [`create_dm`](schemas/create_dm.md)
73
+ - [`create_enhancement`](schemas/create_enhancement.md)
74
+ - [`create_incident`](schemas/create_incident.md)
75
+ - [`create_issue`](schemas/create_issue.md)
76
+ - [`create_meeting`](schemas/create_meeting.md)
77
+ - [`create_opportunity`](schemas/create_opportunity.md)
78
+ - [`create_ticket`](schemas/create_ticket.md)
79
+ - [`get_account`](schemas/get_account.md)
80
+ - [`get_airdrop_sync_unit`](schemas/get_airdrop_sync_unit.md)
81
+ - [`get_brand`](schemas/get_brand.md)
82
+ - [`get_complete_enhancement_details`](schemas/get_complete_enhancement_details.md)
83
+ - [`get_conversation`](schemas/get_conversation.md)
84
+ - [`get_customer`](schemas/get_customer.md)
85
+ - [`get_enhancement`](schemas/get_enhancement.md)
86
+ - [`get_feature`](schemas/get_feature.md)
87
+ - [`get_incident`](schemas/get_incident.md)
88
+ - [`get_issue`](schemas/get_issue.md)
89
+ - [`get_kg_schema`](schemas/get_kg_schema.md)
90
+ - [`get_meeting`](schemas/get_meeting.md)
91
+ - [`get_metric_trackers`](schemas/get_metric_trackers.md)
92
+ - [`get_node_schema`](schemas/get_node_schema.md)
93
+ - [`get_opportunity`](schemas/get_opportunity.md)
94
+ - [`get_org_user`](schemas/get_org_user.md)
95
+ - [`get_org_user_preference`](schemas/get_org_user_preference.md)
96
+ - [`get_part`](schemas/get_part.md)
97
+ - [`get_self`](schemas/get_self.md)
98
+ - [`get_session_details`](schemas/get_session_details.md)
99
+ - [`get_sprint_board`](schemas/get_sprint_board.md)
100
+ - [`get_ticket`](schemas/get_ticket.md)
101
+ - [`get_workspace`](schemas/get_workspace.md)
102
+ - [`link_incident_with_issue`](schemas/link_incident_with_issue.md)
103
+ - [`link_ticket_with_issue`](schemas/link_ticket_with_issue.md)
104
+ - [`list_enhancements`](schemas/list_enhancements.md)
105
+ - [`list_issues`](schemas/list_issues.md)
106
+ - [`list_sessions`](schemas/list_sessions.md)
107
+ - [`list_sprint`](schemas/list_sprint.md)
108
+ - [`list_web_sessions`](schemas/list_web_sessions.md)
109
+ - [`loop_over_accounts`](schemas/loop_over_accounts.md)
110
+ - [`loop_over_articles`](schemas/loop_over_articles.md)
111
+ - [`loop_over_customers`](schemas/loop_over_customers.md)
112
+ - [`loop_over_dev_users`](schemas/loop_over_dev_users.md)
113
+ - [`loop_over_enhancements`](schemas/loop_over_enhancements.md)
114
+ - [`loop_over_incidents`](schemas/loop_over_incidents.md)
115
+ - [`loop_over_issues`](schemas/loop_over_issues.md)
116
+ - [`loop_over_meetings`](schemas/loop_over_meetings.md)
117
+ - [`loop_over_opportunity`](schemas/loop_over_opportunity.md)
118
+ - [`loop_over_sprints`](schemas/loop_over_sprints.md)
119
+ - [`loop_over_tickets`](schemas/loop_over_tickets.md)
120
+ - [`update_account`](schemas/update_account.md)
121
+ - [`update_article`](schemas/update_article.md)
122
+ - [`update_brand`](schemas/update_brand.md)
123
+ - [`update_contact`](schemas/update_contact.md)
124
+ - [`update_conversation`](schemas/update_conversation.md)
125
+ - [`update_enhancement`](schemas/update_enhancement.md)
126
+ - [`update_incident`](schemas/update_incident.md)
127
+ - [`update_issue`](schemas/update_issue.md)
128
+ - [`update_meeting`](schemas/update_meeting.md)
129
+ - [`update_opportunity`](schemas/update_opportunity.md)
130
+ - [`update_question_answer`](schemas/update_question_answer.md)
131
+ - [`update_ticket`](schemas/update_ticket.md)
132
+
133
+ ## Controls (7)
134
+
135
+ - [`for_each`](schemas/for_each.md)
136
+ - [`go_back`](schemas/go_back.md)
137
+ - [`if_else`](schemas/if_else.md)
138
+ - [`init_variable`](schemas/init_variable.md)
139
+ - [`router`](schemas/router.md)
140
+ - [`set_variable`](schemas/set_variable.md)
141
+ - [`while`](schemas/while.md)
142
+
143
+ ## Blockings (2)
144
+
145
+ - [`sleep_for`](schemas/sleep_for.md)
146
+ - [`sleep_until`](schemas/sleep_until.md)
147
+
148
+ ## Other (17)
149
+
150
+ - [`add_comment`](schemas/add_comment.md)
151
+ - [`ask_ai`](schemas/ask_ai.md)
152
+ - [`classify_object`](schemas/classify_object.md)
153
+ - [`convert_conversation_to_ticket`](schemas/convert_conversation_to_ticket.md)
154
+ - [`evaluate_sentiment`](schemas/evaluate_sentiment.md)
155
+ - [`execute_metric_action`](schemas/execute_metric_action.md)
156
+ - [`http`](schemas/http.md)
157
+ - [`hybrid_search`](schemas/hybrid_search.md)
158
+ - [`invoke_code`](schemas/invoke_code.md)
159
+ - [`oasis_sql_execute`](schemas/oasis_sql_execute.md)
160
+ - [`pick_user`](schemas/pick_user.md)
161
+ - [`recall_chats`](schemas/recall_chats.md)
162
+ - [`send_notification`](schemas/send_notification.md)
163
+ - [`suggest_part`](schemas/suggest_part.md)
164
+ - [`test_example`](schemas/test_example.md)
165
+ - [`watch_ticket_for_updates`](schemas/watch_ticket_for_updates.md)
166
+ - [`web_search`](schemas/web_search.md)
@@ -0,0 +1,58 @@
1
+ # `account_created` — Schema Reference
2
+
3
+ ## Input Port: `input`
4
+
5
+ _No input fields (trigger or system-provided)._
6
+
7
+ ## Output Port: `output`
8
+
9
+ - **`created_by`** (`composite`)
10
+ - Composite: `_gen:created_by`
11
+ - **`display_id`** (`text`) — Human-readable object ID unique to the Dev organization.
12
+ - **`display_name`** (`text`) — The user's display name. The name is non-unique and mutable.
13
+ - **`email`** (`text`) — Email address of the user.
14
+ - **`full_name`** (`text`) — Full name of the user.
15
+ - **`state`** (`enum`) — State of the user.
16
+ - Allowed: `active`, `deactivated`, `deleted`, `locked`, `shadow`, `unassigned`
17
+ - **`type`** (`enum`) **REQUIRED**
18
+ - Allowed: `dev_user`, `rev_user`, `service_account`, `sys_user`
19
+ - **`id`** (`id`) **REQUIRED** — Globally unique object ID.
20
+ - ID type: `devu`, `sysu`, `svcacc`
21
+ - **`created_date`** (`timestamp`) — Timestamp when the object was created.
22
+ - **`description`** (`text`) — Description of the corresponding Account.
23
+ - **`display_id`** (`text`) — Human-readable object ID unique to the Dev organization.
24
+ - **`display_name`** (`text`) — Name of the Organization.
25
+ - **`domains`** (`[]text`) — Company's domain names. Example - 'devrev.ai'.
26
+ - **`external_refs`** (`[]text`) — External refs are unique identifiers from your customer system of records, stored as a list.
27
+ - **`modified_by`** (`composite`)
28
+ - Composite: `_gen:modified_by`
29
+ - **`display_id`** (`text`) — Human-readable object ID unique to the Dev organization.
30
+ - **`display_name`** (`text`) — The user's display name. The name is non-unique and mutable.
31
+ - **`display_picture`** (`composite`)
32
+ - Composite: `_gen:display_picture`
33
+ - **`email`** (`text`) — Email address of the user.
34
+ - **`full_name`** (`text`) — Full name of the user.
35
+ - **`state`** (`enum`) — State of the user.
36
+ - Allowed: `active`, `deactivated`, `deleted`, `locked`, `shadow`, `unassigned`
37
+ - **`type`** (`enum`) **REQUIRED**
38
+ - Allowed: `dev_user`, `rev_user`, `service_account`, `sys_user`
39
+ - **`id`** (`id`) **REQUIRED** — Globally unique object ID.
40
+ - ID type: `devu`, `sysu`, `svcacc`
41
+ - **`modified_date`** (`timestamp`) — Timestamp when the object was last modified.
42
+ - **`owned_by`** (`[]composite`) **REQUIRED**
43
+ - Composite: `_gen:user-summary`
44
+ - **`display_id`** (`text`) — Human-readable object ID unique to the Dev organization.
45
+ - **`display_name`** (`text`) — The user's display name. The name is non-unique and mutable.
46
+ - **`display_picture`** (`composite`)
47
+ - Composite: `_gen:display_picture`
48
+ - **`email`** (`text`) — Email address of the user.
49
+ - **`full_name`** (`text`) — Full name of the user.
50
+ - **`state`** (`enum`) — State of the user.
51
+ - Allowed: `active`, `deactivated`, `deleted`, `locked`, `shadow`, `unassigned`
52
+ - **`type`** (`enum`) **REQUIRED**
53
+ - Allowed: `dev_user`, `rev_user`, `service_account`, `sys_user`
54
+ - **`id`** (`id`) **REQUIRED** — Globally unique object ID.
55
+ - ID type: `devu`, `sysu`, `svcacc`
56
+ - **`tier`** (`text`) — The Tier of the corresponding Account.
57
+ - **`id`** (`id`) **REQUIRED** — Globally unique object ID.
58
+ - ID type: `account`
@@ -0,0 +1,73 @@
1
+ # `account_updated` — Schema Reference
2
+
3
+ ## Input Port: `input`
4
+
5
+ - **`fields_to_watch`** (`[]enum`) **REQUIRED** — Fields to watch for changes. The trigger will only be fired if any of these fields are updated.
6
+ - Allowed: `description`, `display_name`, `domains`, `external_refs`, `owned_by`, `tags`, `tier`
7
+
8
+ ## Output Port: `output`
9
+
10
+ - **`created_by`** (`composite`)
11
+ - Composite: `_gen:created_by`
12
+ - **`display_id`** (`text`) — Human-readable object ID unique to the Dev organization.
13
+ - **`display_name`** (`text`) — The user's display name. The name is non-unique and mutable.
14
+ - **`email`** (`text`) — Email address of the user.
15
+ - **`full_name`** (`text`) — Full name of the user.
16
+ - **`state`** (`enum`) — State of the user.
17
+ - Allowed: `active`, `deactivated`, `deleted`, `locked`, `shadow`, `unassigned`
18
+ - **`type`** (`enum`) **REQUIRED**
19
+ - Allowed: `dev_user`, `rev_user`, `service_account`, `sys_user`
20
+ - **`id`** (`id`) **REQUIRED** — Globally unique object ID.
21
+ - ID type: `devu`, `sysu`, `svcacc`
22
+ - **`created_date`** (`timestamp`) — Timestamp when the object was created.
23
+ - **`description`** (`text`) — Description of the corresponding Account.
24
+ - **`display_id`** (`text`) — Human-readable object ID unique to the Dev organization.
25
+ - **`display_name`** (`text`) — Name of the Organization.
26
+ - **`domains`** (`[]text`) — Company's domain names. Example - 'devrev.ai'.
27
+ - **`external_refs`** (`[]text`) — External refs are unique identifiers from your customer system of records, stored as a list.
28
+ - **`modified_by`** (`composite`)
29
+ - Composite: `_gen:modified_by`
30
+ - **`display_id`** (`text`) — Human-readable object ID unique to the Dev organization.
31
+ - **`display_name`** (`text`) — The user's display name. The name is non-unique and mutable.
32
+ - **`display_picture`** (`composite`)
33
+ - Composite: `_gen:display_picture`
34
+ - **`email`** (`text`) — Email address of the user.
35
+ - **`full_name`** (`text`) — Full name of the user.
36
+ - **`state`** (`enum`) — State of the user.
37
+ - Allowed: `active`, `deactivated`, `deleted`, `locked`, `shadow`, `unassigned`
38
+ - **`type`** (`enum`) **REQUIRED**
39
+ - Allowed: `dev_user`, `rev_user`, `service_account`, `sys_user`
40
+ - **`id`** (`id`) **REQUIRED** — Globally unique object ID.
41
+ - ID type: `devu`, `sysu`, `svcacc`
42
+ - **`modified_date`** (`timestamp`) — Timestamp when the object was last modified.
43
+ - **`owned_by`** (`[]composite`) **REQUIRED**
44
+ - Composite: `_gen:user-summary`
45
+ - **`tags`** (`[]composite`) — Tags associated with an object.
46
+ - Composite: `_gen:tags`
47
+ - **`tag`** (`composite`)
48
+ - Composite: `_gen:tag`
49
+ - **`old_account`** (`composite`) — Old account object
50
+ - Composite: `_gen:implicit:account`
51
+ - **`created_by`** (`composite`)
52
+ - Composite: `_gen:created_by`
53
+ - **`created_date`** (`timestamp`) — Timestamp when the object was created.
54
+ - **`description`** (`text`) — Description of the corresponding Account.
55
+ - **`display_id`** (`text`) — Human-readable object ID unique to the Dev organization.
56
+ - **`display_name`** (`text`) — Name of the Organization.
57
+ - **`domains`** (`[]text`) — Company's domain names. Example - 'devrev.ai'.
58
+ - **`external_refs`** (`[]text`) — External refs are unique identifiers from your customer system of records, stored as a list.
59
+ - **`modified_by`** (`composite`)
60
+ - Composite: `_gen:modified_by`
61
+ - **`modified_date`** (`timestamp`) — Timestamp when the object was last modified.
62
+ - **`owned_by`** (`[]composite`) **REQUIRED**
63
+ - Composite: `_gen:user-summary`
64
+ - **`tags`** (`[]composite`) — Tags associated with an object.
65
+ - Composite: `_gen:tags`
66
+ - **`id`** (`id`) **REQUIRED** — Globally unique object ID.
67
+ - ID type: `account`
68
+ - **`tier`** (`enum`) — The Tier of the corresponding Account.
69
+ - Allowed: `tier_1`, `tier_2`, `tier_3`
70
+ - **`id`** (`id`) **REQUIRED** — Globally unique object ID.
71
+ - ID type: `account`
72
+ - **`tier`** (`enum`) — The Tier of the corresponding Account.
73
+ - Allowed: `tier_1`, `tier_2`, `tier_3`
@@ -0,0 +1,29 @@
1
+ # `add_comment` — Schema Reference
2
+
3
+ Adds a comment to an object.
4
+
5
+ ## Input Port: `input`
6
+
7
+ - **`object`** (`id`) **REQUIRED** — ID of the object.
8
+ - ID type: `account`, `capability`, `conversation`, `enhancement`, `feature`, `incident`, `issue`, `linkable`, `opportunity`, `product`, `meeting`, `revo`, `revu`, `runnable`, `ticket`, `comment`, `dm`, `article`
9
+ - **`body`** (`text`) **REQUIRED** — Comment body.
10
+ - **`visibility`** (`enum`) — Specifies the entry's visibility. 'Internal' limits visibility to the Dev organization, 'External' allows visibility to both the Dev organization and its customers, and 'Private' limits visibility to specified users only. Defaults to 'External' if unspecified.
11
+ - Allowed: `external`, `internal`, `private`
12
+ - Default: `external`
13
+
14
+ ## Output Port: `output`
15
+
16
+ - **`id`** (`id`) **REQUIRED** — ID of the comment.
17
+ - ID type: `comment`
18
+ - **`created_by`** (`composite`) **REQUIRED** — ID of the user who created the comment.
19
+ - Composite: `created_by`
20
+ - **`type`** (`enum`) **REQUIRED** — Type of the user.
21
+ - Allowed: `dev_user`, `sys_user`, `rev_user`, `service_account`
22
+ - **`id`** (`id`) **REQUIRED** — ID of the user.
23
+ - ID type: `devu`, `sysu`, `revu`, `svcacc`
24
+ - **`display_id`** (`text`) **REQUIRED** — Display ID of the user.
25
+ - **`created_by_agent`** (`composite`) — ID of the service account who created the comment on behalf of the user.
26
+ - Composite: `created_by_agent`
27
+ - **`id`** (`id`) — ID of the service account.
28
+ - ID type: `svcacc`
29
+ - **`display_id`** (`text`) **REQUIRED** — Display ID of the agent.
@@ -0,0 +1,33 @@
1
+ # `airdrop_sync_run_started` — Schema Reference
2
+
3
+ ## Input Port: `input`
4
+
5
+ _No input fields (trigger or system-provided)._
6
+
7
+ ## Output Port: `output`
8
+
9
+ - **`created_by`** (`composite`)
10
+ - Composite: `_gen:created_by`
11
+ - **`display_id`** (`text`) — Human-readable object ID unique to the Dev organization.
12
+ - **`display_name`** (`text`) — The user's display name. The name is non-unique and mutable.
13
+ - **`display_picture`** (`composite`)
14
+ - Composite: `_gen:display_picture`
15
+ - **`email`** (`text`) — Email address of the user.
16
+ - **`full_name`** (`text`) — Full name of the user.
17
+ - **`state`** (`enum`) — State of the user.
18
+ - Allowed: `active`, `deactivated`, `deleted`, `locked`, `shadow`, `unassigned`
19
+ - **`id`** (`id`) **REQUIRED** — Globally unique object ID.
20
+ - ID type: `devu`, `sysu`, `svcacc`
21
+ - **`type`** (`enum`) **REQUIRED**
22
+ - Allowed: `dev_user`, `sys_user`, `service_account`
23
+ - **`sync_run`** (`composite`) — Object for holding run-specific data.
24
+ - Composite: `_gen:sync_run`
25
+ - **`item_analytics_artifact`** (`composite`)
26
+ - Composite: `_gen:item_analytics_artifact`
27
+ - **`mode`** (`enum`) — The direction/mode of a sync run.
28
+ - Allowed: `initial`, `sync_from_devrev`, `sync_to_devrev`
29
+ - **`started_at`** (`timestamp`) — The time when a sync was started.
30
+ - **`sync_unit`** (`id`) **REQUIRED** — Globally unique object ID of a Sync Unit
31
+ - ID type: `sync_unit`
32
+ - **`id`** (`id`) **REQUIRED** — Globally unique object ID.
33
+ - ID type: `sync_history`
@@ -0,0 +1,35 @@
1
+ # `airdrop_sync_run_status_updated` — Schema Reference
2
+
3
+ ## Input Port: `input`
4
+
5
+ - **`status`** (`[]enum`) **REQUIRED** — The status that the sync run transitions to. The trigger will only be fired if the sync run status changes to one of these values. NOTE: The Sync Run ID will be available only if the sync run status is in final state(completed or failed).
6
+ - Allowed: `waiting_for_user_input`, `completed`, `failed`
7
+
8
+ ## Output Port: `output`
9
+
10
+ - **`created_by`** (`composite`) — User who created the sync run
11
+ - Composite: `_gen:implicit:created-by`
12
+ - **`display_id`** (`text`) — Human-readable object ID unique to the Dev organization.
13
+ - **`display_name`** (`text`) — The user's display name. The name is non-unique and mutable.
14
+ - **`email`** (`text`) — Email address of the user.
15
+ - **`full_name`** (`text`) — Full name of the user.
16
+ - **`state`** (`enum`) — State of the user.
17
+ - Allowed: `active`, `deactivated`, `deleted`, `locked`, `shadow`, `unassigned`
18
+ - **`id`** (`id`) **REQUIRED** — Globally unique object ID.
19
+ - ID type: `devu`, `sysu`, `svcacc`
20
+ - **`type`** (`enum`) **REQUIRED**
21
+ - Allowed: `dev_user`, `sys_user`, `service_account`
22
+ - **`sync_unit`** (`id`) — Globally unique object ID of a Sync Unit
23
+ - ID type: `sync_unit`
24
+ - **`sync_run`** (`composite`) — Object for holding sync run data
25
+ - Composite: `_gen:implicit:sync-run`
26
+ - **`ended_at`** (`timestamp`) — The time when a sync was ended.
27
+ - **`item_analytics_artifact`** (`composite`)
28
+ - Composite: `_gen:item_analytics_artifact`
29
+ - **`mode`** (`enum`) — The direction/mode of a sync run.
30
+ - Allowed: `initial`, `sync_from_devrev`, `sync_to_devrev`
31
+ - **`progress`** (`composite`) — Progress.
32
+ - Composite: `_gen:progress`
33
+ - **`started_at`** (`timestamp`) — The time when a sync was started.
34
+ - **`id`** (`id`) — Globally unique object ID of a Sync Run
35
+ - ID type: `sync_history`
@@ -0,0 +1,96 @@
1
+ # `article_created` — Schema Reference
2
+
3
+ ## Input Port: `input`
4
+
5
+ _No input fields (trigger or system-provided)._
6
+
7
+ ## Output Port: `output`
8
+
9
+ - **`applies_to_parts`** (`[]composite`)
10
+ - Composite: `_gen:part-summary`
11
+ - **`display_id`** (`text`) — Human-readable object ID unique to the Dev organization.
12
+ - **`name`** (`text`) **REQUIRED** — Name of the part.
13
+ - **`type`** (`enum`) **REQUIRED**
14
+ - Allowed: `capability`, `enhancement`, `feature`, `linkable`, `product`, `runnable`
15
+ - **`id`** (`id`) **REQUIRED** — Globally unique object ID.
16
+ - ID type: `capability`, `feature`, `product`, `runnable`, `linkable`, `enhancement`
17
+ - **`authored_by`** (`[]composite`)
18
+ - Composite: `_gen:user-summary`
19
+ - **`display_id`** (`text`) — Human-readable object ID unique to the Dev organization.
20
+ - **`display_name`** (`text`) — The user's display name. The name is non-unique and mutable.
21
+ - **`display_picture`** (`composite`)
22
+ - Composite: `_gen:display_picture`
23
+ - **`email`** (`text`) — Email address of the user.
24
+ - **`external_ref`** (`text`) — 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.
25
+ - **`full_name`** (`text`) — Full name of the user.
26
+ - **`state`** (`enum`) — State of the user.
27
+ - Allowed: `active`, `deactivated`, `deleted`, `locked`, `shadow`, `unassigned`
28
+ - **`type`** (`enum`) **REQUIRED**
29
+ - Allowed: `dev_user`, `rev_user`, `service_account`, `sys_user`
30
+ - **`id`** (`id`) **REQUIRED** — Globally unique object ID.
31
+ - ID type: `devu`, `sysu`, `svcacc`
32
+ - **`created_by`** (`composite`)
33
+ - Composite: `_gen:created_by`
34
+ - **`display_id`** (`text`) — Human-readable object ID unique to the Dev organization.
35
+ - **`display_name`** (`text`) — The user's display name. The name is non-unique and mutable.
36
+ - **`email`** (`text`) — Email address of the user.
37
+ - **`full_name`** (`text`) — Full name of the user.
38
+ - **`state`** (`enum`) — State of the user.
39
+ - Allowed: `active`, `deactivated`, `deleted`, `locked`, `shadow`, `unassigned`
40
+ - **`id`** (`id`) **REQUIRED** — Globally unique object ID.
41
+ - ID type: `devu`, `sysu`, `svcacc`
42
+ - **`type`** (`enum`) **REQUIRED** — Type of the user.
43
+ - Allowed: `dev_user`, `service_account`, `sys_user`
44
+ - **`created_date`** (`timestamp`) — Timestamp when the article was created.
45
+ - **`description`** (`text`) — The description of the article.
46
+ - **`display_id`** (`text`) — Human-readable object ID unique to the Dev organization.
47
+ - **`extracted_content`** (`[]composite`)
48
+ - Composite: `_gen:artifact-summary`
49
+ - **`display_id`** (`text`) — Human-readable object ID unique to the Dev organization.
50
+ - **`file`** (`composite`) — Defines a file object.
51
+ - Composite: `_gen:file`
52
+ - **`id`** (`id`) **REQUIRED** — Globally unique object ID.
53
+ - ID type: `artifact`
54
+ - **`owned_by`** (`[]composite`) **REQUIRED**
55
+ - Composite: `_gen:user-summary`
56
+ - **`display_id`** (`text`) — Human-readable object ID unique to the Dev organization.
57
+ - **`display_name`** (`text`) — The user's display name. The name is non-unique and mutable.
58
+ - **`display_picture`** (`composite`)
59
+ - Composite: `_gen:display_picture`
60
+ - **`email`** (`text`) — Email address of the user.
61
+ - **`external_ref`** (`text`) — 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.
62
+ - **`full_name`** (`text`) — Full name of the user.
63
+ - **`state`** (`enum`) — State of the user.
64
+ - Allowed: `active`, `deactivated`, `deleted`, `locked`, `shadow`, `unassigned`
65
+ - **`type`** (`enum`) **REQUIRED**
66
+ - Allowed: `dev_user`, `rev_user`, `service_account`, `sys_user`
67
+ - **`id`** (`id`) **REQUIRED** — Globally unique object ID.
68
+ - ID type: `devu`, `sysu`, `svcacc`
69
+ - **`parent`** (`composite`)
70
+ - Composite: `_gen:parent`
71
+ - **`display_id`** (`text`) — Human-readable object ID unique to the Dev organization.
72
+ - **`id`** (`text`) **REQUIRED** — Globally unique object ID.
73
+ - **`title`** (`text`) — Title of the directory.
74
+ - **`rank`** (`text`) — Rank of the article.
75
+ - **`resource`** (`composite`) — Resource details.
76
+ - Composite: `_gen:resource`
77
+ - **`artifacts`** (`[]composite`)
78
+ - Composite: `_gen:artifact-summary`
79
+ - **`url`** (`text`) — URL of the resource (relevant only for type url).
80
+ - **`scope`** (`composite`) — The properties of an enum value.
81
+ - Composite: `_gen:scope`
82
+ - **`id`** (`int`) **REQUIRED** — The unique ID of the enum value.
83
+ - **`label`** (`text`) **REQUIRED** — The display label of the enum value.
84
+ - **`ordinal`** (`int`) **REQUIRED** — Used for determining the relative order of the enum value.
85
+ - **`value`** (`json_value`) — The actual value of the enum value.
86
+ - **`status`** (`enum`) — Status of the article.
87
+ - Allowed: `archived`, `draft`, `published`, `review_needed`
88
+ - **`tags`** (`[]composite`) — Tags associated with the article.
89
+ - Composite: `_gen:tags`
90
+ - **`tag`** (`composite`)
91
+ - Composite: `_gen:tag`
92
+ - **`title`** (`text`) — Title of the article.
93
+ - **`id`** (`id`) **REQUIRED** — Globally unique object ID.
94
+ - ID type: `article`
95
+ - **`article_type`** (`enum`) — Type of the article.
96
+ - Allowed: `article`, `content_block`