@devrev-computer/skills 1.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +37 -0
- package/bin/install.mjs +158 -0
- package/package.json +33 -0
- package/skills/account-evaluation/account-evaluation.md +64 -0
- package/skills/account-research/account-research.md +323 -0
- package/skills/account-research/references/signals-guide.md +52 -0
- package/skills/create-workflow-template/create-workflow-template.md +1091 -0
- package/skills/create-workflow-template/examples/3592-Generate rca from pia-template.json +1 -0
- package/skills/create-workflow-template/examples/4392-Async opportunity review agent-template.json +1 -0
- package/skills/create-workflow-template/examples/4441-Ticket escalator from customer message-template.json +1 -0
- package/skills/create-workflow-template/examples/4505-Auto-update issue tcd as end of sprint date-template.json +1 -0
- package/skills/create-workflow-template/examples/5040-Devrevu - enablement journey - poc emails-template.json +1 -0
- package/skills/create-workflow-template/examples/5158-Devrevu - enablement journey - mailing for non enablement journey users-template.json +1 -0
- package/skills/create-workflow-template/examples/5216-Account segment missing notification-template.json +1 -0
- package/skills/create-workflow-template/examples/working-csat-score-on-ticket-resolved.json +1 -0
- package/skills/create-workflow-template/examples/working-enhancement-replace-agent.json +1 -0
- package/skills/create-workflow-template/examples/working-invoke-code-sample.json +1 -0
- package/skills/create-workflow-template/examples/working-loop-variable-sample.json +1 -0
- package/skills/create-workflow-template/operations/actions.md +2919 -0
- package/skills/create-workflow-template/operations/blockings.md +38 -0
- package/skills/create-workflow-template/operations/controls.md +108 -0
- package/skills/create-workflow-template/operations/schema-index.md +166 -0
- package/skills/create-workflow-template/operations/schemas/account_created.md +58 -0
- package/skills/create-workflow-template/operations/schemas/account_updated.md +73 -0
- package/skills/create-workflow-template/operations/schemas/add_comment.md +29 -0
- package/skills/create-workflow-template/operations/schemas/airdrop_sync_run_started.md +33 -0
- package/skills/create-workflow-template/operations/schemas/airdrop_sync_run_status_updated.md +35 -0
- package/skills/create-workflow-template/operations/schemas/article_created.md +96 -0
- package/skills/create-workflow-template/operations/schemas/article_updated.md +135 -0
- package/skills/create-workflow-template/operations/schemas/ask_ai.md +11 -0
- package/skills/create-workflow-template/operations/schemas/classify_object.md +22 -0
- package/skills/create-workflow-template/operations/schemas/contact_created.md +43 -0
- package/skills/create-workflow-template/operations/schemas/contact_updated.md +65 -0
- package/skills/create-workflow-template/operations/schemas/conversation_created.md +108 -0
- package/skills/create-workflow-template/operations/schemas/conversation_sla_tracker_updated.md +46 -0
- package/skills/create-workflow-template/operations/schemas/conversation_updated.md +130 -0
- package/skills/create-workflow-template/operations/schemas/convert_conversation_to_ticket.md +13 -0
- package/skills/create-workflow-template/operations/schemas/create_account.md +62 -0
- package/skills/create-workflow-template/operations/schemas/create_article.md +79 -0
- package/skills/create-workflow-template/operations/schemas/create_brand.md +42 -0
- package/skills/create-workflow-template/operations/schemas/create_contact.md +65 -0
- package/skills/create-workflow-template/operations/schemas/create_dm.md +53 -0
- package/skills/create-workflow-template/operations/schemas/create_enhancement.md +63 -0
- package/skills/create-workflow-template/operations/schemas/create_incident.md +136 -0
- package/skills/create-workflow-template/operations/schemas/create_issue.md +150 -0
- package/skills/create-workflow-template/operations/schemas/create_meeting.md +105 -0
- package/skills/create-workflow-template/operations/schemas/create_opportunity.md +123 -0
- package/skills/create-workflow-template/operations/schemas/create_ticket.md +184 -0
- package/skills/create-workflow-template/operations/schemas/csat_response_received.md +73 -0
- package/skills/create-workflow-template/operations/schemas/dev_user_created.md +54 -0
- package/skills/create-workflow-template/operations/schemas/dev_user_updated.md +99 -0
- package/skills/create-workflow-template/operations/schemas/enhancement_created.md +46 -0
- package/skills/create-workflow-template/operations/schemas/enhancement_updated.md +89 -0
- package/skills/create-workflow-template/operations/schemas/evaluate_sentiment.md +14 -0
- package/skills/create-workflow-template/operations/schemas/execute_metric_action.md +11 -0
- package/skills/create-workflow-template/operations/schemas/feature_created.md +40 -0
- package/skills/create-workflow-template/operations/schemas/for_each.md +45 -0
- package/skills/create-workflow-template/operations/schemas/get_account.md +59 -0
- package/skills/create-workflow-template/operations/schemas/get_airdrop_sync_unit.md +32 -0
- package/skills/create-workflow-template/operations/schemas/get_brand.md +40 -0
- package/skills/create-workflow-template/operations/schemas/get_complete_enhancement_details.md +13 -0
- package/skills/create-workflow-template/operations/schemas/get_conversation.md +120 -0
- package/skills/create-workflow-template/operations/schemas/get_customer.md +60 -0
- package/skills/create-workflow-template/operations/schemas/get_enhancement.md +66 -0
- package/skills/create-workflow-template/operations/schemas/get_feature.md +56 -0
- package/skills/create-workflow-template/operations/schemas/get_incident.md +85 -0
- package/skills/create-workflow-template/operations/schemas/get_issue.md +117 -0
- package/skills/create-workflow-template/operations/schemas/get_kg_schema.md +23 -0
- package/skills/create-workflow-template/operations/schemas/get_meeting.md +87 -0
- package/skills/create-workflow-template/operations/schemas/get_metric_trackers.md +20 -0
- package/skills/create-workflow-template/operations/schemas/get_node_schema.md +29 -0
- package/skills/create-workflow-template/operations/schemas/get_opportunity.md +93 -0
- package/skills/create-workflow-template/operations/schemas/get_org_user.md +57 -0
- package/skills/create-workflow-template/operations/schemas/get_org_user_preference.md +40 -0
- package/skills/create-workflow-template/operations/schemas/get_part.md +55 -0
- package/skills/create-workflow-template/operations/schemas/get_self.md +54 -0
- package/skills/create-workflow-template/operations/schemas/get_session_details.md +45 -0
- package/skills/create-workflow-template/operations/schemas/get_sprint_board.md +103 -0
- package/skills/create-workflow-template/operations/schemas/get_ticket.md +136 -0
- package/skills/create-workflow-template/operations/schemas/get_workspace.md +21 -0
- package/skills/create-workflow-template/operations/schemas/go_back.md +13 -0
- package/skills/create-workflow-template/operations/schemas/http.md +38 -0
- package/skills/create-workflow-template/operations/schemas/hybrid_search.md +144 -0
- package/skills/create-workflow-template/operations/schemas/if_else.md +16 -0
- package/skills/create-workflow-template/operations/schemas/incident_created.md +88 -0
- package/skills/create-workflow-template/operations/schemas/incident_updated.md +126 -0
- package/skills/create-workflow-template/operations/schemas/init_variable.md +67 -0
- package/skills/create-workflow-template/operations/schemas/invoice_created.md +21 -0
- package/skills/create-workflow-template/operations/schemas/invoice_updated.md +41 -0
- package/skills/create-workflow-template/operations/schemas/invoke_code.md +132 -0
- package/skills/create-workflow-template/operations/schemas/issue_created.md +105 -0
- package/skills/create-workflow-template/operations/schemas/issue_sla_tracker_updated.md +46 -0
- package/skills/create-workflow-template/operations/schemas/issue_updated.md +172 -0
- package/skills/create-workflow-template/operations/schemas/link_incident_with_issue.md +14 -0
- package/skills/create-workflow-template/operations/schemas/link_ticket_with_issue.md +14 -0
- package/skills/create-workflow-template/operations/schemas/list_enhancements.md +74 -0
- package/skills/create-workflow-template/operations/schemas/list_issues.md +108 -0
- package/skills/create-workflow-template/operations/schemas/list_sessions.md +79 -0
- package/skills/create-workflow-template/operations/schemas/list_sprint.md +29 -0
- package/skills/create-workflow-template/operations/schemas/list_web_sessions.md +87 -0
- package/skills/create-workflow-template/operations/schemas/loop_over_accounts.md +106 -0
- package/skills/create-workflow-template/operations/schemas/loop_over_articles.md +126 -0
- package/skills/create-workflow-template/operations/schemas/loop_over_customers.md +88 -0
- package/skills/create-workflow-template/operations/schemas/loop_over_dev_users.md +75 -0
- package/skills/create-workflow-template/operations/schemas/loop_over_enhancements.md +112 -0
- package/skills/create-workflow-template/operations/schemas/loop_over_incidents.md +113 -0
- package/skills/create-workflow-template/operations/schemas/loop_over_issues.md +217 -0
- package/skills/create-workflow-template/operations/schemas/loop_over_meetings.md +150 -0
- package/skills/create-workflow-template/operations/schemas/loop_over_opportunity.md +161 -0
- package/skills/create-workflow-template/operations/schemas/loop_over_sprints.md +50 -0
- package/skills/create-workflow-template/operations/schemas/loop_over_tickets.md +203 -0
- package/skills/create-workflow-template/operations/schemas/manual_trigger.md +11 -0
- package/skills/create-workflow-template/operations/schemas/meeting_created.md +116 -0
- package/skills/create-workflow-template/operations/schemas/meeting_updated.md +152 -0
- package/skills/create-workflow-template/operations/schemas/oasis_sql_execute.md +11 -0
- package/skills/create-workflow-template/operations/schemas/opportunity_created.md +92 -0
- package/skills/create-workflow-template/operations/schemas/opportunity_updated.md +124 -0
- package/skills/create-workflow-template/operations/schemas/pick_user.md +16 -0
- package/skills/create-workflow-template/operations/schemas/question_answer_created.md +44 -0
- package/skills/create-workflow-template/operations/schemas/question_answer_updated.md +75 -0
- package/skills/create-workflow-template/operations/schemas/recall_chats.md +13 -0
- package/skills/create-workflow-template/operations/schemas/router.md +15 -0
- package/skills/create-workflow-template/operations/schemas/send_notification.md +19 -0
- package/skills/create-workflow-template/operations/schemas/set_variable.md +67 -0
- package/skills/create-workflow-template/operations/schemas/sleep_for.md +12 -0
- package/skills/create-workflow-template/operations/schemas/sleep_until.md +17 -0
- package/skills/create-workflow-template/operations/schemas/sprint_updated.md +37 -0
- package/skills/create-workflow-template/operations/schemas/suggest_part.md +14 -0
- package/skills/create-workflow-template/operations/schemas/task_updated.md +79 -0
- package/skills/create-workflow-template/operations/schemas/test_example.md +16 -0
- package/skills/create-workflow-template/operations/schemas/ticket_created.md +136 -0
- package/skills/create-workflow-template/operations/schemas/ticket_sla_tracker_updated.md +46 -0
- package/skills/create-workflow-template/operations/schemas/ticket_updated.md +198 -0
- package/skills/create-workflow-template/operations/schemas/timeline_comment_created.md +70 -0
- package/skills/create-workflow-template/operations/schemas/update_account.md +68 -0
- package/skills/create-workflow-template/operations/schemas/update_article.md +95 -0
- package/skills/create-workflow-template/operations/schemas/update_brand.md +44 -0
- package/skills/create-workflow-template/operations/schemas/update_contact.md +53 -0
- package/skills/create-workflow-template/operations/schemas/update_conversation.md +149 -0
- package/skills/create-workflow-template/operations/schemas/update_enhancement.md +64 -0
- package/skills/create-workflow-template/operations/schemas/update_incident.md +156 -0
- package/skills/create-workflow-template/operations/schemas/update_issue.md +173 -0
- package/skills/create-workflow-template/operations/schemas/update_meeting.md +114 -0
- package/skills/create-workflow-template/operations/schemas/update_opportunity.md +137 -0
- package/skills/create-workflow-template/operations/schemas/update_question_answer.md +60 -0
- package/skills/create-workflow-template/operations/schemas/update_ticket.md +188 -0
- package/skills/create-workflow-template/operations/schemas/watch_ticket_for_updates.md +225 -0
- package/skills/create-workflow-template/operations/schemas/web_search.md +17 -0
- package/skills/create-workflow-template/operations/schemas/while.md +24 -0
- package/skills/create-workflow-template/operations/schemas/widget_created.md +75 -0
- package/skills/create-workflow-template/operations/schemas/widget_updated.md +98 -0
- package/skills/create-workflow-template/operations/schemas/workspace_created.md +20 -0
- package/skills/create-workflow-template/operations/triggers.md +1583 -0
- package/skills/customer-brief/customer-brief.md +66 -0
- package/skills/deal-review-meddpicc/deal-review-meddpicc.md +58 -0
- package/skills/next-step-for-opportunity/next-step-for-opportunity.md +55 -0
- package/skills/opportunity-feature-prioritizer/SKILL.md +183 -0
- package/skills/sales-call-plan-coach/sales-call-plan-coach.md +73 -0
- package/skills/sales-context/sales-context.md +44 -0
- package/skills/sales-search-and-lookup/sales-search-and-lookup.md +58 -0
- package/skills/skill-creator/SKILL.md +570 -0
- package/skills/skill-creator/agents/analyzer.md +274 -0
- package/skills/skill-creator/agents/comparator.md +202 -0
- package/skills/skill-creator/agents/grader.md +223 -0
- package/skills/skill-creator/assets/eval_review.html +146 -0
- package/skills/skill-creator/eval-viewer/generate_review.py +471 -0
- package/skills/skill-creator/eval-viewer/viewer.html +1325 -0
- package/skills/skill-creator/references/schemas.md +430 -0
- package/skills/skill-creator/references/tool-patterns.md +290 -0
- package/skills/skill-creator/scripts/__init__.py +0 -0
- package/skills/skill-creator/scripts/aggregate_benchmark.py +401 -0
- package/skills/skill-creator/scripts/generate_report.py +326 -0
- package/skills/skill-creator/scripts/improve_description.py +247 -0
- package/skills/skill-creator/scripts/package_skill.py +136 -0
- package/skills/skill-creator/scripts/quick_validate.py +103 -0
- package/skills/skill-creator/scripts/run_eval.py +310 -0
- package/skills/skill-creator/scripts/run_loop.py +328 -0
- package/skills/skill-creator/scripts/utils.py +47 -0
- package/skills/trace-diagnosis/trace-diagnosis.md +186 -0
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"data":"{\"description\":\"\",\"serialization_version\":{\"major\":2,\"minor\":0,\"patch\":0},\"steps\":[{\"description\":\"Adds a comment to an object.\",\"input_ports\":[{\"name\":\"input\",\"schema\":{\"field_descriptors\":[{\"field_type\":\"id\",\"data_name\":\"object\",\"db_name\":\"object\",\"description\":\"ID of the object\",\"id_type\":[\"account\",\"capability\",\"conversation\",\"enhancement\",\"feature\",\"incident\",\"issue\",\"linkable\",\"opportunity\",\"product\",\"meeting\",\"revo\",\"revu\",\"runnable\",\"ticket\",\"comment\",\"dm\"],\"is_required\":true,\"name\":\"object\",\"oasis\":{\"name\":\"object\"}},{\"field_type\":\"text\",\"data_name\":\"body\",\"db_name\":\"body\",\"description\":\"Comment body\",\"is_required\":true,\"name\":\"body\",\"oasis\":{\"name\":\"body\"}},{\"field_type\":\"enum\",\"allowed_values\":[\"external\",\"internal\",\"private\"],\"data_name\":\"visibility\",\"db_name\":\"visibility\",\"default_value\":\"internal\",\"description\":\"Specifies the entry's visibility. 'Internal' limits visibility to the Dev organization, 'External' allows visibility to both the Dev organization and its customers, and 'Private' limits visibility to specified users only. Defaults to 'External' if unspecified.\",\"is_required\":false,\"name\":\"visibility\",\"oasis\":{\"name\":\"visibility\"}}],\"invalidate_on_field_update\":[\"visibility\"],\"type\":\"field_descriptor\"},\"type\":\"default\"}],\"input_values\":[{\"fields\":[{\"name\":\"object\",\"value\":{\"type\":\"jsonata_expression\",\"value\":\"$get('update_incident_1', 'output').id\"}},{\"name\":\"visibility\",\"value\":{\"type\":\"literal\",\"value\":\"internal\"}},{\"name\":\"body\",\"value\":{\"type\":\"text_template\",\"value\":\"An RCA has been generated for this incident and attached to the incident: {% expr $get('create_article_1', 'output').id %} . {% expr $get('update_incident_1', 'output').owned_by[0].id %} please review the same before sending it to customers.\"}}],\"port_name\":\"input\"}],\"name\":\"Add Comment\",\"next_steps\":[{\"next_port_name\":\"input\",\"next_step_reference_key\":\"update_incident_2\",\"port_name\":\"output\"}],\"operation\":{\"namespace\":\"devrev\",\"slug\":\"add_comment\"},\"output_ports\":[{\"name\":\"output\",\"schema\":{\"composite_schemas\":[{\"description\":\"User who created the comment\",\"fields\":[{\"field_type\":\"enum\",\"allowed_values\":[\"dev_user\",\"sys_user\",\"rev_user\",\"service_account\"],\"data_name\":\"type\",\"db_name\":\"type\",\"description\":\"Type of the user\",\"is_required\":true,\"name\":\"type\",\"oasis\":{\"name\":\"type\"}},{\"field_type\":\"id\",\"data_name\":\"id\",\"db_name\":\"id\",\"description\":\"ID of the user\",\"id_type\":[\"devu\",\"sysu\",\"revu\",\"svcacc\"],\"is_required\":true,\"name\":\"id\",\"oasis\":{\"name\":\"id\"}},{\"field_type\":\"text\",\"data_name\":\"display_id\",\"db_name\":\"display_id\",\"description\":\"Display ID of the user\",\"is_required\":true,\"name\":\"display_id\",\"oasis\":{\"name\":\"display_id\"}}],\"name\":\"created_by\"}],\"field_descriptors\":[{\"field_type\":\"id\",\"data_name\":\"id\",\"db_name\":\"id\",\"description\":\"ID of the comment\",\"id_type\":[\"comment\"],\"is_required\":true,\"name\":\"id\",\"oasis\":{\"name\":\"id\"}},{\"field_type\":\"composite\",\"composite_type\":\"created_by\",\"data_name\":\"created_by\",\"db_name\":\"created_by\",\"description\":\"ID of the user who created the comment\",\"is_required\":true,\"name\":\"created_by\",\"oasis\":{\"name\":\"created_by\"}}],\"type\":\"field_descriptor\"},\"type\":\"default\"},{\"name\":\"error\",\"schema\":{\"field_descriptors\":[{\"field_type\":\"text\",\"data_name\":\"message\",\"db_name\":\"message\",\"description\":\"Error message with more details about the error\",\"name\":\"message\",\"oasis\":{\"name\":\"message\"},\"ui\":{\"display_name\":\"Error Message\"}},{\"field_type\":\"enum\",\"allowed_values\":[\"bad_request\",\"not_found\",\"internal\"],\"data_name\":\"type\",\"db_name\":\"type\",\"description\":\"Type of the error\",\"name\":\"type\",\"oasis\":{\"name\":\"type\"},\"ui\":{\"display_name\":\"Error Type\"}}],\"type\":\"field_descriptor\"},\"type\":\"error\"}],\"reference_key\":\"add_comment_1\",\"ui_metadata\":{\"position\":{\"x\":1280,\"y\":1560}}},{\"description\":\"Generate an RCA for the incident.\",\"input_ports\":[{\"name\":\"input\",\"schema\":{\"field_descriptors\":[{\"field_type\":\"text\",\"data_name\":\"ai_input\",\"db_name\":\"ai_input\",\"description\":\"The input prompt based on which the AI response is generated\",\"is_required\":true,\"name\":\"ai_input\",\"oasis\":{\"name\":\"ai_input\"},\"ui\":{\"display_name\":\"Prompt\"}},{\"field_type\":\"enum\",\"allowed_values\":[\"text\",\"structured\"],\"data_name\":\"output_format\",\"db_name\":\"output_format\",\"default_value\":\"text\",\"description\":\"Output format to use for the AI response\",\"name\":\"output_format\",\"oasis\":{\"name\":\"output_format\"},\"ui\":{\"display_name\":\"Output Format\"}},{\"field_type\":\"enum\",\"allowed_values\":[\"Normal (default)\",\"Reasoning\"],\"data_name\":\"model\",\"db_name\":\"model\",\"description\":\"Model to use for the AI response\",\"name\":\"model\",\"oasis\":{\"name\":\"model\"},\"ui\":{\"display_name\":\"Model\"}},{\"field_type\":\"composite\",\"composite_type\":\"devrev:schema\",\"data_name\":\"structure\",\"db_name\":\"structure\",\"description\":\"The structured schema for the output\",\"is_required\":true,\"name\":\"structure\",\"oasis\":{\"name\":\"structure\"},\"ui\":{\"display_name\":\"Structured Output Schema\"}}],\"invalidate_on_field_update\":[\"output_format\",\"structure\"],\"type\":\"field_descriptor\"},\"type\":\"default\"}],\"input_values\":[{\"fields\":[{\"name\":\"output_format\",\"value\":{\"type\":\"literal\",\"value\":\"structured\"}},{\"name\":\"structure\",\"value\":{\"type\":\"literal\",\"value\":{\"fields\":[{\"description\":\"The title of the RCA document\",\"field_type\":\"text\",\"is_filterable\":false,\"name\":\"title\",\"ui\":{\"create_view\":{},\"detail_view\":{\"is_hidden\":true},\"display_name\":\"title\",\"placeholder\":\"Add title\",\"summary_view\":{\"is_hidden\":true}}},{\"description\":\"Description of the RCA document\",\"field_type\":\"text\",\"is_filterable\":false,\"name\":\"description\",\"ui\":{\"create_view\":{},\"detail_view\":{\"is_hidden\":true},\"display_name\":\"description\",\"placeholder\":\"Add description\",\"summary_view\":{\"is_hidden\":true}}},{\"description\":\"The actual contents of the RCA\",\"field_type\":\"text\",\"is_filterable\":false,\"name\":\"content\",\"ui\":{\"create_view\":{},\"detail_view\":{\"is_hidden\":true},\"display_name\":\"Content\",\"summary_view\":{\"is_hidden\":true}}}]}}},{\"name\":\"ai_input\",\"value\":{\"type\":\"text_template\",\"value\":\"You are given the following PIA (Post-Incident Analysis) of an incident.\\n\\n \\n\\n{% expr $get('fetch_article_content_1', 'output').article_content %}\\n\\n \\n\\nYour task is to generate a **Root Cause Analysis (RCA)** for the incident.\\n\\nGeneral guidelines:\\n\\n- The RCA is shared with customers. The explanation should be **clear, simple, and free of technical jargon**.\\n\\n- **Do not hallucinate** or assume any missing details — only use information explicitly provided in the PIA.\\n\\n- Use **exactly the format** below for the RCA.\\n\\n- All timestamps in the **Incident Timeline** must include the **timezone and offset**.\\n\\n- The **entire RCA** must be returned **under the key \\\"content\\\"** in the output JSON.\\n\\n \\n\\nTitle: -\\n\\nDescription: -\\n\\nStrictly stick to this format while generating the RCA:\\n\\n## Summary\\n\\n- Description:\\n\\n- Severity:\\n\\n- Impact: < High-level impact on the feature or application>\\n\\n## Root Cause Analysis\\n\\n[Detailed root cause of the incident, written in simple terms that anyone can understand.]\\n\\n \\n\\n## Action Items\\n\\n### **Mitigation Actions**\\n\\n[Immediate steps taken to reduce the impact or restore normal functionality.]\\n\\n### **Near-term Improvements**\\n\\n[List of near-term action items to prevent recurrence. Include “Issue ID” and “Target Close Date” for each.]\\n\\n \\n\\n## Incident Timeline\\n\\n[Chronological timeline of the incident from identification to mitigation, with timestamps including timezone and offsets.]\\n\\n \\n\\n---\\n\\n**Confidentiality Notice:**\\\\\\nThis document is intended solely for the recipient’s use and may contain confidential or proprietary information belonging to **DevRev**.Please do not share or distribute this document externally without prior written consent from **DevRev**.\\n\\ngenerate the entire RCA under the key \\\"content\\\" and use this in the output.\"}}],\"port_name\":\"input\"}],\"name\":\"Generate RCA\",\"next_steps\":[{\"next_port_name\":\"input\",\"next_step_reference_key\":\"create_article_1\",\"port_name\":\"output\"}],\"operation\":{\"namespace\":\"devrev\",\"slug\":\"ask_ai\"},\"output_ports\":[{\"name\":\"output\",\"schema\":{\"field_descriptors\":[{\"field_type\":\"text\",\"data_name\":\"title\",\"db_name\":\"title\",\"description\":\"The title of the RCA document\",\"is_filterable\":false,\"name\":\"title\",\"oasis\":{\"name\":\"title\"},\"ui\":{\"display_name\":\"title\",\"placeholder\":\"Add title\"}},{\"field_type\":\"text\",\"data_name\":\"description\",\"db_name\":\"description\",\"description\":\"Description of the RCA document\",\"is_filterable\":false,\"name\":\"description\",\"oasis\":{\"name\":\"description\"},\"ui\":{\"display_name\":\"description\",\"placeholder\":\"Add description\"}},{\"field_type\":\"text\",\"data_name\":\"content\",\"db_name\":\"content\",\"description\":\"The actual contents of the RCA\",\"is_filterable\":false,\"name\":\"content\",\"oasis\":{\"name\":\"content\"},\"ui\":{\"display_name\":\"Content\"}}],\"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\":\"ask_ai_1\",\"ui_metadata\":{\"position\":{\"x\":843.1873827719003,\"y\":1103.0039002553813}}},{\"description\":\"Creates an article\",\"input_ports\":[{\"name\":\"input\",\"schema\":{\"composite_schemas\":[{\"description\":\"Information about the role the member receives due to the share.\\n\",\"fields\":[{\"field_type\":\"id\",\"data_name\":\"member\",\"db_name\":\"member\",\"description\":\"ID of the member the object is shared with.\",\"id_type\":[\"devu\",\"group\",\"revu\",\"sysu\"],\"name\":\"member\",\"oasis\":{\"name\":\"member\"}},{\"field_type\":\"id\",\"data_name\":\"role\",\"db_name\":\"role\",\"description\":\"ID of the role that describes what privileges the membership\\nentails.\\n\",\"id_type\":[\"role\"],\"name\":\"role\",\"oasis\":{\"name\":\"role\"}}],\"name\":\"_gen:shared_with\"},{\"fields\":[{\"field_type\":\"id\",\"data_name\":\"id\",\"db_name\":\"id\",\"description\":\"The ID of the tag.\",\"id_type\":[\"tag\"],\"is_required\":false,\"name\":\"id\",\"oasis\":{\"name\":\"id\"}}],\"name\":\"_gen:tags\"}],\"field_descriptors\":[{\"field_type\":\"text\",\"data_name\":\"description\",\"db_name\":\"description\",\"description\":\"Description for the article.\",\"name\":\"description\",\"oasis\":{\"name\":\"description\"}},{\"field_type\":\"id\",\"data_name\":\"parent\",\"db_name\":\"parent\",\"description\":\"The parent directory of the article.\",\"id_type\":[\"directory\"],\"name\":\"parent\",\"oasis\":{\"name\":\"parent\"}},{\"field_type\":\"array\",\"base_type\":\"composite\",\"composite_type\":\"_gen:shared_with\",\"data_name\":\"shared_with\",\"db_name\":\"shared_with\",\"description\":\"Information about the role the member receives due to the share.\\n\",\"name\":\"shared_with\",\"oasis\":{\"name\":\"shared_with\"}},{\"field_type\":\"array\",\"base_type\":\"composite\",\"composite_type\":\"_gen:tags\",\"data_name\":\"tags\",\"db_name\":\"tags\",\"description\":\"Tags associated with the article.\",\"name\":\"tags\",\"oasis\":{\"name\":\"tags\"}},{\"field_type\":\"text\",\"data_name\":\"title\",\"db_name\":\"title\",\"description\":\"Name of the article.\",\"is_required\":true,\"name\":\"title\",\"oasis\":{\"name\":\"title\"}},{\"field_type\":\"array\",\"base_type\":\"id\",\"data_name\":\"owned_by\",\"db_name\":\"owned_by\",\"description\":\"The users that own the article.\\n\",\"id_type\":[\"devu\",\"sysu\",\"svcacc\"],\"is_required\":true,\"name\":\"owned_by\",\"oasis\":{\"name\":\"owned_by\"}},{\"field_type\":\"enum\",\"allowed_values\":[\"draft\",\"published\",\"archived\",\"review_needed\"],\"data_name\":\"status\",\"db_name\":\"status\",\"default_value\":\"draft\",\"description\":\"Status of the article.\",\"name\":\"status\",\"oasis\":{\"name\":\"status\"}},{\"field_type\":\"id\",\"data_name\":\"applies_to_parts\",\"db_name\":\"applies_to_parts\",\"description\":\"Globally unique object ID.\",\"id_type\":[\"capability\",\"feature\",\"product\",\"runnable\",\"linkable\",\"enhancement\"],\"is_required\":true,\"name\":\"applies_to_parts\",\"oasis\":{\"name\":\"applies_to_parts\"}},{\"field_type\":\"text\",\"data_name\":\"content\",\"db_name\":\"content\",\"description\":\"The content of the article. Provide the content in HTML or Markdown format.\",\"is_required\":true,\"name\":\"content\",\"oasis\":{\"name\":\"content\"}}],\"type\":\"field_descriptor\"},\"type\":\"default\"}],\"input_values\":[{\"fields\":[{\"name\":\"applies_to_parts\",\"value\":{\"type\":\"jsonata_expression\",\"value\":\"$get('incident_updated_1', 'output').applies_to_parts[0].id\"}},{\"name\":\"title\",\"value\":{\"type\":\"text_template\",\"value\":\"{% expr $get('ask_ai_1', 'output').title %}\"}},{\"name\":\"owned_by\",\"value\":{\"type\":\"list_value\",\"value\":{\"items\":[{\"type\":\"jsonata_expression\",\"value\":\"$append($get('incident_updated_1', 'output').owned_by[0].id, [])\"}]}}},{\"name\":\"content\",\"value\":{\"type\":\"text_template\",\"value\":\"{% expr $get('ask_ai_1', 'output').content %}\"}},{\"name\":\"description\",\"value\":{\"type\":\"text_template\",\"value\":\"{% expr $get('ask_ai_1', 'output').description %}\"}}],\"port_name\":\"input\"}],\"name\":\"Create Article\",\"next_steps\":[{\"next_port_name\":\"input\",\"next_step_reference_key\":\"update_incident_1\",\"port_name\":\"output\"}],\"operation\":{\"namespace\":\"devrev\",\"slug\":\"create_article\"},\"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\":\"id\",\"data_name\":\"id\",\"db_name\":\"id\",\"description\":\"Globally unique object ID.\",\"id_type\":[\"devu\",\"sysu\",\"svcacc\"],\"is_required\":true,\"name\":\"id\",\"oasis\":{\"name\":\"id\"}},{\"field_type\":\"enum\",\"allowed_values\":[\"dev_user\",\"service_account\",\"sys_user\"],\"data_name\":\"type\",\"db_name\":\"type\",\"description\":\"Type of the user.\",\"is_required\":true,\"name\":\"type\",\"oasis\":{\"name\":\"type\"}}],\"name\":\"_gen:created_by\"},{\"fields\":[{\"field_type\":\"text\",\"data_name\":\"display_id\",\"db_name\":\"display_id\",\"description\":\"Human-readable object ID unique to the Dev organization.\",\"name\":\"display_id\",\"oasis\":{\"name\":\"display_id\"}},{\"field_type\":\"id\",\"data_name\":\"id\",\"db_name\":\"id\",\"description\":\"Globally unique object ID.\",\"id_type\":[\"directory\"],\"is_required\":true,\"name\":\"id\",\"oasis\":{\"name\":\"id\"}}],\"name\":\"_gen:parent\"},{\"fields\":[{\"field_type\":\"text\",\"data_name\":\"display_id\",\"db_name\":\"display_id\",\"description\":\"Human-readable object ID unique to the Dev organization.\",\"name\":\"display_id\",\"oasis\":{\"name\":\"display_id\"}},{\"field_type\":\"text\",\"data_name\":\"name\",\"db_name\":\"name\",\"description\":\"Name of the part.\",\"is_required\":true,\"name\":\"name\",\"oasis\":{\"name\":\"name\"}},{\"field_type\":\"enum\",\"allowed_values\":[\"capability\",\"enhancement\",\"feature\",\"linkable\",\"product\",\"runnable\"],\"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\":[\"capability\",\"feature\",\"product\",\"runnable\",\"linkable\",\"enhancement\"],\"is_required\":true,\"name\":\"id\",\"oasis\":{\"name\":\"id\"}}],\"name\":\"_gen:part-summary\"},{\"fields\":[{\"field_type\":\"text\",\"data_name\":\"display_id\",\"db_name\":\"display_id\",\"description\":\"Human-readable object ID unique to the Dev organization.\",\"name\":\"display_id\",\"oasis\":{\"name\":\"display_id\"}},{\"field_type\":\"id\",\"data_name\":\"id\",\"db_name\":\"id\",\"description\":\"Globally unique contact tag ID.\",\"id_type\":[\"tag\"],\"is_required\":true,\"name\":\"id\",\"oasis\":{\"name\":\"id\"}}],\"name\":\"_gen:tag\"},{\"fields\":[{\"field_type\":\"composite\",\"composite_type\":\"_gen:tag\",\"data_name\":\"tag\",\"db_name\":\"tag\",\"name\":\"tag\",\"oasis\":{\"name\":\"tag\"}}],\"name\":\"_gen:tags\"},{\"fields\":[{\"field_type\":\"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\":\"Globally unique object ID.\",\"id_type\":[\"devu\",\"sysu\",\"svcacc\"],\"is_required\":true,\"name\":\"id\",\"oasis\":{\"name\":\"id\"}}],\"name\":\"_gen:user-summary\"}],\"field_descriptors\":[{\"field_type\":\"array\",\"base_type\":\"composite\",\"composite_type\":\"_gen:part-summary\",\"data_name\":\"applies_to_parts\",\"db_name\":\"applies_to_parts\",\"name\":\"applies_to_parts\",\"oasis\":{\"name\":\"applies_to_parts\"}},{\"field_type\":\"composite\",\"composite_type\":\"_gen:created_by\",\"data_name\":\"created_by\",\"db_name\":\"created_by\",\"name\":\"created_by\",\"oasis\":{\"name\":\"created_by\"}},{\"field_type\":\"timestamp\",\"data_name\":\"created_date\",\"db_name\":\"created_date\",\"description\":\"Timestamp when the object was created.\",\"name\":\"created_date\",\"oasis\":{\"name\":\"created_date\"}},{\"field_type\":\"text\",\"data_name\":\"description\",\"db_name\":\"description\",\"description\":\"Description of the article.\",\"name\":\"description\",\"oasis\":{\"name\":\"description\"}},{\"field_type\":\"text\",\"data_name\":\"display_id\",\"db_name\":\"display_id\",\"description\":\"Human-readable object ID unique to the Dev organization.\",\"name\":\"display_id\",\"oasis\":{\"name\":\"display_id\"}},{\"field_type\":\"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\":\"composite\",\"composite_type\":\"_gen:parent\",\"data_name\":\"parent\",\"db_name\":\"parent\",\"name\":\"parent\",\"oasis\":{\"name\":\"parent\"}},{\"field_type\":\"enum\",\"allowed_values\":[\"archived\",\"draft\",\"published\",\"review_needed\"],\"data_name\":\"status\",\"db_name\":\"status\",\"description\":\"Status of the article.\",\"name\":\"status\",\"oasis\":{\"name\":\"status\"}},{\"field_type\":\"array\",\"base_type\":\"composite\",\"composite_type\":\"_gen:tags\",\"data_name\":\"tags\",\"db_name\":\"tags\",\"description\":\"Tags associated with the article.\",\"name\":\"tags\",\"oasis\":{\"name\":\"tags\"}},{\"field_type\":\"text\",\"data_name\":\"title\",\"db_name\":\"title\",\"description\":\"Title of the article.\",\"name\":\"title\",\"oasis\":{\"name\":\"title\"}},{\"field_type\":\"id\",\"data_name\":\"id\",\"db_name\":\"id\",\"description\":\"Globally unique object ID.\",\"id_type\":[\"article\"],\"is_required\":true,\"name\":\"id\",\"oasis\":{\"name\":\"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\":\"create_article_1\",\"ui_metadata\":{\"position\":{\"x\":1080,\"y\":1260}}},{\"description\":\"Fetch the incident's PIA\",\"input_ports\":[{\"name\":\"input\",\"schema\":{\"field_descriptors\":[{\"field_type\":\"text\",\"data_name\":\"article_id\",\"db_name\":\"article_id\",\"description\":\"The article's id\",\"is_required\":true,\"name\":\"article_id\",\"oasis\":{\"name\":\"article_id\"},\"ui\":{\"display_name\":\"Article ID\"}}],\"type\":\"field_descriptor\"},\"type\":\"default\"}],\"input_values\":[{\"fields\":[{\"name\":\"article_id\",\"value\":{\"type\":\"text_template\",\"value\":\"{% expr $get('incident_updated_1', 'output').pia[0].id %}\"}}],\"port_name\":\"input\"}],\"name\":\"Fetch PIA\",\"next_steps\":[{\"next_port_name\":\"input\",\"next_step_reference_key\":\"ask_ai_1\",\"port_name\":\"output\"}],\"operation\":{\"namespace\":\"fetch-article-content-operator\",\"slug\":\"fetch_article_content\"},\"output_ports\":[{\"name\":\"output\",\"schema\":{\"field_descriptors\":[{\"field_type\":\"text\",\"data_name\":\"article_content\",\"db_name\":\"article_content\",\"description\":\"The article's content\",\"name\":\"article_content\",\"oasis\":{\"name\":\"article_content\"},\"ui\":{\"display_name\":\"Article Content\"}}],\"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\":\"fetch_article_content_1\",\"ui_metadata\":{\"position\":{\"x\":880,\"y\":960}}},{\"description\":\"Branch the workflow based on a condition\",\"input_ports\":[{\"name\":\"input\",\"schema\":{\"field_descriptors\":[{\"field_type\":\"struct\",\"data_name\":\"condition\",\"db_name\":\"condition\",\"description\":\"Condition to evaluate\",\"is_required\":true,\"name\":\"condition\",\"oasis\":{\"name\":\"condition\"}}],\"type\":\"field_descriptor\"},\"type\":\"default\"}],\"input_values\":[{\"fields\":[{\"name\":\"condition\",\"value\":{\"type\":\"literal\",\"value\":{\"conditions\":[{\"conditions\":[{\"operands\":[{\"type\":\"jsonata_expression\",\"value\":\"$get('incident_updated_1', 'output').tnt__pia_published\"},{\"type\":\"literal\",\"value\":true}],\"operator\":\"equals\",\"type\":\"rule\",\"ui_reference_key\":\"f7de5529-451e-429d-b9df-6e1e341226a9\"}],\"logical_operator\":\"and\",\"negate\":false,\"type\":\"group\",\"ui_reference_key\":\"4895d811-6e06-413f-8287-769c0cf35449\"},{\"conditions\":[{\"operands\":[{\"type\":\"jsonata_expression\",\"value\":\"$get('incident_updated_1', 'output').tnt__rca\"}],\"operator\":\"exists\",\"type\":\"rule\",\"ui_reference_key\":\"9582ee0c-7bbb-469e-a0d6-d8b42745b9d5\"}],\"logical_operator\":\"and\",\"negate\":true,\"type\":\"group\",\"ui_reference_key\":\"65e0b545-cd20-449e-a1fe-9ae92d472bc1\"}],\"logical_operator\":\"and\",\"negate\":false,\"type\":\"group\",\"ui_reference_key\":\"8deda6a0-63ab-4453-a068-f794100e9a39\"}}}],\"port_name\":\"input\"}],\"name\":\"If Else\",\"next_steps\":[{\"next_port_name\":\"input\",\"next_step_reference_key\":\"fetch_article_content_1\",\"port_name\":\"true\"}],\"operation\":{\"namespace\":\"devrev\",\"slug\":\"if_else\"},\"output_ports\":[{\"name\":\"true\",\"type\":\"default\"},{\"name\":\"false\",\"type\":\"default\"},{\"name\":\"error\",\"schema\":{\"field_descriptors\":[{\"field_type\":\"text\",\"data_name\":\"message\",\"db_name\":\"message\",\"description\":\"Error message with more details about the error\",\"name\":\"message\",\"oasis\":{\"name\":\"message\"},\"ui\":{\"display_name\":\"Error Message\"}},{\"field_type\":\"enum\",\"allowed_values\":[\"bad_request\",\"not_found\",\"internal\"],\"data_name\":\"type\",\"db_name\":\"type\",\"description\":\"Type of the error\",\"name\":\"type\",\"oasis\":{\"name\":\"type\"},\"ui\":{\"display_name\":\"Error Type\"}}],\"type\":\"field_descriptor\"},\"type\":\"error\"}],\"reference_key\":\"if_else_1\",\"ui_metadata\":{\"position\":{\"x\":910,\"y\":810}}},{\"description\":\"Triggers when an incident is updated\",\"input_ports\":[{\"name\":\"input\",\"schema\":{\"field_descriptors\":[{\"field_type\":\"array\",\"base_type\":\"uenum\",\"allowed_values\":[{\"id\":0,\"label\":\"Title\",\"ordinal\":0,\"value\":\"title\"},{\"id\":1,\"label\":\"Body\",\"ordinal\":1,\"value\":\"body\"},{\"id\":2,\"label\":\"Applies To Part\",\"ordinal\":2,\"value\":\"applies_to_part\"},{\"id\":3,\"label\":\"Owned By\",\"ordinal\":3,\"value\":\"owned_by\"},{\"id\":4,\"label\":\"Target Close Date\",\"ordinal\":4,\"value\":\"target_close_date\"},{\"id\":5,\"label\":\"Identified Date\",\"ordinal\":5,\"value\":\"identified_date\"},{\"id\":6,\"label\":\"Acknowledged Date\",\"ordinal\":6,\"value\":\"acknowledged_date\"},{\"id\":7,\"label\":\"Mitigated Date\",\"ordinal\":7,\"value\":\"mitigated_date\"},{\"id\":8,\"label\":\"Actual Close Date\",\"ordinal\":8,\"value\":\"actual_close_date\"},{\"id\":9,\"label\":\"Severity\",\"ordinal\":9,\"value\":\"severity\"},{\"id\":10,\"label\":\"Stage\",\"ordinal\":10,\"value\":\"stage\"},{\"id\":11,\"label\":\"Tags\",\"ordinal\":11,\"value\":\"tags\"},{\"id\":12,\"label\":\"Source\",\"ordinal\":12,\"value\":\"source\"},{\"id\":13,\"label\":\"Impact\",\"ordinal\":13,\"value\":\"impact\"},{\"id\":14,\"label\":\"Reported By\",\"ordinal\":14,\"value\":\"reported_by\"},{\"id\":15,\"label\":\"Pia\",\"ordinal\":15,\"value\":\"pia\"},{\"id\":16,\"label\":\"Playbooks\",\"ordinal\":16,\"value\":\"playbooks\"},{\"id\":17,\"label\":\"Alert Generated\",\"ordinal\":17,\"value\":\"tnt__alert_generated\"},{\"id\":18,\"label\":\"Customer Impact\",\"ordinal\":18,\"value\":\"tnt__customer_impact\"},{\"id\":19,\"label\":\"Customer Reported\",\"ordinal\":19,\"value\":\"tnt__customer_reported\"},{\"id\":20,\"label\":\"Impacted Environments\",\"ordinal\":20,\"value\":\"tnt__impacted_environments\"},{\"id\":21,\"label\":\"Incident Category\",\"ordinal\":21,\"value\":\"tnt__incident_category\"},{\"id\":22,\"label\":\"PIA Owner\",\"ordinal\":22,\"value\":\"tnt__pia_owner\"},{\"id\":23,\"label\":\"PIA status\",\"ordinal\":23,\"value\":\"tnt__pia_reviewed\"},{\"id\":24,\"label\":\"PR link / Mitigation note\",\"ordinal\":24,\"value\":\"tnt__pr_link_mitigation_note\"},{\"id\":25,\"label\":\"RCA\",\"ordinal\":25,\"value\":\"tnt__rca\"},{\"id\":26,\"label\":\"Reasoning\",\"ordinal\":26,\"value\":\"tnt__reasoning\"},{\"id\":27,\"label\":\"Impacted Regions\",\"ordinal\":27,\"value\":\"tnt__region\"}],\"data_name\":\"fields_to_watch\",\"db_name\":\"fields_to_watch\",\"description\":\"Fields to watch for changes. The trigger will only be fired if any of these fields are updated.\",\"is_required\":true,\"name\":\"fields_to_watch\",\"oasis\":{\"name\":\"fields_to_watch\"},\"ui\":{\"display_name\":\"Fields to watch\"}},{\"field_type\":\"array\",\"base_type\":\"enum\",\"allowed_values\":[\"agent_invocation_snapin\",\"betterstack\",\"slack\",\"incident_pager\"],\"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\":\"fields_to_watch\",\"value\":{\"type\":\"list_value\",\"value\":{\"items\":[{\"type\":\"literal\",\"value\":[\"tnt__pia_published\"]}]}}}],\"port_name\":\"input\"}],\"name\":\"Incident Updated\",\"next_steps\":[{\"next_port_name\":\"input\",\"next_step_reference_key\":\"if_else_1\",\"port_name\":\"output\"}],\"operation\":{\"namespace\":\"devrev\",\"slug\":\"incident_updated\"},\"output_ports\":[{\"name\":\"output\",\"schema\":{\"composite_schemas\":[{\"fields\":[{\"field_type\":\"text\",\"data_name\":\"display_id\",\"db_name\":\"display_id\",\"description\":\"Human-readable object ID unique to the Dev organization.\",\"name\":\"display_id\",\"oasis\":{\"name\":\"display_id\"}},{\"field_type\":\"composite\",\"composite_type\":\"_gen:resource\",\"data_name\":\"resource\",\"db_name\":\"resource\",\"description\":\"Resource details.\",\"name\":\"resource\",\"oasis\":{\"name\":\"resource\"}},{\"field_type\":\"text\",\"data_name\":\"title\",\"db_name\":\"title\",\"description\":\"Title of the article.\",\"name\":\"title\",\"oasis\":{\"name\":\"title\"}},{\"field_type\":\"id\",\"data_name\":\"id\",\"db_name\":\"id\",\"description\":\"ID of the article.\",\"id_type\":[\"article\"],\"is_required\":true,\"name\":\"id\",\"oasis\":{\"name\":\"id\"}}],\"name\":\"_gen:article-summary\"},{\"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\":\"composite\",\"composite_type\":\"_gen:resource\",\"data_name\":\"resource\",\"db_name\":\"resource\",\"description\":\"Resource details.\",\"name\":\"resource\",\"oasis\":{\"name\":\"resource\"}},{\"field_type\":\"text\",\"data_name\":\"title\",\"db_name\":\"title\",\"description\":\"Title of the article.\",\"name\":\"title\",\"oasis\":{\"name\":\"title\"}},{\"field_type\":\"id\",\"data_name\":\"id\",\"db_name\":\"id\",\"description\":\"ID of the article.\",\"id_type\":[\"article\"],\"is_required\":true,\"name\":\"id\",\"oasis\":{\"name\":\"id\"}}],\"name\":\"_gen:article-summary_95fca9c7\"},{\"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\":\"ID of the artifact.\",\"id_type\":[\"artifact\"],\"is_required\":true,\"name\":\"id\",\"oasis\":{\"name\":\"id\"}}],\"name\":\"_gen:artifact-summary\"},{\"fields\":[{\"field_type\":\"text\",\"data_name\":\"name\",\"db_name\":\"name\",\"description\":\"Name of the part.\",\"is_required\":true,\"name\":\"name\",\"oasis\":{\"name\":\"name\"}},{\"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\":\"enum\",\"allowed_values\":[\"capability\",\"enhancement\",\"feature\",\"linkable\",\"product\",\"runnable\"],\"data_name\":\"type\",\"db_name\":\"type\",\"is_required\":true,\"name\":\"type\",\"oasis\":{\"name\":\"type\"}},{\"field_type\":\"id\",\"data_name\":\"id\",\"db_name\":\"id\",\"description\":\"ID of the part attached to the incident.\",\"id_type\":[\"capability\",\"feature\",\"product\",\"runnable\",\"linkable\",\"enhancement\"],\"is_required\":true,\"name\":\"id\",\"oasis\":{\"name\":\"id\"}}],\"name\":\"_gen:part-summary\"},{\"description\":\"Resource details.\",\"fields\":[{\"field_type\":\"array\",\"base_type\":\"composite\",\"composite_type\":\"_gen:artifact-summary\",\"data_name\":\"artifacts\",\"db_name\":\"artifacts\",\"name\":\"artifacts\",\"oasis\":{\"name\":\"artifacts\"}},{\"field_type\":\"text\",\"data_name\":\"url\",\"db_name\":\"url\",\"description\":\"URL of the resource (relevant only for type url).\",\"name\":\"url\",\"oasis\":{\"name\":\"url\"}}],\"name\":\"_gen:resource\"},{\"description\":\"The properties of an enum value.\",\"fields\":[{\"field_type\":\"int\",\"data_name\":\"id\",\"db_name\":\"id\",\"description\":\"The unique ID of the enum value.\",\"is_required\":true,\"name\":\"id\",\"oasis\":{\"name\":\"id\"}},{\"field_type\":\"text\",\"data_name\":\"label\",\"db_name\":\"label\",\"description\":\"The label for the severity. Use id instead as labels can change overtime.\",\"is_required\":true,\"name\":\"label\",\"oasis\":{\"name\":\"label\"}},{\"field_type\":\"json_value\",\"data_name\":\"value\",\"db_name\":\"value\",\"description\":\"The actual value of the enum value.\",\"name\":\"value\",\"oasis\":{\"name\":\"value\"}}],\"name\":\"_gen:severity\"},{\"description\":\"Describes the current stage of a object.\",\"fields\":[{\"field_type\":\"text\",\"data_name\":\"name\",\"db_name\":\"name\",\"description\":\"The name of the stage.\",\"name\":\"name\",\"oasis\":{\"name\":\"name\"}}],\"name\":\"_gen:stage\"},{\"fields\":[{\"field_type\":\"text\",\"data_name\":\"display_id\",\"db_name\":\"display_id\",\"description\":\"Human-readable object ID unique to the Dev organization.\",\"name\":\"display_id\",\"oasis\":{\"name\":\"display_id\"}},{\"field_type\":\"text\",\"data_name\":\"id\",\"db_name\":\"id\",\"description\":\"Globally unique object ID.\",\"is_required\":true,\"name\":\"id\",\"oasis\":{\"name\":\"id\"}},{\"field_type\":\"bool\",\"data_name\":\"is_final\",\"db_name\":\"is_final\",\"description\":\"True if this is a final state.\",\"name\":\"is_final\",\"oasis\":{\"name\":\"is_final\"}},{\"field_type\":\"text\",\"data_name\":\"name\",\"db_name\":\"name\",\"description\":\"The human readable name of the state.\",\"name\":\"name\",\"oasis\":{\"name\":\"name\"}}],\"name\":\"_gen:state\"},{\"fields\":[{\"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\":\"id\",\"data_name\":\"id\",\"db_name\":\"id\",\"description\":\"The id of the user.\",\"id_type\":[\"devu\",\"sysu\",\"svcacc\"],\"is_required\":true,\"name\":\"id\",\"oasis\":{\"name\":\"id\"}},{\"field_type\":\"enum\",\"allowed_values\":[\"dev_user\",\"sys_user\",\"service_account\"],\"data_name\":\"type\",\"db_name\":\"type\",\"is_required\":true,\"name\":\"type\",\"oasis\":{\"name\":\"type\"}}],\"name\":\"_gen:user-summary\"},{\"description\":\"Describe the current stage of an incident\",\"fields\":[{\"field_type\":\"composite\",\"composite_type\":\"_gen:stage\",\"data_name\":\"stage\",\"db_name\":\"stage\",\"name\":\"stage\",\"oasis\":{\"name\":\"stage\"}},{\"field_type\":\"composite\",\"composite_type\":\"_gen:state\",\"data_name\":\"state\",\"db_name\":\"state\",\"name\":\"state\",\"oasis\":{\"name\":\"state\"}}],\"name\":\"_gen:incident-base-properties.stage\"},{\"fields\":[{\"field_type\":\"bool\",\"data_name\":\"is_final\",\"db_name\":\"is_final\",\"description\":\"True if this is a final state.\",\"name\":\"is_final\",\"oasis\":{\"name\":\"is_final\"}},{\"field_type\":\"text\",\"data_name\":\"name\",\"db_name\":\"name\",\"description\":\"The human readable name of the state.\",\"name\":\"name\",\"oasis\":{\"name\":\"name\"}}],\"name\":\"_gen:state\"},{\"fields\":[{\"field_type\":\"timestamp\",\"data_name\":\"acknowledged_date\",\"db_name\":\"acknowledged_date\",\"description\":\"Timestamp when the incident was acknowledged.\",\"name\":\"acknowledged_date\",\"oasis\":{\"name\":\"acknowledged_date\"}},{\"field_type\":\"timestamp\",\"data_name\":\"actual_close_date\",\"db_name\":\"actual_close_date\",\"description\":\"Timestamp when the incident was actually resolved.\",\"name\":\"actual_close_date\",\"oasis\":{\"name\":\"actual_close_date\"}},{\"field_type\":\"array\",\"base_type\":\"composite\",\"composite_type\":\"_gen:part-summary\",\"data_name\":\"applies_to_parts\",\"db_name\":\"applies_to_parts\",\"name\":\"applies_to_parts\",\"oasis\":{\"name\":\"applies_to_parts\"}},{\"field_type\":\"text\",\"data_name\":\"body\",\"db_name\":\"body\",\"description\":\"Body of the incident.\",\"name\":\"body\",\"oasis\":{\"name\":\"body\"}},{\"field_type\":\"timestamp\",\"data_name\":\"created_date\",\"db_name\":\"created_date\",\"description\":\"Timestamp when the object was created.\",\"name\":\"created_date\",\"oasis\":{\"name\":\"created_date\"}},{\"field_type\":\"text\",\"data_name\":\"display_id\",\"db_name\":\"display_id\",\"description\":\"Human-readable object ID unique to the Dev organization.\",\"name\":\"display_id\",\"oasis\":{\"name\":\"display_id\"}},{\"field_type\":\"timestamp\",\"data_name\":\"identified_date\",\"db_name\":\"identified_date\",\"description\":\"Time when the incident was identified/reported.\",\"name\":\"identified_date\",\"oasis\":{\"name\":\"identified_date\"}},{\"field_type\":\"composite\",\"composite_type\":\"_gen:impact\",\"data_name\":\"impact\",\"db_name\":\"impact\",\"description\":\"Details of the impact due to the incident.\",\"name\":\"impact\",\"oasis\":{\"name\":\"impact\"}},{\"field_type\":\"timestamp\",\"data_name\":\"mitigated_date\",\"db_name\":\"mitigated_date\",\"description\":\"Timestamp when the incident was mitigated.\",\"name\":\"mitigated_date\",\"oasis\":{\"name\":\"mitigated_date\"}},{\"field_type\":\"timestamp\",\"data_name\":\"modified_date\",\"db_name\":\"modified_date\",\"description\":\"Timestamp when the object was last modified.\",\"name\":\"modified_date\",\"oasis\":{\"name\":\"modified_date\"}},{\"field_type\":\"array\",\"base_type\":\"composite\",\"composite_type\":\"_gen:user-summary\",\"data_name\":\"owned_by\",\"db_name\":\"owned_by\",\"name\":\"owned_by\",\"oasis\":{\"name\":\"owned_by\"}},{\"field_type\":\"array\",\"base_type\":\"composite\",\"composite_type\":\"_gen:article-summary\",\"data_name\":\"pia\",\"db_name\":\"pia\",\"name\":\"pia\",\"oasis\":{\"name\":\"pia\"}},{\"field_type\":\"array\",\"base_type\":\"composite\",\"composite_type\":\"_gen:article-summary_95fca9c7\",\"data_name\":\"playbooks\",\"db_name\":\"playbooks\",\"name\":\"playbooks\",\"oasis\":{\"name\":\"playbooks\"}},{\"field_type\":\"composite\",\"composite_type\":\"_gen:reported_by\",\"data_name\":\"reported_by\",\"db_name\":\"reported_by\",\"description\":\"The properties of an enum value.\",\"name\":\"reported_by\",\"oasis\":{\"name\":\"reported_by\"}},{\"field_type\":\"composite\",\"composite_type\":\"_gen:severity\",\"data_name\":\"severity\",\"db_name\":\"severity\",\"description\":\"The properties of an enum value.\",\"name\":\"severity\",\"oasis\":{\"name\":\"severity\"}},{\"field_type\":\"composite\",\"composite_type\":\"_gen:source\",\"data_name\":\"source\",\"db_name\":\"source\",\"description\":\"The properties of an enum value.\",\"name\":\"source\",\"oasis\":{\"name\":\"source\"}},{\"field_type\":\"array\",\"base_type\":\"composite\",\"composite_type\":\"_gen:tags\",\"data_name\":\"tags\",\"db_name\":\"tags\",\"description\":\"Tags associated with the object.\",\"name\":\"tags\",\"oasis\":{\"name\":\"tags\"}},{\"field_type\":\"timestamp\",\"data_name\":\"target_close_date\",\"db_name\":\"target_close_date\",\"description\":\"Timestamp when the incident is expected to be resolved.\",\"name\":\"target_close_date\",\"oasis\":{\"name\":\"target_close_date\"}},{\"field_type\":\"text\",\"data_name\":\"title\",\"db_name\":\"title\",\"description\":\"Title of the incident.\",\"is_required\":true,\"name\":\"title\",\"oasis\":{\"name\":\"title\"}},{\"field_type\":\"id\",\"data_name\":\"id\",\"db_name\":\"id\",\"description\":\"ID of the updated incident.\",\"id_type\":[\"incident\"],\"is_required\":true,\"name\":\"id\",\"oasis\":{\"name\":\"id\"}},{\"field_type\":\"composite\",\"composite_type\":\"_gen:incident-base-properties.stage\",\"data_name\":\"stage\",\"db_name\":\"stage\",\"description\":\"The current stage of the incident\",\"name\":\"stage\",\"oasis\":{\"name\":\"stage\"}},{\"field_type\":\"enum\",\"allowed_values\":[\"No\",\"Yes\"],\"data_name\":\"tnt__alert_generated\",\"db_name\":\"tnt__alert_generated\",\"is_filterable\":true,\"name\":\"tnt__alert_generated\",\"oasis\":{\"name\":\"tnt__alert_generated\"},\"ui\":{\"client_overrides\":[{\"client_name\":\"web\",\"view_overrides\":[{\"is_hidden\":false,\"view_name\":\"detail\"}]}],\"display_name\":\"Alert Generated\",\"is_active_in_detail_view\":true,\"is_groupable\":true,\"is_hidden\":false,\"placeholder\":\"Add Alert Generated\"}},{\"field_type\":\"enum\",\"allowed_values\":[\"No\",\"Yes\"],\"data_name\":\"tnt__customer_impact\",\"db_name\":\"tnt__customer_impact\",\"is_filterable\":true,\"name\":\"tnt__customer_impact\",\"oasis\":{\"name\":\"tnt__customer_impact\"},\"ui\":{\"client_overrides\":[{\"client_name\":\"web\",\"view_overrides\":[{\"is_hidden\":false,\"view_name\":\"detail\"}]}],\"display_name\":\"Customer Impact\",\"is_active_in_detail_view\":true,\"is_hidden\":false,\"placeholder\":\"Add Customer Impact\"}},{\"field_type\":\"enum\",\"allowed_values\":[\"No\",\"Yes\"],\"data_name\":\"tnt__customer_reported\",\"db_name\":\"tnt__customer_reported\",\"is_filterable\":true,\"name\":\"tnt__customer_reported\",\"oasis\":{\"name\":\"tnt__customer_reported\"},\"ui\":{\"client_overrides\":[{\"client_name\":\"web\",\"view_overrides\":[{\"is_hidden\":false,\"view_name\":\"detail\"}]}],\"display_name\":\"Customer Reported\",\"is_active_in_detail_view\":true,\"is_hidden\":false,\"placeholder\":\"Add Customer Reported\"}},{\"field_type\":\"array\",\"base_type\":\"enum\",\"allowed_values\":[\"DEV\",\"PROD\",\"QA\"],\"data_name\":\"tnt__impacted_environments\",\"db_name\":\"tnt__impacted_environments\",\"is_filterable\":true,\"name\":\"tnt__impacted_environments\",\"oasis\":{\"name\":\"tnt__impacted_environments\"},\"ui\":{\"client_overrides\":[{\"client_name\":\"web\",\"view_overrides\":[{\"is_hidden\":false,\"view_name\":\"detail\"}]}],\"display_name\":\"Impacted Environments\",\"is_active_in_detail_view\":true,\"is_hidden\":false,\"placeholder\":\"Add Impacted Environments\"}},{\"field_type\":\"enum\",\"allowed_values\":[\"New\",\"Regression\",\"Reoccuring\"],\"data_name\":\"tnt__incident_category\",\"db_name\":\"tnt__incident_category\",\"is_filterable\":true,\"name\":\"tnt__incident_category\",\"oasis\":{\"name\":\"tnt__incident_category\"},\"ui\":{\"client_overrides\":[{\"client_name\":\"web\",\"view_overrides\":[{\"is_hidden\":false,\"view_name\":\"detail\"}]}],\"display_name\":\"Incident Category\",\"is_active_in_detail_view\":true,\"is_groupable\":true,\"is_hidden\":false,\"placeholder\":\"Add Incident Category\"}},{\"field_type\":\"id\",\"data_name\":\"tnt__pia_owner\",\"db_name\":\"tnt__pia_owner\",\"id_type\":[\"devu\"],\"is_filterable\":true,\"name\":\"tnt__pia_owner\",\"oasis\":{\"name\":\"tnt__pia_owner\"},\"ui\":{\"client_overrides\":[{\"client_name\":\"web\",\"view_overrides\":[{\"is_hidden\":false,\"view_name\":\"detail\"}]}],\"display_name\":\"PIA Owner\",\"is_active_in_detail_view\":true,\"is_groupable\":true,\"placeholder\":\"Add PIA Owner\"}},{\"field_type\":\"enum\",\"allowed_values\":[\"Not reviewed\",\"Reviewed\"],\"data_name\":\"tnt__pia_reviewed\",\"db_name\":\"tnt__pia_reviewed\",\"default_value\":\"Not reviewed\",\"is_filterable\":true,\"name\":\"tnt__pia_reviewed\",\"oasis\":{\"name\":\"tnt__pia_reviewed\"},\"ui\":{\"client_overrides\":[{\"client_name\":\"web\",\"view_overrides\":[{\"is_hidden\":false,\"view_name\":\"detail\"},{\"is_hidden\":false,\"view_name\":\"create\"}]}],\"display_name\":\"PIA status\",\"is_active_in_detail_view\":true,\"is_hidden_during_create\":false,\"placeholder\":\"Add PIA reviewed\"}},{\"field_type\":\"rich_text\",\"data_name\":\"tnt__pr_link_mitigation_note\",\"db_name\":\"tnt__pr_link_mitigation_note\",\"description\":\"Stores the URL of the fix PR, or a brief explanation if no PR was created.\",\"is_filterable\":false,\"is_required\":false,\"name\":\"tnt__pr_link_mitigation_note\",\"oasis\":{\"name\":\"tnt__pr_link_mitigation_note\"},\"ui\":{\"client_overrides\":[{\"client_name\":\"web\",\"view_overrides\":[{\"is_hidden\":false,\"view_name\":\"detail\"},{\"is_hidden\":true,\"view_name\":\"create\"}]}],\"display_name\":\"PR link / Mitigation note\",\"is_active_in_detail_view\":true,\"is_hidden\":false,\"is_hidden_during_create\":true,\"placeholder\":\"Fix PR link or reason if none.\",\"tooltip\":\"Provide the link to the PR that fixes the issue. If no PR was created, please explain why.\"}},{\"field_type\":\"text\",\"data_name\":\"tnt__rca\",\"db_name\":\"tnt__rca\",\"description\":\"Provide the link to the RCA article\",\"is_filterable\":false,\"name\":\"tnt__rca\",\"oasis\":{\"name\":\"tnt__rca\"},\"ui\":{\"client_overrides\":[{\"client_name\":\"web\",\"view_overrides\":[{\"is_hidden\":false,\"view_name\":\"detail\"},{\"is_hidden\":true,\"view_name\":\"create\"}]}],\"display_name\":\"RCA\",\"is_active_in_detail_view\":true,\"is_hidden_during_create\":true,\"placeholder\":\"Add RCA\",\"tooltip\":\"Link to the RCA article\"}},{\"field_type\":\"rich_text\",\"data_name\":\"tnt__reasoning\",\"db_name\":\"tnt__reasoning\",\"is_filterable\":false,\"name\":\"tnt__reasoning\",\"oasis\":{\"name\":\"tnt__reasoning\"},\"ui\":{\"client_overrides\":[{\"client_name\":\"web\",\"view_overrides\":[{\"is_hidden\":false,\"view_name\":\"detail\"},{\"is_hidden\":false,\"view_name\":\"create\"}]}],\"display_name\":\"Reasoning\",\"is_active_in_detail_view\":true,\"is_hidden_during_create\":false,\"placeholder\":\"How do you know that this alert is harmless\",\"tooltip\":\"Provide the reason for marking this incident as cancelled or declared\"}},{\"field_type\":\"array\",\"base_type\":\"enum\",\"allowed_values\":[\"ap-south-1\",\"eu-central-1\",\"us-east-1\"],\"data_name\":\"tnt__region\",\"db_name\":\"tnt__region\",\"is_filterable\":true,\"name\":\"tnt__region\",\"oasis\":{\"name\":\"tnt__region\"},\"ui\":{\"client_overrides\":[{\"client_name\":\"web\",\"view_overrides\":[{\"is_hidden\":false,\"view_name\":\"detail\"}]}],\"display_name\":\"Impacted Regions\",\"is_active_in_detail_view\":true,\"is_hidden\":false,\"placeholder\":\"Add Impacted Regions\"}}],\"name\":\"_gen:implicit:incident\"}],\"field_descriptors\":[{\"field_type\":\"timestamp\",\"data_name\":\"acknowledged_date\",\"db_name\":\"acknowledged_date\",\"description\":\"Timestamp when the incident was acknowledged.\",\"name\":\"acknowledged_date\",\"oasis\":{\"name\":\"acknowledged_date\"}},{\"field_type\":\"timestamp\",\"data_name\":\"actual_close_date\",\"db_name\":\"actual_close_date\",\"description\":\"Timestamp when the incident was actually resolved.\",\"name\":\"actual_close_date\",\"oasis\":{\"name\":\"actual_close_date\"}},{\"field_type\":\"array\",\"base_type\":\"composite\",\"composite_type\":\"_gen:part-summary\",\"data_name\":\"applies_to_parts\",\"db_name\":\"applies_to_parts\",\"description\":\"Parts to which the incident is applicable to.\",\"name\":\"applies_to_parts\",\"oasis\":{\"name\":\"applies_to_parts\"}},{\"field_type\":\"text\",\"data_name\":\"body\",\"db_name\":\"body\",\"description\":\"Body of the incident.\",\"name\":\"body\",\"oasis\":{\"name\":\"body\"}},{\"field_type\":\"timestamp\",\"data_name\":\"created_date\",\"db_name\":\"created_date\",\"description\":\"Timestamp when the object was created.\",\"name\":\"created_date\",\"oasis\":{\"name\":\"created_date\"}},{\"field_type\":\"text\",\"data_name\":\"display_id\",\"db_name\":\"display_id\",\"description\":\"Human-readable object ID unique to the Dev organization.\",\"name\":\"display_id\",\"oasis\":{\"name\":\"display_id\"}},{\"field_type\":\"timestamp\",\"data_name\":\"identified_date\",\"db_name\":\"identified_date\",\"description\":\"Time when the incident was identified/reported.\",\"name\":\"identified_date\",\"oasis\":{\"name\":\"identified_date\"}},{\"field_type\":\"composite\",\"composite_type\":\"_gen:impact\",\"data_name\":\"impact\",\"db_name\":\"impact\",\"description\":\"Details of the impact due to the incident.\",\"name\":\"impact\",\"oasis\":{\"name\":\"impact\"}},{\"field_type\":\"timestamp\",\"data_name\":\"mitigated_date\",\"db_name\":\"mitigated_date\",\"description\":\"Timestamp when the incident was mitigated.\",\"name\":\"mitigated_date\",\"oasis\":{\"name\":\"mitigated_date\"}},{\"field_type\":\"timestamp\",\"data_name\":\"modified_date\",\"db_name\":\"modified_date\",\"description\":\"Timestamp when the object was last modified.\",\"name\":\"modified_date\",\"oasis\":{\"name\":\"modified_date\"}},{\"field_type\":\"array\",\"base_type\":\"composite\",\"composite_type\":\"_gen:user-summary\",\"data_name\":\"owned_by\",\"db_name\":\"owned_by\",\"name\":\"owned_by\",\"oasis\":{\"name\":\"owned_by\"}},{\"field_type\":\"array\",\"base_type\":\"composite\",\"composite_type\":\"_gen:article-summary\",\"data_name\":\"pia\",\"db_name\":\"pia\",\"name\":\"pia\",\"oasis\":{\"name\":\"pia\"}},{\"field_type\":\"array\",\"base_type\":\"composite\",\"composite_type\":\"_gen:article-summary_95fca9c7\",\"data_name\":\"playbooks\",\"db_name\":\"playbooks\",\"name\":\"playbooks\",\"oasis\":{\"name\":\"playbooks\"}},{\"field_type\":\"composite\",\"composite_type\":\"_gen:reported_by\",\"data_name\":\"reported_by\",\"db_name\":\"reported_by\",\"description\":\"The properties of an enum value.\",\"name\":\"reported_by\",\"oasis\":{\"name\":\"reported_by\"}},{\"field_type\":\"composite\",\"composite_type\":\"_gen:severity\",\"data_name\":\"severity\",\"db_name\":\"severity\",\"description\":\"Severity of the incident.\",\"name\":\"severity\",\"oasis\":{\"name\":\"severity\"}},{\"field_type\":\"composite\",\"composite_type\":\"_gen:source\",\"data_name\":\"source\",\"db_name\":\"source\",\"description\":\"The properties of an enum value.\",\"name\":\"source\",\"oasis\":{\"name\":\"source\"}},{\"field_type\":\"array\",\"base_type\":\"composite\",\"composite_type\":\"_gen:tags\",\"data_name\":\"tags\",\"db_name\":\"tags\",\"description\":\"Tags associated with the object.\",\"name\":\"tags\",\"oasis\":{\"name\":\"tags\"}},{\"field_type\":\"timestamp\",\"data_name\":\"target_close_date\",\"db_name\":\"target_close_date\",\"description\":\"Timestamp when the incident is expected to be resolved.\",\"name\":\"target_close_date\",\"oasis\":{\"name\":\"target_close_date\"}},{\"field_type\":\"text\",\"data_name\":\"title\",\"db_name\":\"title\",\"description\":\"Title of the incident.\",\"is_required\":true,\"name\":\"title\",\"oasis\":{\"name\":\"title\"}},{\"field_type\":\"composite\",\"composite_type\":\"_gen:implicit:incident\",\"data_name\":\"old_incident\",\"db_name\":\"old_incident\",\"description\":\"Old incident object\",\"name\":\"old_incident\",\"oasis\":{\"name\":\"old_incident\"},\"ui\":{\"display_name\":\"Old Incident\"}},{\"field_type\":\"id\",\"data_name\":\"id\",\"db_name\":\"id\",\"description\":\"ID of the udpated incident.\",\"id_type\":[\"incident\"],\"is_required\":true,\"name\":\"id\",\"oasis\":{\"name\":\"id\"}},{\"field_type\":\"composite\",\"composite_type\":\"_gen:incident-base-properties.stage\",\"data_name\":\"stage\",\"db_name\":\"stage\",\"description\":\"Stage of the incident.\",\"name\":\"stage\",\"oasis\":{\"name\":\"stage\"}},{\"field_type\":\"enum\",\"allowed_values\":[\"No\",\"Yes\"],\"data_name\":\"tnt__alert_generated\",\"db_name\":\"tnt__alert_generated\",\"is_filterable\":true,\"name\":\"tnt__alert_generated\",\"oasis\":{\"name\":\"tnt__alert_generated\"},\"ui\":{\"client_overrides\":[{\"client_name\":\"web\",\"view_overrides\":[{\"is_hidden\":false,\"view_name\":\"detail\"}]}],\"display_name\":\"Alert Generated\",\"is_active_in_detail_view\":true,\"is_groupable\":true,\"is_hidden\":false,\"placeholder\":\"Add Alert Generated\"}},{\"field_type\":\"enum\",\"allowed_values\":[\"No\",\"Yes\"],\"data_name\":\"tnt__customer_impact\",\"db_name\":\"tnt__customer_impact\",\"is_filterable\":true,\"name\":\"tnt__customer_impact\",\"oasis\":{\"name\":\"tnt__customer_impact\"},\"ui\":{\"client_overrides\":[{\"client_name\":\"web\",\"view_overrides\":[{\"is_hidden\":false,\"view_name\":\"detail\"}]}],\"display_name\":\"Customer Impact\",\"is_active_in_detail_view\":true,\"is_hidden\":false,\"placeholder\":\"Add Customer Impact\"}},{\"field_type\":\"enum\",\"allowed_values\":[\"No\",\"Yes\"],\"data_name\":\"tnt__customer_reported\",\"db_name\":\"tnt__customer_reported\",\"is_filterable\":true,\"name\":\"tnt__customer_reported\",\"oasis\":{\"name\":\"tnt__customer_reported\"},\"ui\":{\"client_overrides\":[{\"client_name\":\"web\",\"view_overrides\":[{\"is_hidden\":false,\"view_name\":\"detail\"}]}],\"display_name\":\"Customer Reported\",\"is_active_in_detail_view\":true,\"is_hidden\":false,\"placeholder\":\"Add Customer Reported\"}},{\"field_type\":\"array\",\"base_type\":\"enum\",\"allowed_values\":[\"DEV\",\"PROD\",\"QA\"],\"data_name\":\"tnt__impacted_environments\",\"db_name\":\"tnt__impacted_environments\",\"is_filterable\":true,\"name\":\"tnt__impacted_environments\",\"oasis\":{\"name\":\"tnt__impacted_environments\"},\"ui\":{\"client_overrides\":[{\"client_name\":\"web\",\"view_overrides\":[{\"is_hidden\":false,\"view_name\":\"detail\"}]}],\"display_name\":\"Impacted Environments\",\"is_active_in_detail_view\":true,\"is_hidden\":false,\"placeholder\":\"Add Impacted Environments\"}},{\"field_type\":\"enum\",\"allowed_values\":[\"New\",\"Regression\",\"Reoccuring\"],\"data_name\":\"tnt__incident_category\",\"db_name\":\"tnt__incident_category\",\"is_filterable\":true,\"name\":\"tnt__incident_category\",\"oasis\":{\"name\":\"tnt__incident_category\"},\"ui\":{\"client_overrides\":[{\"client_name\":\"web\",\"view_overrides\":[{\"is_hidden\":false,\"view_name\":\"detail\"}]}],\"display_name\":\"Incident Category\",\"is_active_in_detail_view\":true,\"is_groupable\":true,\"is_hidden\":false,\"placeholder\":\"Add Incident Category\"}},{\"field_type\":\"id\",\"data_name\":\"tnt__pia_owner\",\"db_name\":\"tnt__pia_owner\",\"id_type\":[\"devu\"],\"is_filterable\":true,\"name\":\"tnt__pia_owner\",\"oasis\":{\"name\":\"tnt__pia_owner\"},\"ui\":{\"client_overrides\":[{\"client_name\":\"web\",\"view_overrides\":[{\"is_hidden\":false,\"view_name\":\"detail\"}]}],\"display_name\":\"PIA Owner\",\"is_active_in_detail_view\":true,\"is_groupable\":true,\"placeholder\":\"Add PIA Owner\"}},{\"field_type\":\"enum\",\"allowed_values\":[\"Not reviewed\",\"Reviewed\"],\"data_name\":\"tnt__pia_reviewed\",\"db_name\":\"tnt__pia_reviewed\",\"default_value\":\"Not reviewed\",\"is_filterable\":true,\"name\":\"tnt__pia_reviewed\",\"oasis\":{\"name\":\"tnt__pia_reviewed\"},\"ui\":{\"client_overrides\":[{\"client_name\":\"web\",\"view_overrides\":[{\"is_hidden\":false,\"view_name\":\"detail\"},{\"is_hidden\":false,\"view_name\":\"create\"}]}],\"display_name\":\"PIA status\",\"is_active_in_detail_view\":true,\"is_hidden_during_create\":false,\"placeholder\":\"Add PIA reviewed\"}},{\"field_type\":\"rich_text\",\"data_name\":\"tnt__pr_link_mitigation_note\",\"db_name\":\"tnt__pr_link_mitigation_note\",\"description\":\"Stores the URL of the fix PR, or a brief explanation if no PR was created.\",\"is_filterable\":false,\"is_required\":false,\"name\":\"tnt__pr_link_mitigation_note\",\"oasis\":{\"name\":\"tnt__pr_link_mitigation_note\"},\"ui\":{\"client_overrides\":[{\"client_name\":\"web\",\"view_overrides\":[{\"is_hidden\":false,\"view_name\":\"detail\"},{\"is_hidden\":true,\"view_name\":\"create\"}]}],\"display_name\":\"PR link / Mitigation note\",\"is_active_in_detail_view\":true,\"is_hidden\":false,\"is_hidden_during_create\":true,\"placeholder\":\"Fix PR link or reason if none.\",\"tooltip\":\"Provide the link to the PR that fixes the issue. If no PR was created, please explain why.\"}},{\"field_type\":\"text\",\"data_name\":\"tnt__rca\",\"db_name\":\"tnt__rca\",\"description\":\"Provide the link to the RCA article\",\"is_filterable\":false,\"name\":\"tnt__rca\",\"oasis\":{\"name\":\"tnt__rca\"},\"ui\":{\"client_overrides\":[{\"client_name\":\"web\",\"view_overrides\":[{\"is_hidden\":false,\"view_name\":\"detail\"},{\"is_hidden\":true,\"view_name\":\"create\"}]}],\"display_name\":\"RCA\",\"is_active_in_detail_view\":true,\"is_hidden_during_create\":true,\"placeholder\":\"Add RCA\",\"tooltip\":\"Link to the RCA article\"}},{\"field_type\":\"rich_text\",\"data_name\":\"tnt__reasoning\",\"db_name\":\"tnt__reasoning\",\"is_filterable\":false,\"name\":\"tnt__reasoning\",\"oasis\":{\"name\":\"tnt__reasoning\"},\"ui\":{\"client_overrides\":[{\"client_name\":\"web\",\"view_overrides\":[{\"is_hidden\":false,\"view_name\":\"detail\"},{\"is_hidden\":false,\"view_name\":\"create\"}]}],\"display_name\":\"Reasoning\",\"is_active_in_detail_view\":true,\"is_hidden_during_create\":false,\"placeholder\":\"How do you know that this alert is harmless\",\"tooltip\":\"Provide the reason for marking this incident as cancelled or declared\"}},{\"field_type\":\"array\",\"base_type\":\"enum\",\"allowed_values\":[\"ap-south-1\",\"eu-central-1\",\"us-east-1\"],\"data_name\":\"tnt__region\",\"db_name\":\"tnt__region\",\"is_filterable\":true,\"name\":\"tnt__region\",\"oasis\":{\"name\":\"tnt__region\"},\"ui\":{\"client_overrides\":[{\"client_name\":\"web\",\"view_overrides\":[{\"is_hidden\":false,\"view_name\":\"detail\"}]}],\"display_name\":\"Impacted Regions\",\"is_active_in_detail_view\":true,\"is_hidden\":false,\"placeholder\":\"Add Impacted Regions\"}}],\"type\":\"field_descriptor\"},\"type\":\"default\"}],\"reference_key\":\"incident_updated_1\",\"ui_metadata\":{\"position\":{\"x\":810,\"y\":660}}},{\"description\":\"Updates an incident\",\"input_ports\":[{\"name\":\"input\",\"schema\":{\"composite_schemas\":[{\"fields\":[{\"field_type\":\"array\",\"base_type\":\"id\",\"data_name\":\"set\",\"db_name\":\"set\",\"description\":\"Sets the parts to which the incident is applicable to\",\"id_type\":[\"capability\",\"feature\",\"product\",\"runnable\",\"linkable\",\"enhancement\"],\"name\":\"set\",\"oasis\":{\"name\":\"set\"}}],\"name\":\"_gen:applies_to_parts\"},{\"fields\":[{\"field_type\":\"array\",\"max_items\":50,\"base_type\":\"id\",\"data_name\":\"set\",\"db_name\":\"set\",\"description\":\"The IDs of the customers impacted by the incident.\",\"id_type\":[\"account\"],\"is_required\":false,\"name\":\"set\",\"oasis\":{\"name\":\"set\"}}],\"name\":\"_gen:customer_ids\"},{\"fields\":[{\"field_type\":\"int\",\"data_name\":\"count\",\"db_name\":\"count\",\"description\":\"Count of customers impacted.\",\"name\":\"count\",\"oasis\":{\"name\":\"count\"}},{\"field_type\":\"composite\",\"composite_type\":\"_gen:customer_ids\",\"data_name\":\"customer_ids\",\"db_name\":\"customer_ids\",\"name\":\"customer_ids\",\"oasis\":{\"name\":\"customer_ids\"}}],\"name\":\"_gen:impact\"},{\"fields\":[{\"field_type\":\"array\",\"max_items\":1,\"min_items\":1,\"base_type\":\"id\",\"data_name\":\"set\",\"db_name\":\"set\",\"description\":\"The users that own the incident\",\"id_type\":[\"devu\",\"sysu\",\"svcacc\"],\"is_required\":false,\"name\":\"set\",\"oasis\":{\"name\":\"set\"}}],\"name\":\"_gen:owned_by\"},{\"fields\":[{\"field_type\":\"array\",\"max_items\":1,\"min_items\":1,\"base_type\":\"id\",\"data_name\":\"set\",\"db_name\":\"set\",\"description\":\"The article id of the Post-Incident Analysis(PIA) of the incident.\\n\",\"id_type\":[\"article\"],\"is_required\":false,\"name\":\"set\",\"oasis\":{\"name\":\"set\"}}],\"name\":\"_gen:pia\"},{\"description\":\"Update object for TagWithValue.\",\"fields\":[{\"field_type\":\"id\",\"data_name\":\"tag_id\",\"db_name\":\"tag_id\",\"description\":\"ID of the referenced tag\",\"id_type\":[\"tag\"],\"name\":\"tag_id\",\"oasis\":{\"name\":\"tag_id\"}}],\"name\":\"_gen:set\"},{\"fields\":[{\"field_type\":\"array\",\"base_type\":\"composite\",\"composite_type\":\"_gen:set\",\"data_name\":\"set\",\"db_name\":\"set\",\"description\":\"Sets the tags associated with the object.\",\"name\":\"set\",\"oasis\":{\"name\":\"set\"}}],\"name\":\"_gen:tags\"}],\"conditions\":[{\"effects\":[{\"fields\":[\"stage\"],\"invalid\":true}],\"expression_ast\":[\"not\",[\"in\",\"$stage\",\"don:core:dvrv-us-1:devo/0:custom_stage/16\",\"don:core:dvrv-us-1:devo/0:custom_stage/101\",\"don:core:dvrv-us-1:devo/0:custom_stage/83\",\"don:core:dvrv-us-1:devo/0:custom_stage/81\",\"don:core:dvrv-us-1:devo/0:custom_stage/82\",\"don:core:dvrv-us-1:devo/0:custom_stage/3\",\"don:core:dvrv-us-1:devo/0:custom_stage/8\",\"don:core:dvrv-us-1:devo/0:custom_stage/2\",\"don:core:dvrv-us-1:devo/0:custom_stage/12\"]]}],\"field_descriptors\":[{\"field_type\":\"timestamp\",\"data_name\":\"acknowledged_date\",\"db_name\":\"acknowledged_date\",\"description\":\"Timestamp when the incident was acknowledged.\",\"name\":\"acknowledged_date\",\"oasis\":{\"name\":\"acknowledged_date\"}},{\"field_type\":\"composite\",\"composite_type\":\"_gen:applies_to_parts\",\"data_name\":\"applies_to_parts\",\"db_name\":\"applies_to_parts\",\"name\":\"applies_to_parts\",\"oasis\":{\"name\":\"applies_to_parts\"}},{\"field_type\":\"text\",\"data_name\":\"body\",\"db_name\":\"body\",\"description\":\"Body of the incident.\",\"name\":\"body\",\"oasis\":{\"name\":\"body\"}},{\"field_type\":\"id\",\"data_name\":\"id\",\"db_name\":\"id\",\"description\":\"The ID of the incident to be updated.\",\"id_type\":[\"incident\"],\"is_required\":true,\"name\":\"id\",\"oasis\":{\"name\":\"id\"}},{\"field_type\":\"timestamp\",\"data_name\":\"identified_date\",\"db_name\":\"identified_date\",\"description\":\"Time when the incident was identified/reported.\",\"name\":\"identified_date\",\"oasis\":{\"name\":\"identified_date\"}},{\"field_type\":\"composite\",\"composite_type\":\"_gen:impact\",\"data_name\":\"impact\",\"db_name\":\"impact\",\"name\":\"impact\",\"oasis\":{\"name\":\"impact\"}},{\"field_type\":\"timestamp\",\"data_name\":\"mitigated_date\",\"db_name\":\"mitigated_date\",\"description\":\"Timestamp when the incident was mitigated.\",\"name\":\"mitigated_date\",\"oasis\":{\"name\":\"mitigated_date\"}},{\"field_type\":\"composite\",\"composite_type\":\"_gen:owned_by\",\"data_name\":\"owned_by\",\"db_name\":\"owned_by\",\"name\":\"owned_by\",\"oasis\":{\"name\":\"owned_by\"}},{\"field_type\":\"composite\",\"composite_type\":\"_gen:pia\",\"data_name\":\"pia\",\"db_name\":\"pia\",\"name\":\"pia\",\"oasis\":{\"name\":\"pia\"}},{\"field_type\":\"int\",\"data_name\":\"severity\",\"db_name\":\"severity\",\"description\":\"Severity of the incident.\",\"is_required\":true,\"name\":\"severity\",\"oasis\":{\"name\":\"severity\"}},{\"field_type\":\"composite\",\"composite_type\":\"_gen:tags\",\"data_name\":\"tags\",\"db_name\":\"tags\",\"name\":\"tags\",\"oasis\":{\"name\":\"tags\"}},{\"field_type\":\"timestamp\",\"data_name\":\"target_close_date\",\"db_name\":\"target_close_date\",\"description\":\"Timestamp when the incident is expected to be resolved.\",\"name\":\"target_close_date\",\"oasis\":{\"name\":\"target_close_date\"}},{\"field_type\":\"text\",\"data_name\":\"title\",\"db_name\":\"title\",\"description\":\"Title of the incident.\",\"name\":\"title\",\"oasis\":{\"name\":\"title\"}},{\"field_type\":\"id\",\"data_name\":\"stage\",\"db_name\":\"stage\",\"description\":\"The stage of the incident.\",\"id_type\":[\"custom_stage\"],\"name\":\"stage\",\"oasis\":{\"name\":\"stage\"}},{\"field_type\":\"array\",\"base_type\":\"enum\",\"allowed_values\":[\"agent_invocation_snapin\",\"betterstack\",\"slack\",\"incident_pager\"],\"data_name\":\"apps\",\"db_name\":\"apps\",\"description\":\"List of Integrations whose fields are needed in this workflow\",\"name\":\"apps\",\"oasis\":{\"name\":\"apps\"},\"ui\":{\"display_name\":\"List of Integrations\"}},{\"field_type\":\"enum\",\"allowed_values\":[\"No\",\"Yes\"],\"data_name\":\"tnt__alert_generated\",\"db_name\":\"tnt__alert_generated\",\"is_filterable\":true,\"name\":\"tnt__alert_generated\",\"oasis\":{\"name\":\"tnt__alert_generated\"},\"ui\":{\"display_name\":\"Alert Generated\",\"placeholder\":\"Add Alert Generated\"}},{\"field_type\":\"enum\",\"allowed_values\":[\"No\",\"Yes\"],\"data_name\":\"tnt__customer_impact\",\"db_name\":\"tnt__customer_impact\",\"is_filterable\":true,\"name\":\"tnt__customer_impact\",\"oasis\":{\"name\":\"tnt__customer_impact\"},\"ui\":{\"display_name\":\"Customer Impact\",\"placeholder\":\"Add Customer Impact\"}},{\"field_type\":\"enum\",\"allowed_values\":[\"No\",\"Yes\"],\"data_name\":\"tnt__customer_reported\",\"db_name\":\"tnt__customer_reported\",\"is_filterable\":true,\"name\":\"tnt__customer_reported\",\"oasis\":{\"name\":\"tnt__customer_reported\"},\"ui\":{\"display_name\":\"Customer Reported\",\"placeholder\":\"Add Customer Reported\"}},{\"field_type\":\"array\",\"base_type\":\"enum\",\"allowed_values\":[\"DEV\",\"PROD\",\"QA\"],\"data_name\":\"tnt__impacted_environments\",\"db_name\":\"tnt__impacted_environments\",\"is_filterable\":true,\"name\":\"tnt__impacted_environments\",\"oasis\":{\"name\":\"tnt__impacted_environments\"},\"ui\":{\"display_name\":\"Impacted Environments\",\"placeholder\":\"Add Impacted Environments\"}},{\"field_type\":\"enum\",\"allowed_values\":[\"New\",\"Regression\",\"Reoccuring\"],\"data_name\":\"tnt__incident_category\",\"db_name\":\"tnt__incident_category\",\"is_filterable\":true,\"name\":\"tnt__incident_category\",\"oasis\":{\"name\":\"tnt__incident_category\"},\"ui\":{\"display_name\":\"Incident Category\",\"placeholder\":\"Add Incident Category\"}},{\"field_type\":\"id\",\"data_name\":\"tnt__pia_owner\",\"db_name\":\"tnt__pia_owner\",\"id_type\":[\"devu\"],\"is_filterable\":true,\"name\":\"tnt__pia_owner\",\"oasis\":{\"name\":\"tnt__pia_owner\"},\"ui\":{\"display_name\":\"PIA Owner\",\"placeholder\":\"Add PIA Owner\"}},{\"field_type\":\"enum\",\"allowed_values\":[\"Not reviewed\",\"Reviewed\"],\"data_name\":\"tnt__pia_reviewed\",\"db_name\":\"tnt__pia_reviewed\",\"default_value\":\"Not reviewed\",\"is_filterable\":true,\"name\":\"tnt__pia_reviewed\",\"oasis\":{\"name\":\"tnt__pia_reviewed\"},\"ui\":{\"display_name\":\"PIA status\",\"placeholder\":\"Add PIA reviewed\"}},{\"field_type\":\"rich_text\",\"data_name\":\"tnt__pr_link_mitigation_note\",\"db_name\":\"tnt__pr_link_mitigation_note\",\"description\":\"Stores the URL of the fix PR, or a brief explanation if no PR was created.\",\"is_filterable\":false,\"is_required\":false,\"name\":\"tnt__pr_link_mitigation_note\",\"oasis\":{\"name\":\"tnt__pr_link_mitigation_note\"},\"ui\":{\"display_name\":\"PR link / Mitigation note\",\"placeholder\":\"Fix PR link or reason if none.\",\"tooltip\":\"Provide the link to the PR that fixes the issue. If no PR was created, please explain why.\"}},{\"field_type\":\"text\",\"data_name\":\"tnt__rca\",\"db_name\":\"tnt__rca\",\"description\":\"Provide the link to the RCA article\",\"is_filterable\":false,\"name\":\"tnt__rca\",\"oasis\":{\"name\":\"tnt__rca\"},\"ui\":{\"display_name\":\"RCA\",\"placeholder\":\"Add RCA\",\"tooltip\":\"Link to the RCA article\"}},{\"field_type\":\"rich_text\",\"data_name\":\"tnt__reasoning\",\"db_name\":\"tnt__reasoning\",\"is_filterable\":false,\"name\":\"tnt__reasoning\",\"oasis\":{\"name\":\"tnt__reasoning\"},\"ui\":{\"display_name\":\"Reasoning\",\"placeholder\":\"How do you know that this alert is harmless\",\"tooltip\":\"Provide the reason for marking this incident as cancelled or declared\"}},{\"field_type\":\"array\",\"base_type\":\"enum\",\"allowed_values\":[\"ap-south-1\",\"eu-central-1\",\"us-east-1\"],\"data_name\":\"tnt__region\",\"db_name\":\"tnt__region\",\"is_filterable\":true,\"name\":\"tnt__region\",\"oasis\":{\"name\":\"tnt__region\"},\"ui\":{\"display_name\":\"Impacted Regions\",\"placeholder\":\"Add Impacted Regions\"}}],\"invalidate_on_field_update\":[\"apps\"],\"type\":\"field_descriptor\"},\"type\":\"default\"}],\"input_values\":[{\"fields\":[{\"name\":\"id\",\"value\":{\"type\":\"jsonata_expression\",\"value\":\"$get('incident_updated_1', 'output').id\"}},{\"name\":\"severity\",\"value\":{\"type\":\"jsonata_expression\",\"value\":\"$get('incident_updated_1', 'output').severity.id\"}},{\"name\":\"tnt__rca\",\"value\":{\"type\":\"text_template\",\"value\":\"{% expr $get('create_article_1', 'output').id %}\"}}],\"port_name\":\"input\"}],\"name\":\"Update Incident\",\"next_steps\":[{\"next_port_name\":\"input\",\"next_step_reference_key\":\"add_comment_1\",\"port_name\":\"output\"}],\"operation\":{\"namespace\":\"devrev\",\"slug\":\"update_incident\"},\"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\":\"composite\",\"composite_type\":\"_gen:resource\",\"data_name\":\"resource\",\"db_name\":\"resource\",\"description\":\"Resource details.\",\"name\":\"resource\",\"oasis\":{\"name\":\"resource\"}},{\"field_type\":\"text\",\"data_name\":\"title\",\"db_name\":\"title\",\"description\":\"Title of the article.\",\"name\":\"title\",\"oasis\":{\"name\":\"title\"}},{\"field_type\":\"id\",\"data_name\":\"id\",\"db_name\":\"id\",\"description\":\"ID of the article.\",\"id_type\":[\"article\"],\"is_required\":true,\"name\":\"id\",\"oasis\":{\"name\":\"id\"}}],\"name\":\"_gen:article-summary\"},{\"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\":\"composite\",\"composite_type\":\"_gen:resource\",\"data_name\":\"resource\",\"db_name\":\"resource\",\"description\":\"Resource details.\",\"name\":\"resource\",\"oasis\":{\"name\":\"resource\"}},{\"field_type\":\"text\",\"data_name\":\"title\",\"db_name\":\"title\",\"description\":\"Title of the article.\",\"name\":\"title\",\"oasis\":{\"name\":\"title\"}},{\"field_type\":\"id\",\"data_name\":\"id\",\"db_name\":\"id\",\"description\":\"ID of the article.\",\"id_type\":[\"article\"],\"is_required\":true,\"name\":\"id\",\"oasis\":{\"name\":\"id\"}}],\"name\":\"_gen:article-summary_95fca9c7\"},{\"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\":\"ID of the artifact.\",\"id_type\":[\"artifact\"],\"is_required\":true,\"name\":\"id\",\"oasis\":{\"name\":\"id\"}}],\"name\":\"_gen:artifact-summary\"},{\"description\":\"The properties of an enum value.\",\"fields\":[{\"field_type\":\"int\",\"data_name\":\"id\",\"db_name\":\"id\",\"description\":\"The unique ID of the enum value.\",\"is_required\":true,\"name\":\"id\",\"oasis\":{\"name\":\"id\"}},{\"field_type\":\"text\",\"data_name\":\"label\",\"db_name\":\"label\",\"description\":\"The display label of the enum value.\",\"is_required\":true,\"name\":\"label\",\"oasis\":{\"name\":\"label\"}},{\"field_type\":\"json_value\",\"data_name\":\"value\",\"db_name\":\"value\",\"description\":\"The actual value of the enum value.\",\"name\":\"value\",\"oasis\":{\"name\":\"value\"}}],\"name\":\"_gen:count\"},{\"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\\nRev organization from your primary customer record. If none is\\navailable, a good alternative is the email address/phone number\\nwhich could uniquely identify the user. If none is specified, a\\nsystem-generated identifier will be assigned to the user.\\n\",\"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\":\"composite\",\"composite_type\":\"_gen:rev_org\",\"data_name\":\"rev_org\",\"db_name\":\"rev_org\",\"name\":\"rev_org\",\"oasis\":{\"name\":\"rev_org\"}},{\"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\"},{\"description\":\"Details of the impact due to the incident.\",\"fields\":[{\"field_type\":\"composite\",\"composite_type\":\"_gen:count\",\"data_name\":\"count\",\"db_name\":\"count\",\"description\":\"The properties of an enum value.\",\"name\":\"count\",\"oasis\":{\"name\":\"count\"}},{\"field_type\":\"array\",\"base_type\":\"composite\",\"composite_type\":\"_gen:account-summary\",\"data_name\":\"customer_ids\",\"db_name\":\"customer_ids\",\"name\":\"customer_ids\",\"oasis\":{\"name\":\"customer_ids\"}}],\"name\":\"_gen:impact\"},{\"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\\nRev organization from your primary customer record. If none is\\navailable, a good alternative is the email address/phone number\\nwhich could uniquely identify the user. If none is specified, a\\nsystem-generated identifier will be assigned to the user.\\n\",\"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\":\"composite\",\"composite_type\":\"_gen:rev_org\",\"data_name\":\"rev_org\",\"db_name\":\"rev_org\",\"name\":\"rev_org\",\"oasis\":{\"name\":\"rev_org\"}},{\"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\"},{\"fields\":[{\"field_type\":\"text\",\"data_name\":\"name\",\"db_name\":\"name\",\"description\":\"Name of the part.\",\"is_required\":true,\"name\":\"name\",\"oasis\":{\"name\":\"name\"}},{\"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\":\"enum\",\"allowed_values\":[\"capability\",\"enhancement\",\"feature\",\"linkable\",\"product\",\"runnable\"],\"data_name\":\"type\",\"db_name\":\"type\",\"is_required\":true,\"name\":\"type\",\"oasis\":{\"name\":\"type\"}},{\"field_type\":\"id\",\"data_name\":\"id\",\"db_name\":\"id\",\"description\":\"ID of the part attached to the incident.\",\"id_type\":[\"capability\",\"feature\",\"product\",\"runnable\",\"linkable\",\"enhancement\"],\"is_required\":true,\"name\":\"id\",\"oasis\":{\"name\":\"id\"}}],\"name\":\"_gen:part-summary\"},{\"description\":\"The properties of an enum value.\",\"fields\":[{\"field_type\":\"int\",\"data_name\":\"id\",\"db_name\":\"id\",\"description\":\"The unique ID of the enum value.\",\"is_required\":true,\"name\":\"id\",\"oasis\":{\"name\":\"id\"}},{\"field_type\":\"text\",\"data_name\":\"label\",\"db_name\":\"label\",\"description\":\"The label for the entity that reported the incident. Use id instead as labels can change overtime.\",\"is_required\":true,\"name\":\"label\",\"oasis\":{\"name\":\"label\"}},{\"field_type\":\"json_value\",\"data_name\":\"value\",\"db_name\":\"value\",\"description\":\"The actual value of the enum value.\",\"name\":\"value\",\"oasis\":{\"name\":\"value\"}}],\"name\":\"_gen:reported_by\"},{\"description\":\"Resource details.\",\"fields\":[{\"field_type\":\"array\",\"base_type\":\"composite\",\"composite_type\":\"_gen:artifact-summary\",\"data_name\":\"artifacts\",\"db_name\":\"artifacts\",\"name\":\"artifacts\",\"oasis\":{\"name\":\"artifacts\"}},{\"field_type\":\"text\",\"data_name\":\"url\",\"db_name\":\"url\",\"description\":\"URL of the resource (relevant only for type url).\",\"name\":\"url\",\"oasis\":{\"name\":\"url\"}}],\"name\":\"_gen:resource\"},{\"fields\":[{\"field_type\":\"text\",\"data_name\":\"display_id\",\"db_name\":\"display_id\",\"description\":\"Human-readable object ID unique to the Dev organization.\",\"name\":\"display_id\",\"oasis\":{\"name\":\"display_id\"}},{\"field_type\":\"text\",\"data_name\":\"display_name\",\"db_name\":\"display_name\",\"description\":\"Name of the Organization.\",\"name\":\"display_name\",\"oasis\":{\"name\":\"display_name\"}},{\"field_type\":\"text\",\"data_name\":\"id\",\"db_name\":\"id\",\"description\":\"Globally unique object ID.\",\"is_required\":true,\"name\":\"id\",\"oasis\":{\"name\":\"id\"}},{\"field_type\":\"enum\",\"allowed_values\":[\"account\",\"rev_org\"],\"data_name\":\"type\",\"db_name\":\"type\",\"is_required\":true,\"name\":\"type\",\"oasis\":{\"name\":\"type\"}}],\"name\":\"_gen:rev_org\"},{\"description\":\"The properties of an enum value.\",\"fields\":[{\"field_type\":\"int\",\"data_name\":\"id\",\"db_name\":\"id\",\"description\":\"The unique ID of the enum value.\",\"is_required\":true,\"name\":\"id\",\"oasis\":{\"name\":\"id\"}},{\"field_type\":\"text\",\"data_name\":\"label\",\"db_name\":\"label\",\"description\":\"The label for the severity. Use id instead as labels can change overtime.\",\"is_required\":true,\"name\":\"label\",\"oasis\":{\"name\":\"label\"}},{\"field_type\":\"json_value\",\"data_name\":\"value\",\"db_name\":\"value\",\"description\":\"The actual value of the enum value.\",\"name\":\"value\",\"oasis\":{\"name\":\"value\"}}],\"name\":\"_gen:severity\"},{\"description\":\"The properties of an enum value.\",\"fields\":[{\"field_type\":\"int\",\"data_name\":\"id\",\"db_name\":\"id\",\"description\":\"The unique ID of the enum value.\",\"is_required\":true,\"name\":\"id\",\"oasis\":{\"name\":\"id\"}},{\"field_type\":\"text\",\"data_name\":\"label\",\"db_name\":\"label\",\"description\":\"The label for the source. Use id instead as labels can change overtime.\",\"is_required\":true,\"name\":\"label\",\"oasis\":{\"name\":\"label\"}},{\"field_type\":\"json_value\",\"data_name\":\"value\",\"db_name\":\"value\",\"description\":\"The actual value of the enum value.\",\"name\":\"value\",\"oasis\":{\"name\":\"value\"}}],\"name\":\"_gen:source\"},{\"description\":\"Describes the current stage of a object.\",\"fields\":[{\"field_type\":\"text\",\"data_name\":\"name\",\"db_name\":\"name\",\"description\":\"The name of the stage.\",\"name\":\"name\",\"oasis\":{\"name\":\"name\"}}],\"name\":\"_gen:stage\"},{\"fields\":[{\"field_type\":\"text\",\"data_name\":\"display_id\",\"db_name\":\"display_id\",\"description\":\"Human-readable object ID unique to the Dev organization.\",\"name\":\"display_id\",\"oasis\":{\"name\":\"display_id\"}},{\"field_type\":\"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\":\"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\\nRev organization from your primary customer record. If none is\\navailable, a good alternative is the email address/phone number\\nwhich could uniquely identify the user. If none is specified, a\\nsystem-generated identifier will be assigned to the user.\\n\",\"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\":\"text\",\"data_name\":\"id\",\"db_name\":\"id\",\"description\":\"Globally unique object ID.\",\"is_required\":true,\"name\":\"id\",\"oasis\":{\"name\":\"id\"}},{\"field_type\":\"composite\",\"composite_type\":\"_gen:rev_org\",\"data_name\":\"rev_org\",\"db_name\":\"rev_org\",\"name\":\"rev_org\",\"oasis\":{\"name\":\"rev_org\"}},{\"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\"}}],\"name\":\"_gen:user-summary\"}],\"field_descriptors\":[{\"field_type\":\"timestamp\",\"data_name\":\"acknowledged_date\",\"db_name\":\"acknowledged_date\",\"description\":\"Timestamp when the incident was acknowledged.\",\"name\":\"acknowledged_date\",\"oasis\":{\"name\":\"acknowledged_date\"}},{\"field_type\":\"timestamp\",\"data_name\":\"actual_close_date\",\"db_name\":\"actual_close_date\",\"description\":\"Timestamp when the incident was actually resolved.\",\"name\":\"actual_close_date\",\"oasis\":{\"name\":\"actual_close_date\"}},{\"field_type\":\"array\",\"base_type\":\"composite\",\"composite_type\":\"_gen:part-summary\",\"data_name\":\"applies_to_parts\",\"db_name\":\"applies_to_parts\",\"name\":\"applies_to_parts\",\"oasis\":{\"name\":\"applies_to_parts\"}},{\"field_type\":\"text\",\"data_name\":\"body\",\"db_name\":\"body\",\"description\":\"Body of the incident.\",\"name\":\"body\",\"oasis\":{\"name\":\"body\"}},{\"field_type\":\"composite\",\"composite_type\":\"_gen:created_by\",\"data_name\":\"created_by\",\"db_name\":\"created_by\",\"name\":\"created_by\",\"oasis\":{\"name\":\"created_by\"}},{\"field_type\":\"timestamp\",\"data_name\":\"created_date\",\"db_name\":\"created_date\",\"description\":\"Timestamp when the object was created.\",\"name\":\"created_date\",\"oasis\":{\"name\":\"created_date\"}},{\"field_type\":\"text\",\"data_name\":\"display_id\",\"db_name\":\"display_id\",\"description\":\"Human-readable object ID unique to the Dev organization.\",\"name\":\"display_id\",\"oasis\":{\"name\":\"display_id\"}},{\"field_type\":\"timestamp\",\"data_name\":\"identified_date\",\"db_name\":\"identified_date\",\"description\":\"Time when the incident was identified/reported.\",\"name\":\"identified_date\",\"oasis\":{\"name\":\"identified_date\"}},{\"field_type\":\"composite\",\"composite_type\":\"_gen:impact\",\"data_name\":\"impact\",\"db_name\":\"impact\",\"description\":\"Details of the impact due to the incident.\",\"name\":\"impact\",\"oasis\":{\"name\":\"impact\"}},{\"field_type\":\"timestamp\",\"data_name\":\"mitigated_date\",\"db_name\":\"mitigated_date\",\"description\":\"Timestamp when the incident was mitigated.\",\"name\":\"mitigated_date\",\"oasis\":{\"name\":\"mitigated_date\"}},{\"field_type\":\"composite\",\"composite_type\":\"_gen:modified_by\",\"data_name\":\"modified_by\",\"db_name\":\"modified_by\",\"name\":\"modified_by\",\"oasis\":{\"name\":\"modified_by\"}},{\"field_type\":\"timestamp\",\"data_name\":\"modified_date\",\"db_name\":\"modified_date\",\"description\":\"Timestamp when the object was last modified.\",\"name\":\"modified_date\",\"oasis\":{\"name\":\"modified_date\"}},{\"field_type\":\"array\",\"base_type\":\"composite\",\"composite_type\":\"_gen:user-summary\",\"data_name\":\"owned_by\",\"db_name\":\"owned_by\",\"name\":\"owned_by\",\"oasis\":{\"name\":\"owned_by\"}},{\"field_type\":\"array\",\"base_type\":\"composite\",\"composite_type\":\"_gen:article-summary\",\"data_name\":\"pia\",\"db_name\":\"pia\",\"name\":\"pia\",\"oasis\":{\"name\":\"pia\"}},{\"field_type\":\"array\",\"base_type\":\"composite\",\"composite_type\":\"_gen:article-summary_95fca9c7\",\"data_name\":\"playbooks\",\"db_name\":\"playbooks\",\"name\":\"playbooks\",\"oasis\":{\"name\":\"playbooks\"}},{\"field_type\":\"composite\",\"composite_type\":\"_gen:reported_by\",\"data_name\":\"reported_by\",\"db_name\":\"reported_by\",\"description\":\"The entity that reported the incident.\",\"name\":\"reported_by\",\"oasis\":{\"name\":\"reported_by\"}},{\"field_type\":\"composite\",\"composite_type\":\"_gen:severity\",\"data_name\":\"severity\",\"db_name\":\"severity\",\"description\":\"Severity of the incident.\",\"is_required\":true,\"name\":\"severity\",\"oasis\":{\"name\":\"severity\"}},{\"field_type\":\"composite\",\"composite_type\":\"_gen:source\",\"data_name\":\"source\",\"db_name\":\"source\",\"description\":\"The source of the incident.\",\"name\":\"source\",\"oasis\":{\"name\":\"source\"}},{\"field_type\":\"composite\",\"composite_type\":\"_gen:stage\",\"data_name\":\"stage\",\"db_name\":\"stage\",\"description\":\"Stage of the incident.\",\"name\":\"stage\",\"oasis\":{\"name\":\"stage\"}},{\"field_type\":\"array\",\"base_type\":\"composite\",\"composite_type\":\"_gen:tags\",\"data_name\":\"tags\",\"db_name\":\"tags\",\"description\":\"Tags associated with the object.\",\"name\":\"tags\",\"oasis\":{\"name\":\"tags\"}},{\"field_type\":\"timestamp\",\"data_name\":\"target_close_date\",\"db_name\":\"target_close_date\",\"description\":\"Timestamp when the incident is expected to be resolved.\",\"name\":\"target_close_date\",\"oasis\":{\"name\":\"target_close_date\"}},{\"field_type\":\"text\",\"data_name\":\"title\",\"db_name\":\"title\",\"description\":\"Title of the incident.\",\"is_required\":true,\"name\":\"title\",\"oasis\":{\"name\":\"title\"}},{\"field_type\":\"id\",\"data_name\":\"id\",\"db_name\":\"id\",\"description\":\"ID of the incident.\",\"id_type\":[\"incident\"],\"is_required\":true,\"name\":\"id\",\"oasis\":{\"name\":\"id\"}},{\"field_type\":\"enum\",\"allowed_values\":[\"No\",\"Yes\"],\"data_name\":\"tnt__alert_generated\",\"db_name\":\"tnt__alert_generated\",\"is_filterable\":true,\"name\":\"tnt__alert_generated\",\"oasis\":{\"name\":\"tnt__alert_generated\"},\"ui\":{\"client_overrides\":[{\"client_name\":\"web\",\"view_overrides\":[{\"is_hidden\":false,\"view_name\":\"detail\"}]}],\"display_name\":\"Alert Generated\",\"is_active_in_detail_view\":true,\"is_groupable\":true,\"is_hidden\":false,\"placeholder\":\"Add Alert Generated\"}},{\"field_type\":\"enum\",\"allowed_values\":[\"No\",\"Yes\"],\"data_name\":\"tnt__customer_impact\",\"db_name\":\"tnt__customer_impact\",\"is_filterable\":true,\"name\":\"tnt__customer_impact\",\"oasis\":{\"name\":\"tnt__customer_impact\"},\"ui\":{\"client_overrides\":[{\"client_name\":\"web\",\"view_overrides\":[{\"is_hidden\":false,\"view_name\":\"detail\"}]}],\"display_name\":\"Customer Impact\",\"is_active_in_detail_view\":true,\"is_hidden\":false,\"placeholder\":\"Add Customer Impact\"}},{\"field_type\":\"enum\",\"allowed_values\":[\"No\",\"Yes\"],\"data_name\":\"tnt__customer_reported\",\"db_name\":\"tnt__customer_reported\",\"is_filterable\":true,\"name\":\"tnt__customer_reported\",\"oasis\":{\"name\":\"tnt__customer_reported\"},\"ui\":{\"client_overrides\":[{\"client_name\":\"web\",\"view_overrides\":[{\"is_hidden\":false,\"view_name\":\"detail\"}]}],\"display_name\":\"Customer Reported\",\"is_active_in_detail_view\":true,\"is_hidden\":false,\"placeholder\":\"Add Customer Reported\"}},{\"field_type\":\"array\",\"base_type\":\"enum\",\"allowed_values\":[\"DEV\",\"PROD\",\"QA\"],\"data_name\":\"tnt__impacted_environments\",\"db_name\":\"tnt__impacted_environments\",\"is_filterable\":true,\"name\":\"tnt__impacted_environments\",\"oasis\":{\"name\":\"tnt__impacted_environments\"},\"ui\":{\"client_overrides\":[{\"client_name\":\"web\",\"view_overrides\":[{\"is_hidden\":false,\"view_name\":\"detail\"}]}],\"display_name\":\"Impacted Environments\",\"is_active_in_detail_view\":true,\"is_hidden\":false,\"placeholder\":\"Add Impacted Environments\"}},{\"field_type\":\"enum\",\"allowed_values\":[\"New\",\"Regression\",\"Reoccuring\"],\"data_name\":\"tnt__incident_category\",\"db_name\":\"tnt__incident_category\",\"is_filterable\":true,\"name\":\"tnt__incident_category\",\"oasis\":{\"name\":\"tnt__incident_category\"},\"ui\":{\"client_overrides\":[{\"client_name\":\"web\",\"view_overrides\":[{\"is_hidden\":false,\"view_name\":\"detail\"}]}],\"display_name\":\"Incident Category\",\"is_active_in_detail_view\":true,\"is_groupable\":true,\"is_hidden\":false,\"placeholder\":\"Add Incident Category\"}},{\"field_type\":\"id\",\"data_name\":\"tnt__pia_owner\",\"db_name\":\"tnt__pia_owner\",\"id_type\":[\"devu\"],\"is_filterable\":true,\"name\":\"tnt__pia_owner\",\"oasis\":{\"name\":\"tnt__pia_owner\"},\"ui\":{\"client_overrides\":[{\"client_name\":\"web\",\"view_overrides\":[{\"is_hidden\":false,\"view_name\":\"detail\"}]}],\"display_name\":\"PIA Owner\",\"is_active_in_detail_view\":true,\"is_groupable\":true,\"placeholder\":\"Add PIA Owner\"}},{\"field_type\":\"enum\",\"allowed_values\":[\"Not reviewed\",\"Reviewed\"],\"data_name\":\"tnt__pia_reviewed\",\"db_name\":\"tnt__pia_reviewed\",\"default_value\":\"Not reviewed\",\"is_filterable\":true,\"name\":\"tnt__pia_reviewed\",\"oasis\":{\"name\":\"tnt__pia_reviewed\"},\"ui\":{\"client_overrides\":[{\"client_name\":\"web\",\"view_overrides\":[{\"is_hidden\":false,\"view_name\":\"detail\"},{\"is_hidden\":false,\"view_name\":\"create\"}]}],\"display_name\":\"PIA status\",\"is_active_in_detail_view\":true,\"is_hidden_during_create\":false,\"placeholder\":\"Add PIA reviewed\"}},{\"field_type\":\"rich_text\",\"data_name\":\"tnt__pr_link_mitigation_note\",\"db_name\":\"tnt__pr_link_mitigation_note\",\"description\":\"Stores the URL of the fix PR, or a brief explanation if no PR was created.\",\"is_filterable\":false,\"is_required\":false,\"name\":\"tnt__pr_link_mitigation_note\",\"oasis\":{\"name\":\"tnt__pr_link_mitigation_note\"},\"ui\":{\"client_overrides\":[{\"client_name\":\"web\",\"view_overrides\":[{\"is_hidden\":false,\"view_name\":\"detail\"},{\"is_hidden\":true,\"view_name\":\"create\"}]}],\"display_name\":\"PR link / Mitigation note\",\"is_active_in_detail_view\":true,\"is_hidden\":false,\"is_hidden_during_create\":true,\"placeholder\":\"Fix PR link or reason if none.\",\"tooltip\":\"Provide the link to the PR that fixes the issue. If no PR was created, please explain why.\"}},{\"field_type\":\"text\",\"data_name\":\"tnt__rca\",\"db_name\":\"tnt__rca\",\"description\":\"Provide the link to the RCA article\",\"is_filterable\":false,\"name\":\"tnt__rca\",\"oasis\":{\"name\":\"tnt__rca\"},\"ui\":{\"client_overrides\":[{\"client_name\":\"web\",\"view_overrides\":[{\"is_hidden\":false,\"view_name\":\"detail\"},{\"is_hidden\":true,\"view_name\":\"create\"}]}],\"display_name\":\"RCA\",\"is_active_in_detail_view\":true,\"is_hidden_during_create\":true,\"placeholder\":\"Add RCA\",\"tooltip\":\"Link to the RCA article\"}},{\"field_type\":\"rich_text\",\"data_name\":\"tnt__reasoning\",\"db_name\":\"tnt__reasoning\",\"is_filterable\":false,\"name\":\"tnt__reasoning\",\"oasis\":{\"name\":\"tnt__reasoning\"},\"ui\":{\"client_overrides\":[{\"client_name\":\"web\",\"view_overrides\":[{\"is_hidden\":false,\"view_name\":\"detail\"},{\"is_hidden\":false,\"view_name\":\"create\"}]}],\"display_name\":\"Reasoning\",\"is_active_in_detail_view\":true,\"is_hidden_during_create\":false,\"placeholder\":\"How do you know that this alert is harmless\",\"tooltip\":\"Provide the reason for marking this incident as cancelled or declared\"}},{\"field_type\":\"array\",\"base_type\":\"enum\",\"allowed_values\":[\"ap-south-1\",\"eu-central-1\",\"us-east-1\"],\"data_name\":\"tnt__region\",\"db_name\":\"tnt__region\",\"is_filterable\":true,\"name\":\"tnt__region\",\"oasis\":{\"name\":\"tnt__region\"},\"ui\":{\"client_overrides\":[{\"client_name\":\"web\",\"view_overrides\":[{\"is_hidden\":false,\"view_name\":\"detail\"}]}],\"display_name\":\"Impacted Regions\",\"is_active_in_detail_view\":true,\"is_hidden\":false,\"placeholder\":\"Add Impacted Regions\"}}],\"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\":\"update_incident_1\",\"ui_metadata\":{\"position\":{\"x\":1180,\"y\":1410}}},{\"description\":\"Updates an incident\",\"input_ports\":[{\"name\":\"input\",\"schema\":{\"composite_schemas\":[{\"fields\":[{\"field_type\":\"array\",\"base_type\":\"id\",\"data_name\":\"set\",\"db_name\":\"set\",\"description\":\"Sets the parts to which the incident is applicable to\",\"id_type\":[\"capability\",\"feature\",\"product\",\"runnable\",\"linkable\",\"enhancement\"],\"name\":\"set\",\"oasis\":{\"name\":\"set\"}}],\"name\":\"_gen:applies_to_parts\"},{\"fields\":[{\"field_type\":\"array\",\"max_items\":50,\"base_type\":\"id\",\"data_name\":\"set\",\"db_name\":\"set\",\"description\":\"The IDs of the customers impacted by the incident.\",\"id_type\":[\"account\"],\"is_required\":false,\"name\":\"set\",\"oasis\":{\"name\":\"set\"}}],\"name\":\"_gen:customer_ids\"},{\"fields\":[{\"field_type\":\"int\",\"data_name\":\"count\",\"db_name\":\"count\",\"description\":\"Count of customers impacted.\",\"name\":\"count\",\"oasis\":{\"name\":\"count\"}},{\"field_type\":\"composite\",\"composite_type\":\"_gen:customer_ids\",\"data_name\":\"customer_ids\",\"db_name\":\"customer_ids\",\"name\":\"customer_ids\",\"oasis\":{\"name\":\"customer_ids\"}}],\"name\":\"_gen:impact\"},{\"fields\":[{\"field_type\":\"array\",\"max_items\":1,\"min_items\":1,\"base_type\":\"id\",\"data_name\":\"set\",\"db_name\":\"set\",\"description\":\"The users that own the incident\",\"id_type\":[\"devu\",\"sysu\",\"svcacc\"],\"is_required\":false,\"name\":\"set\",\"oasis\":{\"name\":\"set\"}}],\"name\":\"_gen:owned_by\"},{\"fields\":[{\"field_type\":\"array\",\"max_items\":1,\"min_items\":1,\"base_type\":\"id\",\"data_name\":\"set\",\"db_name\":\"set\",\"description\":\"The article id of the Post-Incident Analysis(PIA) of the incident.\\n\",\"id_type\":[\"article\"],\"is_required\":false,\"name\":\"set\",\"oasis\":{\"name\":\"set\"}}],\"name\":\"_gen:pia\"},{\"description\":\"Update object for TagWithValue.\",\"fields\":[{\"field_type\":\"id\",\"data_name\":\"tag_id\",\"db_name\":\"tag_id\",\"description\":\"ID of the referenced tag\",\"id_type\":[\"tag\"],\"name\":\"tag_id\",\"oasis\":{\"name\":\"tag_id\"}}],\"name\":\"_gen:set\"},{\"fields\":[{\"field_type\":\"array\",\"base_type\":\"composite\",\"composite_type\":\"_gen:set\",\"data_name\":\"set\",\"db_name\":\"set\",\"description\":\"Sets the tags associated with the object.\",\"name\":\"set\",\"oasis\":{\"name\":\"set\"}}],\"name\":\"_gen:tags\"}],\"conditions\":[{\"effects\":[{\"fields\":[\"stage\"],\"invalid\":true}],\"expression_ast\":[\"not\",[\"in\",\"$stage\",\"don:core:dvrv-us-1:devo/0:custom_stage/16\",\"don:core:dvrv-us-1:devo/0:custom_stage/101\",\"don:core:dvrv-us-1:devo/0:custom_stage/83\",\"don:core:dvrv-us-1:devo/0:custom_stage/81\",\"don:core:dvrv-us-1:devo/0:custom_stage/82\",\"don:core:dvrv-us-1:devo/0:custom_stage/3\",\"don:core:dvrv-us-1:devo/0:custom_stage/8\",\"don:core:dvrv-us-1:devo/0:custom_stage/2\",\"don:core:dvrv-us-1:devo/0:custom_stage/12\"]]}],\"field_descriptors\":[{\"field_type\":\"timestamp\",\"data_name\":\"acknowledged_date\",\"db_name\":\"acknowledged_date\",\"description\":\"Timestamp when the incident was acknowledged.\",\"name\":\"acknowledged_date\",\"oasis\":{\"name\":\"acknowledged_date\"}},{\"field_type\":\"composite\",\"composite_type\":\"_gen:applies_to_parts\",\"data_name\":\"applies_to_parts\",\"db_name\":\"applies_to_parts\",\"name\":\"applies_to_parts\",\"oasis\":{\"name\":\"applies_to_parts\"}},{\"field_type\":\"text\",\"data_name\":\"body\",\"db_name\":\"body\",\"description\":\"Body of the incident.\",\"name\":\"body\",\"oasis\":{\"name\":\"body\"}},{\"field_type\":\"id\",\"data_name\":\"id\",\"db_name\":\"id\",\"description\":\"The ID of the incident to be updated.\",\"id_type\":[\"incident\"],\"is_required\":true,\"name\":\"id\",\"oasis\":{\"name\":\"id\"}},{\"field_type\":\"timestamp\",\"data_name\":\"identified_date\",\"db_name\":\"identified_date\",\"description\":\"Time when the incident was identified/reported.\",\"name\":\"identified_date\",\"oasis\":{\"name\":\"identified_date\"}},{\"field_type\":\"composite\",\"composite_type\":\"_gen:impact\",\"data_name\":\"impact\",\"db_name\":\"impact\",\"name\":\"impact\",\"oasis\":{\"name\":\"impact\"}},{\"field_type\":\"timestamp\",\"data_name\":\"mitigated_date\",\"db_name\":\"mitigated_date\",\"description\":\"Timestamp when the incident was mitigated.\",\"name\":\"mitigated_date\",\"oasis\":{\"name\":\"mitigated_date\"}},{\"field_type\":\"composite\",\"composite_type\":\"_gen:owned_by\",\"data_name\":\"owned_by\",\"db_name\":\"owned_by\",\"name\":\"owned_by\",\"oasis\":{\"name\":\"owned_by\"}},{\"field_type\":\"composite\",\"composite_type\":\"_gen:pia\",\"data_name\":\"pia\",\"db_name\":\"pia\",\"name\":\"pia\",\"oasis\":{\"name\":\"pia\"}},{\"field_type\":\"int\",\"data_name\":\"severity\",\"db_name\":\"severity\",\"description\":\"Severity of the incident.\",\"is_required\":true,\"name\":\"severity\",\"oasis\":{\"name\":\"severity\"}},{\"field_type\":\"composite\",\"composite_type\":\"_gen:tags\",\"data_name\":\"tags\",\"db_name\":\"tags\",\"name\":\"tags\",\"oasis\":{\"name\":\"tags\"}},{\"field_type\":\"timestamp\",\"data_name\":\"target_close_date\",\"db_name\":\"target_close_date\",\"description\":\"Timestamp when the incident is expected to be resolved.\",\"name\":\"target_close_date\",\"oasis\":{\"name\":\"target_close_date\"}},{\"field_type\":\"text\",\"data_name\":\"title\",\"db_name\":\"title\",\"description\":\"Title of the incident.\",\"name\":\"title\",\"oasis\":{\"name\":\"title\"}},{\"field_type\":\"id\",\"data_name\":\"stage\",\"db_name\":\"stage\",\"description\":\"The stage of the incident.\",\"id_type\":[\"custom_stage\"],\"name\":\"stage\",\"oasis\":{\"name\":\"stage\"}},{\"field_type\":\"array\",\"base_type\":\"enum\",\"allowed_values\":[\"agent_invocation_snapin\",\"betterstack\",\"slack\",\"incident_pager\"],\"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\"}},{\"supported_filter_ops\":[\"any\",\"not_any\",\"empty\",\"not_empty\"],\"field_type\":\"enum\",\"allowed_values\":[\"No\",\"Yes\"],\"data_name\":\"tnt__alert_generated\",\"db_name\":\"tnt__alert_generated\",\"is_filterable\":true,\"name\":\"tnt__alert_generated\",\"oasis\":{\"name\":\"tnt__alert_generated\"},\"ui\":{\"display_name\":\"Alert Generated\",\"placeholder\":\"Add Alert Generated\"}},{\"supported_filter_ops\":[\"any\",\"not_any\",\"empty\",\"not_empty\"],\"field_type\":\"enum\",\"allowed_values\":[\"No\",\"Yes\"],\"data_name\":\"tnt__customer_impact\",\"db_name\":\"tnt__customer_impact\",\"is_filterable\":true,\"name\":\"tnt__customer_impact\",\"oasis\":{\"name\":\"tnt__customer_impact\"},\"ui\":{\"display_name\":\"Customer Impact\",\"placeholder\":\"Add Customer Impact\"}},{\"supported_filter_ops\":[\"any\",\"not_any\",\"empty\",\"not_empty\"],\"field_type\":\"enum\",\"allowed_values\":[\"No\",\"Yes\"],\"data_name\":\"tnt__customer_reported\",\"db_name\":\"tnt__customer_reported\",\"is_filterable\":true,\"name\":\"tnt__customer_reported\",\"oasis\":{\"name\":\"tnt__customer_reported\"},\"ui\":{\"display_name\":\"Customer Reported\",\"placeholder\":\"Add Customer Reported\"}},{\"supported_filter_ops\":[\"all\",\"any\",\"not_any\",\"empty\",\"not_empty\"],\"field_type\":\"array\",\"base_type\":\"enum\",\"allowed_values\":[\"DEV\",\"PROD\",\"QA\"],\"data_name\":\"tnt__impacted_environments\",\"db_name\":\"tnt__impacted_environments\",\"is_filterable\":true,\"name\":\"tnt__impacted_environments\",\"oasis\":{\"name\":\"tnt__impacted_environments\"},\"ui\":{\"display_name\":\"Impacted Environments\",\"placeholder\":\"Add Impacted Environments\"}},{\"supported_filter_ops\":[\"any\",\"not_any\",\"empty\",\"not_empty\"],\"field_type\":\"enum\",\"allowed_values\":[\"New\",\"Regression\",\"Reoccuring\"],\"data_name\":\"tnt__incident_category\",\"db_name\":\"tnt__incident_category\",\"is_filterable\":true,\"name\":\"tnt__incident_category\",\"oasis\":{\"name\":\"tnt__incident_category\"},\"ui\":{\"display_name\":\"Incident Category\",\"placeholder\":\"Add Incident Category\"}},{\"supported_filter_ops\":[\"any\",\"not_any\",\"empty\",\"not_empty\"],\"field_type\":\"id\",\"data_name\":\"tnt__pia_owner\",\"db_name\":\"tnt__pia_owner\",\"id_type\":[\"devu\"],\"is_filterable\":true,\"name\":\"tnt__pia_owner\",\"oasis\":{\"name\":\"tnt__pia_owner\"},\"ui\":{\"display_name\":\"PIA Owner\",\"placeholder\":\"Add PIA Owner\"}},{\"field_type\":\"bool\",\"data_name\":\"tnt__pia_published\",\"db_name\":\"tnt__pia_published\",\"description\":\"Toggle yes, once the PIA gets published\",\"is_filterable\":true,\"name\":\"tnt__pia_published\",\"oasis\":{\"name\":\"tnt__pia_published\"},\"ui\":{\"display_name\":\"PIA Published\",\"placeholder\":\"Has the PIA been published\",\"tooltip\":\"Toggle yes, once the PIA gets published\"}},{\"supported_filter_ops\":[\"any\",\"not_any\",\"empty\",\"not_empty\"],\"field_type\":\"enum\",\"allowed_values\":[\"Not reviewed\",\"Reviewed\"],\"data_name\":\"tnt__pia_reviewed\",\"db_name\":\"tnt__pia_reviewed\",\"default_value\":\"Not reviewed\",\"description\":\"This is used to track if the PIA is reviewed in the weekly PIA reviews\",\"is_filterable\":true,\"name\":\"tnt__pia_reviewed\",\"oasis\":{\"name\":\"tnt__pia_reviewed\"},\"ui\":{\"display_name\":\"PIA status\",\"placeholder\":\"Add PIA reviewed\"}},{\"field_type\":\"rich_text\",\"data_name\":\"tnt__pr_link_mitigation_note\",\"db_name\":\"tnt__pr_link_mitigation_note\",\"description\":\"Stores the URL of the fix PR, or a brief explanation if no PR was created.\",\"is_filterable\":false,\"is_required\":false,\"name\":\"tnt__pr_link_mitigation_note\",\"oasis\":{\"name\":\"tnt__pr_link_mitigation_note\"},\"ui\":{\"display_name\":\"PR link / Mitigation note\",\"placeholder\":\"Fix PR link or reason if none.\",\"tooltip\":\"Provide the link to the PR that fixes the issue. If no PR was created, please explain why.\"}},{\"field_type\":\"text\",\"data_name\":\"tnt__rca\",\"db_name\":\"tnt__rca\",\"description\":\"Provide the link to the RCA article\",\"is_filterable\":false,\"name\":\"tnt__rca\",\"oasis\":{\"name\":\"tnt__rca\"},\"ui\":{\"display_name\":\"RCA\",\"placeholder\":\"Add RCA\",\"tooltip\":\"Link to the RCA article\"}},{\"field_type\":\"rich_text\",\"data_name\":\"tnt__reasoning\",\"db_name\":\"tnt__reasoning\",\"is_filterable\":false,\"name\":\"tnt__reasoning\",\"oasis\":{\"name\":\"tnt__reasoning\"},\"ui\":{\"display_name\":\"Reasoning\",\"placeholder\":\"How do you know that this alert is harmless\",\"tooltip\":\"Provide the reason for marking this incident as cancelled or declared\"}},{\"supported_filter_ops\":[\"all\",\"any\",\"not_any\",\"empty\",\"not_empty\"],\"field_type\":\"array\",\"base_type\":\"enum\",\"allowed_values\":[\"ap-south-1\",\"eu-central-1\",\"us-east-1\"],\"data_name\":\"tnt__region\",\"db_name\":\"tnt__region\",\"is_filterable\":true,\"name\":\"tnt__region\",\"oasis\":{\"name\":\"tnt__region\"},\"ui\":{\"display_name\":\"Impacted Regions\",\"placeholder\":\"Add Impacted Regions\"}}],\"invalidate_on_field_update\":[\"apps\"],\"type\":\"field_descriptor\"},\"type\":\"default\"}],\"input_values\":[{\"fields\":[{\"name\":\"id\",\"value\":{\"type\":\"jsonata_expression\",\"value\":\"$get('incident_updated_1', 'output').id\"}},{\"name\":\"severity\",\"value\":{\"type\":\"jsonata_expression\",\"value\":\"$get('incident_updated_1', 'output').severity.id\"}},{\"name\":\"tnt__rca\",\"value\":{\"type\":\"text_template\",\"value\":\"{% expr $get('create_article_1', 'output').id %}{% expr $get('create_article_1', 'output').display_id %}\"}}],\"port_name\":\"input\"}],\"name\":\"Update Incident 2\",\"operation\":{\"namespace\":\"devrev\",\"slug\":\"update_incident\"},\"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\":\"composite\",\"composite_type\":\"_gen:resource\",\"data_name\":\"resource\",\"db_name\":\"resource\",\"description\":\"Resource details.\",\"name\":\"resource\",\"oasis\":{\"name\":\"resource\"}},{\"field_type\":\"text\",\"data_name\":\"title\",\"db_name\":\"title\",\"description\":\"Title of the article.\",\"name\":\"title\",\"oasis\":{\"name\":\"title\"}},{\"field_type\":\"id\",\"data_name\":\"id\",\"db_name\":\"id\",\"description\":\"ID of the article.\",\"id_type\":[\"article\"],\"is_required\":true,\"name\":\"id\",\"oasis\":{\"name\":\"id\"}}],\"name\":\"_gen:article-summary\"},{\"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\":\"composite\",\"composite_type\":\"_gen:resource\",\"data_name\":\"resource\",\"db_name\":\"resource\",\"description\":\"Resource details.\",\"name\":\"resource\",\"oasis\":{\"name\":\"resource\"}},{\"field_type\":\"text\",\"data_name\":\"title\",\"db_name\":\"title\",\"description\":\"Title of the article.\",\"name\":\"title\",\"oasis\":{\"name\":\"title\"}},{\"field_type\":\"id\",\"data_name\":\"id\",\"db_name\":\"id\",\"description\":\"ID of the article.\",\"id_type\":[\"article\"],\"is_required\":true,\"name\":\"id\",\"oasis\":{\"name\":\"id\"}}],\"name\":\"_gen:article-summary_95fca9c7\"},{\"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\":\"ID of the artifact.\",\"id_type\":[\"artifact\"],\"is_required\":true,\"name\":\"id\",\"oasis\":{\"name\":\"id\"}}],\"name\":\"_gen:artifact-summary\"},{\"description\":\"The properties of an enum value.\",\"fields\":[{\"field_type\":\"int\",\"data_name\":\"id\",\"db_name\":\"id\",\"description\":\"The unique ID of the enum value.\",\"is_required\":true,\"name\":\"id\",\"oasis\":{\"name\":\"id\"}},{\"field_type\":\"text\",\"data_name\":\"label\",\"db_name\":\"label\",\"description\":\"The display label of the enum value.\",\"is_required\":true,\"name\":\"label\",\"oasis\":{\"name\":\"label\"}},{\"field_type\":\"json_value\",\"data_name\":\"value\",\"db_name\":\"value\",\"description\":\"The actual value of the enum value.\",\"name\":\"value\",\"oasis\":{\"name\":\"value\"}}],\"name\":\"_gen:count\"},{\"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\\nRev organization from your primary customer record. If none is\\navailable, a good alternative is the email address/phone number\\nwhich could uniquely identify the user. If none is specified, a\\nsystem-generated identifier will be assigned to the user.\\n\",\"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\":\"composite\",\"composite_type\":\"_gen:rev_org\",\"data_name\":\"rev_org\",\"db_name\":\"rev_org\",\"name\":\"rev_org\",\"oasis\":{\"name\":\"rev_org\"}},{\"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\"},{\"description\":\"Details of the impact due to the incident.\",\"fields\":[{\"field_type\":\"composite\",\"composite_type\":\"_gen:count\",\"data_name\":\"count\",\"db_name\":\"count\",\"description\":\"The properties of an enum value.\",\"name\":\"count\",\"oasis\":{\"name\":\"count\"}},{\"field_type\":\"array\",\"base_type\":\"composite\",\"composite_type\":\"_gen:account-summary\",\"data_name\":\"customer_ids\",\"db_name\":\"customer_ids\",\"name\":\"customer_ids\",\"oasis\":{\"name\":\"customer_ids\"}}],\"name\":\"_gen:impact\"},{\"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\\nRev organization from your primary customer record. If none is\\navailable, a good alternative is the email address/phone number\\nwhich could uniquely identify the user. If none is specified, a\\nsystem-generated identifier will be assigned to the user.\\n\",\"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\":\"composite\",\"composite_type\":\"_gen:rev_org\",\"data_name\":\"rev_org\",\"db_name\":\"rev_org\",\"name\":\"rev_org\",\"oasis\":{\"name\":\"rev_org\"}},{\"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\"},{\"fields\":[{\"field_type\":\"text\",\"data_name\":\"name\",\"db_name\":\"name\",\"description\":\"Name of the part.\",\"is_required\":true,\"name\":\"name\",\"oasis\":{\"name\":\"name\"}},{\"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\":\"enum\",\"allowed_values\":[\"capability\",\"enhancement\",\"feature\",\"linkable\",\"product\",\"runnable\"],\"data_name\":\"type\",\"db_name\":\"type\",\"is_required\":true,\"name\":\"type\",\"oasis\":{\"name\":\"type\"}},{\"field_type\":\"id\",\"data_name\":\"id\",\"db_name\":\"id\",\"description\":\"ID of the part attached to the incident.\",\"id_type\":[\"capability\",\"feature\",\"product\",\"runnable\",\"linkable\",\"enhancement\"],\"is_required\":true,\"name\":\"id\",\"oasis\":{\"name\":\"id\"}}],\"name\":\"_gen:part-summary\"},{\"description\":\"The properties of an enum value.\",\"fields\":[{\"field_type\":\"int\",\"data_name\":\"id\",\"db_name\":\"id\",\"description\":\"The unique ID of the enum value.\",\"is_required\":true,\"name\":\"id\",\"oasis\":{\"name\":\"id\"}},{\"field_type\":\"text\",\"data_name\":\"label\",\"db_name\":\"label\",\"description\":\"The label for the entity that reported the incident. Use id instead as labels can change overtime.\",\"is_required\":true,\"name\":\"label\",\"oasis\":{\"name\":\"label\"}},{\"field_type\":\"int\",\"data_name\":\"ordinal\",\"db_name\":\"ordinal\",\"description\":\"Used for determining the relative order of the enum value.\\n\",\"is_required\":true,\"name\":\"ordinal\",\"oasis\":{\"name\":\"ordinal\"}}],\"name\":\"_gen:reported_by\"},{\"description\":\"Resource details.\",\"fields\":[{\"field_type\":\"array\",\"base_type\":\"composite\",\"composite_type\":\"_gen:artifact-summary\",\"data_name\":\"artifacts\",\"db_name\":\"artifacts\",\"name\":\"artifacts\",\"oasis\":{\"name\":\"artifacts\"}},{\"field_type\":\"text\",\"data_name\":\"url\",\"db_name\":\"url\",\"description\":\"URL of the resource (relevant only for type url).\",\"name\":\"url\",\"oasis\":{\"name\":\"url\"}}],\"name\":\"_gen:resource\"},{\"fields\":[{\"field_type\":\"text\",\"data_name\":\"display_id\",\"db_name\":\"display_id\",\"description\":\"Human-readable object ID unique to the Dev organization.\",\"name\":\"display_id\",\"oasis\":{\"name\":\"display_id\"}},{\"field_type\":\"text\",\"data_name\":\"display_name\",\"db_name\":\"display_name\",\"description\":\"Name of the Organization.\",\"name\":\"display_name\",\"oasis\":{\"name\":\"display_name\"}},{\"field_type\":\"text\",\"data_name\":\"id\",\"db_name\":\"id\",\"description\":\"Globally unique object ID.\",\"is_required\":true,\"name\":\"id\",\"oasis\":{\"name\":\"id\"}},{\"field_type\":\"enum\",\"allowed_values\":[\"account\",\"rev_org\"],\"data_name\":\"type\",\"db_name\":\"type\",\"is_required\":true,\"name\":\"type\",\"oasis\":{\"name\":\"type\"}}],\"name\":\"_gen:rev_org\"},{\"description\":\"The properties of an enum value.\",\"fields\":[{\"field_type\":\"int\",\"data_name\":\"id\",\"db_name\":\"id\",\"description\":\"The unique ID of the enum value.\",\"is_required\":true,\"name\":\"id\",\"oasis\":{\"name\":\"id\"}},{\"field_type\":\"text\",\"data_name\":\"label\",\"db_name\":\"label\",\"description\":\"The label for the severity. Use id instead as labels can change overtime.\",\"is_required\":true,\"name\":\"label\",\"oasis\":{\"name\":\"label\"}},{\"field_type\":\"json_value\",\"data_name\":\"value\",\"db_name\":\"value\",\"description\":\"The actual value of the enum value.\",\"name\":\"value\",\"oasis\":{\"name\":\"value\"}}],\"name\":\"_gen:severity\"},{\"description\":\"The properties of an enum value.\",\"fields\":[{\"field_type\":\"int\",\"data_name\":\"id\",\"db_name\":\"id\",\"description\":\"The unique ID of the enum value.\",\"is_required\":true,\"name\":\"id\",\"oasis\":{\"name\":\"id\"}},{\"field_type\":\"text\",\"data_name\":\"label\",\"db_name\":\"label\",\"description\":\"The label for the source. Use id instead as labels can change overtime.\",\"is_required\":true,\"name\":\"label\",\"oasis\":{\"name\":\"label\"}},{\"field_type\":\"json_value\",\"data_name\":\"value\",\"db_name\":\"value\",\"description\":\"The actual value of the enum value.\",\"name\":\"value\",\"oasis\":{\"name\":\"value\"}}],\"name\":\"_gen:source\"},{\"description\":\"Describes the current stage of a object.\",\"fields\":[{\"field_type\":\"composite\",\"composite_type\":\"stage.stage\",\"data_name\":\"stage\",\"db_name\":\"stage\",\"description\":\"The stage of the incident.\",\"name\":\"stage\",\"oasis\":{\"name\":\"stage\"}}],\"name\":\"_gen:stage\"},{\"fields\":[{\"field_type\":\"text\",\"data_name\":\"display_id\",\"db_name\":\"display_id\",\"description\":\"Human-readable object ID unique to the Dev organization.\",\"name\":\"display_id\",\"oasis\":{\"name\":\"display_id\"}},{\"field_type\":\"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\":\"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\\nRev organization from your primary customer record. If none is\\navailable, a good alternative is the email address/phone number\\nwhich could uniquely identify the user. If none is specified, a\\nsystem-generated identifier will be assigned to the user.\\n\",\"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\":\"composite\",\"composite_type\":\"_gen:rev_org\",\"data_name\":\"rev_org\",\"db_name\":\"rev_org\",\"name\":\"rev_org\",\"oasis\":{\"name\":\"rev_org\"}},{\"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\"},{\"description\":\"Describes the current stage of the incident.\",\"fields\":[{\"field_type\":\"id\",\"data_name\":\"id\",\"db_name\":\"id\",\"description\":\"The stage of the incident.\",\"id_type\":[\"custom_stage\"],\"name\":\"id\",\"oasis\":{\"name\":\"id\"}},{\"field_type\":\"text\",\"data_name\":\"name\",\"db_name\":\"name\",\"description\":\"The name of the stage.\",\"name\":\"name\",\"oasis\":{\"name\":\"name\"}}],\"name\":\"stage.stage\"}],\"conditions\":[{\"effects\":[{\"fields\":[\"stage.stage.id\"],\"invalid\":true}],\"expression_ast\":[\"not\",[\"in\",\"$stage.stage.id\",\"don:core:dvrv-us-1:devo/0:custom_stage/16\",\"don:core:dvrv-us-1:devo/0:custom_stage/101\",\"don:core:dvrv-us-1:devo/0:custom_stage/83\",\"don:core:dvrv-us-1:devo/0:custom_stage/81\",\"don:core:dvrv-us-1:devo/0:custom_stage/82\",\"don:core:dvrv-us-1:devo/0:custom_stage/3\",\"don:core:dvrv-us-1:devo/0:custom_stage/8\",\"don:core:dvrv-us-1:devo/0:custom_stage/2\",\"don:core:dvrv-us-1:devo/0:custom_stage/12\"]]}],\"field_descriptors\":[{\"field_type\":\"timestamp\",\"data_name\":\"acknowledged_date\",\"db_name\":\"acknowledged_date\",\"description\":\"Timestamp when the incident was acknowledged.\",\"name\":\"acknowledged_date\",\"oasis\":{\"name\":\"acknowledged_date\"}},{\"field_type\":\"timestamp\",\"data_name\":\"actual_close_date\",\"db_name\":\"actual_close_date\",\"description\":\"Timestamp when the incident was actually resolved.\",\"name\":\"actual_close_date\",\"oasis\":{\"name\":\"actual_close_date\"}},{\"field_type\":\"array\",\"base_type\":\"composite\",\"composite_type\":\"_gen:part-summary\",\"data_name\":\"applies_to_parts\",\"db_name\":\"applies_to_parts\",\"name\":\"applies_to_parts\",\"oasis\":{\"name\":\"applies_to_parts\"}},{\"field_type\":\"text\",\"data_name\":\"body\",\"db_name\":\"body\",\"description\":\"Body of the incident.\",\"name\":\"body\",\"oasis\":{\"name\":\"body\"}},{\"field_type\":\"composite\",\"composite_type\":\"_gen:created_by\",\"data_name\":\"created_by\",\"db_name\":\"created_by\",\"name\":\"created_by\",\"oasis\":{\"name\":\"created_by\"}},{\"field_type\":\"timestamp\",\"data_name\":\"created_date\",\"db_name\":\"created_date\",\"description\":\"Timestamp when the object was created.\",\"name\":\"created_date\",\"oasis\":{\"name\":\"created_date\"}},{\"field_type\":\"text\",\"data_name\":\"display_id\",\"db_name\":\"display_id\",\"description\":\"Human-readable object ID unique to the Dev organization.\",\"name\":\"display_id\",\"oasis\":{\"name\":\"display_id\"}},{\"field_type\":\"timestamp\",\"data_name\":\"identified_date\",\"db_name\":\"identified_date\",\"description\":\"Time when the incident was identified/reported.\",\"name\":\"identified_date\",\"oasis\":{\"name\":\"identified_date\"}},{\"field_type\":\"composite\",\"composite_type\":\"_gen:impact\",\"data_name\":\"impact\",\"db_name\":\"impact\",\"description\":\"Details of the impact due to the incident.\",\"name\":\"impact\",\"oasis\":{\"name\":\"impact\"}},{\"field_type\":\"timestamp\",\"data_name\":\"mitigated_date\",\"db_name\":\"mitigated_date\",\"description\":\"Timestamp when the incident was mitigated.\",\"name\":\"mitigated_date\",\"oasis\":{\"name\":\"mitigated_date\"}},{\"field_type\":\"composite\",\"composite_type\":\"_gen:modified_by\",\"data_name\":\"modified_by\",\"db_name\":\"modified_by\",\"name\":\"modified_by\",\"oasis\":{\"name\":\"modified_by\"}},{\"field_type\":\"timestamp\",\"data_name\":\"modified_date\",\"db_name\":\"modified_date\",\"description\":\"Timestamp when the object was last modified.\",\"name\":\"modified_date\",\"oasis\":{\"name\":\"modified_date\"}},{\"field_type\":\"array\",\"base_type\":\"composite\",\"composite_type\":\"_gen:user-summary\",\"data_name\":\"owned_by\",\"db_name\":\"owned_by\",\"name\":\"owned_by\",\"oasis\":{\"name\":\"owned_by\"}},{\"field_type\":\"array\",\"base_type\":\"composite\",\"composite_type\":\"_gen:article-summary\",\"data_name\":\"pia\",\"db_name\":\"pia\",\"name\":\"pia\",\"oasis\":{\"name\":\"pia\"}},{\"field_type\":\"array\",\"base_type\":\"composite\",\"composite_type\":\"_gen:article-summary_95fca9c7\",\"data_name\":\"playbooks\",\"db_name\":\"playbooks\",\"name\":\"playbooks\",\"oasis\":{\"name\":\"playbooks\"}},{\"field_type\":\"composite\",\"composite_type\":\"_gen:reported_by\",\"data_name\":\"reported_by\",\"db_name\":\"reported_by\",\"description\":\"The entity that reported the incident.\",\"name\":\"reported_by\",\"oasis\":{\"name\":\"reported_by\"}},{\"field_type\":\"composite\",\"composite_type\":\"_gen:severity\",\"data_name\":\"severity\",\"db_name\":\"severity\",\"description\":\"Severity of the incident.\",\"is_required\":true,\"name\":\"severity\",\"oasis\":{\"name\":\"severity\"}},{\"field_type\":\"composite\",\"composite_type\":\"_gen:source\",\"data_name\":\"source\",\"db_name\":\"source\",\"description\":\"The source of the incident.\",\"name\":\"source\",\"oasis\":{\"name\":\"source\"}},{\"field_type\":\"composite\",\"composite_type\":\"_gen:stage\",\"data_name\":\"stage\",\"db_name\":\"stage\",\"description\":\"Stage of the incident.\",\"name\":\"stage\",\"oasis\":{\"name\":\"stage\"}},{\"field_type\":\"array\",\"base_type\":\"composite\",\"composite_type\":\"_gen:tags\",\"data_name\":\"tags\",\"db_name\":\"tags\",\"description\":\"Tags associated with the object.\",\"name\":\"tags\",\"oasis\":{\"name\":\"tags\"}},{\"field_type\":\"timestamp\",\"data_name\":\"target_close_date\",\"db_name\":\"target_close_date\",\"description\":\"Timestamp when the incident is expected to be resolved.\",\"name\":\"target_close_date\",\"oasis\":{\"name\":\"target_close_date\"}},{\"field_type\":\"text\",\"data_name\":\"title\",\"db_name\":\"title\",\"description\":\"Title of the incident.\",\"is_required\":true,\"name\":\"title\",\"oasis\":{\"name\":\"title\"}},{\"field_type\":\"id\",\"data_name\":\"id\",\"db_name\":\"id\",\"description\":\"ID of the incident.\",\"id_type\":[\"incident\"],\"is_required\":true,\"name\":\"id\",\"oasis\":{\"name\":\"id\"}},{\"supported_filter_ops\":[\"any\",\"not_any\",\"empty\",\"not_empty\"],\"field_type\":\"enum\",\"allowed_values\":[\"No\",\"Yes\"],\"data_name\":\"tnt__alert_generated\",\"db_name\":\"tnt__alert_generated\",\"is_filterable\":true,\"name\":\"tnt__alert_generated\",\"oasis\":{\"name\":\"tnt__alert_generated\"},\"ui\":{\"display_name\":\"Alert Generated\",\"placeholder\":\"Add Alert Generated\"}},{\"supported_filter_ops\":[\"any\",\"not_any\",\"empty\",\"not_empty\"],\"field_type\":\"enum\",\"allowed_values\":[\"No\",\"Yes\"],\"data_name\":\"tnt__customer_impact\",\"db_name\":\"tnt__customer_impact\",\"is_filterable\":true,\"name\":\"tnt__customer_impact\",\"oasis\":{\"name\":\"tnt__customer_impact\"},\"ui\":{\"display_name\":\"Customer Impact\",\"placeholder\":\"Add Customer Impact\"}},{\"supported_filter_ops\":[\"any\",\"not_any\",\"empty\",\"not_empty\"],\"field_type\":\"enum\",\"allowed_values\":[\"No\",\"Yes\"],\"data_name\":\"tnt__customer_reported\",\"db_name\":\"tnt__customer_reported\",\"is_filterable\":true,\"name\":\"tnt__customer_reported\",\"oasis\":{\"name\":\"tnt__customer_reported\"},\"ui\":{\"display_name\":\"Customer Reported\",\"placeholder\":\"Add Customer Reported\"}},{\"supported_filter_ops\":[\"all\",\"any\",\"not_any\",\"empty\",\"not_empty\"],\"field_type\":\"array\",\"base_type\":\"enum\",\"allowed_values\":[\"DEV\",\"PROD\",\"QA\"],\"data_name\":\"tnt__impacted_environments\",\"db_name\":\"tnt__impacted_environments\",\"is_filterable\":true,\"name\":\"tnt__impacted_environments\",\"oasis\":{\"name\":\"tnt__impacted_environments\"},\"ui\":{\"display_name\":\"Impacted Environments\",\"placeholder\":\"Add Impacted Environments\"}},{\"supported_filter_ops\":[\"any\",\"not_any\",\"empty\",\"not_empty\"],\"field_type\":\"enum\",\"allowed_values\":[\"New\",\"Regression\",\"Reoccuring\"],\"data_name\":\"tnt__incident_category\",\"db_name\":\"tnt__incident_category\",\"is_filterable\":true,\"name\":\"tnt__incident_category\",\"oasis\":{\"name\":\"tnt__incident_category\"},\"ui\":{\"display_name\":\"Incident Category\",\"placeholder\":\"Add Incident Category\"}},{\"supported_filter_ops\":[\"any\",\"not_any\",\"empty\",\"not_empty\"],\"field_type\":\"id\",\"data_name\":\"tnt__pia_owner\",\"db_name\":\"tnt__pia_owner\",\"id_type\":[\"devu\"],\"is_filterable\":true,\"name\":\"tnt__pia_owner\",\"oasis\":{\"name\":\"tnt__pia_owner\"},\"ui\":{\"display_name\":\"PIA Owner\",\"placeholder\":\"Add PIA Owner\"}},{\"field_type\":\"bool\",\"data_name\":\"tnt__pia_published\",\"db_name\":\"tnt__pia_published\",\"description\":\"Toggle yes, once the PIA gets published\",\"is_filterable\":true,\"name\":\"tnt__pia_published\",\"oasis\":{\"name\":\"tnt__pia_published\"},\"ui\":{\"display_name\":\"PIA Published\",\"placeholder\":\"Has the PIA been published\",\"tooltip\":\"Toggle yes, once the PIA gets published\"}},{\"supported_filter_ops\":[\"any\",\"not_any\",\"empty\",\"not_empty\"],\"field_type\":\"enum\",\"allowed_values\":[\"Not reviewed\",\"Reviewed\"],\"data_name\":\"tnt__pia_reviewed\",\"db_name\":\"tnt__pia_reviewed\",\"default_value\":\"Not reviewed\",\"description\":\"This is used to track if the PIA is reviewed in the weekly PIA reviews\",\"is_filterable\":true,\"name\":\"tnt__pia_reviewed\",\"oasis\":{\"name\":\"tnt__pia_reviewed\"},\"ui\":{\"display_name\":\"PIA status\",\"placeholder\":\"Add PIA reviewed\"}},{\"field_type\":\"rich_text\",\"data_name\":\"tnt__pr_link_mitigation_note\",\"db_name\":\"tnt__pr_link_mitigation_note\",\"description\":\"Stores the URL of the fix PR, or a brief explanation if no PR was created.\",\"is_filterable\":false,\"is_required\":false,\"name\":\"tnt__pr_link_mitigation_note\",\"oasis\":{\"name\":\"tnt__pr_link_mitigation_note\"},\"ui\":{\"display_name\":\"PR link / Mitigation note\",\"placeholder\":\"Fix PR link or reason if none.\",\"tooltip\":\"Provide the link to the PR that fixes the issue. If no PR was created, please explain why.\"}},{\"field_type\":\"text\",\"data_name\":\"tnt__rca\",\"db_name\":\"tnt__rca\",\"description\":\"Provide the link to the RCA article\",\"is_filterable\":false,\"name\":\"tnt__rca\",\"oasis\":{\"name\":\"tnt__rca\"},\"ui\":{\"display_name\":\"RCA\",\"placeholder\":\"Add RCA\",\"tooltip\":\"Link to the RCA article\"}},{\"field_type\":\"rich_text\",\"data_name\":\"tnt__reasoning\",\"db_name\":\"tnt__reasoning\",\"is_filterable\":false,\"name\":\"tnt__reasoning\",\"oasis\":{\"name\":\"tnt__reasoning\"},\"ui\":{\"display_name\":\"Reasoning\",\"placeholder\":\"How do you know that this alert is harmless\",\"tooltip\":\"Provide the reason for marking this incident as cancelled or declared\"}},{\"supported_filter_ops\":[\"all\",\"any\",\"not_any\",\"empty\",\"not_empty\"],\"field_type\":\"array\",\"base_type\":\"enum\",\"allowed_values\":[\"ap-south-1\",\"eu-central-1\",\"us-east-1\"],\"data_name\":\"tnt__region\",\"db_name\":\"tnt__region\",\"is_filterable\":true,\"name\":\"tnt__region\",\"oasis\":{\"name\":\"tnt__region\"},\"ui\":{\"display_name\":\"Impacted Regions\",\"placeholder\":\"Add Impacted Regions\"}}],\"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\":\"update_incident_2\",\"ui_metadata\":{\"position\":{\"x\":1380,\"y\":1710}}}],\"title\":\"Generate RCA from PIA\"}","templateVersion":"2.0.0"}
|
package/skills/create-workflow-template/examples/4392-Async opportunity review agent-template.json
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"data":"{\"description\":\"Opportunity Review agent via async path to serve requests with higher timeouts\",\"labels\":[\"agent_interaction\"],\"serialization_version\":{\"major\":2,\"minor\":0,\"patch\":0},\"steps\":[{\"description\":\"Triggers when a DM is created or updated. Note that this only triggers for DMs which the Workflow's service account has access to. i.e. the DMs which include the workflow's service account as one of the users.\",\"input_ports\":[{\"name\":\"input\",\"schema\":{\"field_descriptors\":[{\"field_type\":\"array\",\"base_type\":\"enum\",\"allowed_values\":[\"users\"],\"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. Only applicable in case of update events.\",\"name\":\"fields_to_watch\",\"oasis\":{\"name\":\"fields_to_watch\"}}],\"type\":\"field_descriptor\"},\"type\":\"default\"}],\"input_values\":[{\"fields\":[{\"name\":\"fields_to_watch\",\"value\":{\"type\":\"list_value\",\"value\":{\"items\":[{\"type\":\"literal\",\"value\":[\"users\"]}]}}}],\"port_name\":\"input\"}],\"name\":\"DM Created/Updated Trigger\",\"next_steps\":[{\"next_port_name\":\"input\",\"next_step_reference_key\":\"talk_to_agent_1\",\"port_name\":\"output\"}],\"operation\":{\"namespace\":\"devrev\",\"slug\":\"dm_created_or_updated\"},\"output_ports\":[{\"name\":\"output\",\"schema\":{\"composite_schemas\":[{\"description\":\"User Metadeta\",\"fields\":[{\"field_type\":\"id\",\"data_name\":\"id\",\"db_name\":\"id\",\"description\":\"ID of the user\",\"id_type\":[\"devu\",\"sysu\",\"svcacc\"],\"is_required\":true,\"name\":\"id\",\"oasis\":{\"name\":\"id\"}},{\"field_type\":\"enum\",\"allowed_values\":[\"dev_user\",\"sys_user\",\"service_account\"],\"data_name\":\"type\",\"db_name\":\"type\",\"description\":\"Type of the user\",\"is_required\":true,\"name\":\"type\",\"oasis\":{\"name\":\"type\"}}],\"name\":\"user\"},{\"description\":\"DM object\",\"fields\":[{\"field_type\":\"id\",\"data_name\":\"id\",\"db_name\":\"id\",\"description\":\"ID of the DM\",\"id_type\":[\"dm\"],\"is_required\":true,\"name\":\"id\",\"oasis\":{\"name\":\"id\"}},{\"field_type\":\"array\",\"base_type\":\"composite\",\"composite_type\":\"user\",\"data_name\":\"users\",\"db_name\":\"users\",\"description\":\"The participants in the DM\",\"is_required\":true,\"name\":\"users\",\"oasis\":{\"name\":\"users\"}}],\"name\":\"dm_object\"}],\"field_descriptors\":[{\"field_type\":\"array\",\"base_type\":\"composite\",\"composite_type\":\"user\",\"data_name\":\"users\",\"db_name\":\"users\",\"description\":\"The participants in the DM\",\"is_required\":true,\"name\":\"users\",\"oasis\":{\"name\":\"users\"},\"ui\":{\"display_name\":\"Users\"}},{\"field_type\":\"composite\",\"composite_type\":\"dm_object\",\"data_name\":\"old_dm\",\"db_name\":\"old_dm\",\"description\":\"The old DM doc\",\"is_required\":false,\"name\":\"old_dm\",\"oasis\":{\"name\":\"old_dm\"},\"ui\":{\"display_name\":\"Previous DM\"}},{\"field_type\":\"id\",\"data_name\":\"id\",\"db_name\":\"id\",\"description\":\"ID of the DM\",\"id_type\":[\"dm\"],\"is_required\":true,\"name\":\"id\",\"oasis\":{\"name\":\"id\"}},{\"field_type\":\"bool\",\"data_name\":\"is_update_event\",\"db_name\":\"is_update_event\",\"description\":\"Indicates if this is an update event. If false, the event is a create event.\",\"is_required\":true,\"name\":\"is_update_event\",\"oasis\":{\"name\":\"is_update_event\"},\"ui\":{\"display_name\":\"Is Update Event\"}}],\"type\":\"field_descriptor\"},\"type\":\"default\"}],\"reference_key\":\"dm_created_or_updated_1\",\"ui_metadata\":{\"position\":{\"x\":0,\"y\":0}}},{\"description\":\"Talk to an agent on the specified object\",\"input_ports\":[{\"name\":\"input\",\"schema\":{\"field_descriptors\":[{\"field_type\":\"id\",\"data_name\":\"agent\",\"db_name\":\"agent\",\"description\":\"ID of the agent to talk to\",\"id_type\":[\"ai_agent\"],\"is_required\":true,\"name\":\"agent\",\"oasis\":{\"name\":\"agent\"}},{\"field_type\":\"id\",\"data_name\":\"object\",\"db_name\":\"object\",\"description\":\"ID of the object where the agent will operate\",\"id_type\":[\"conversation\",\"ticket\",\"dm\",\"comment\"],\"is_required\":true,\"name\":\"object\",\"oasis\":{\"name\":\"object\"}},{\"field_type\":\"enum\",\"allowed_values\":[\"internal\",\"external\"],\"data_name\":\"visibility\",\"db_name\":\"visibility\",\"default_value\":\"internal\",\"description\":\"Visibility of comments on which agent responds\",\"is_required\":true,\"name\":\"visibility\",\"oasis\":{\"name\":\"visibility\"}},{\"field_type\":\"enum\",\"allowed_values\":[\"customer_chat\",\"discussions\"],\"data_name\":\"panel\",\"db_name\":\"panel\",\"default_value\":\"customer_chat\",\"description\":\"Panel on which the agent should respond\",\"is_required\":true,\"name\":\"panel\",\"oasis\":{\"name\":\"panel\"}},{\"field_type\":\"array\",\"base_type\":\"text\",\"data_name\":\"quick_replies\",\"db_name\":\"quick_replies\",\"description\":\"Preset reply options that will be displayed to users for quick selection\",\"is_required\":false,\"name\":\"quick_replies\",\"oasis\":{\"name\":\"quick_replies\"}},{\"field_type\":\"array\",\"max_items\":1,\"min_items\":1,\"base_type\":\"enum\",\"allowed_values\":[\"rev_user\",\"dev_user\"],\"data_name\":\"respond_to_user_types\",\"db_name\":\"respond_to_user_types\",\"default_value\":[\"rev_user\"],\"description\":\"Specifies which user categories (e.g. rev-users) the agent should engage with\",\"is_required\":true,\"name\":\"respond_to_user_types\",\"oasis\":{\"name\":\"respond_to_user_types\"}},{\"field_type\":\"enum\",\"allowed_values\":[\"dev_user\"],\"data_name\":\"suspend_on_message_from\",\"db_name\":\"suspend_on_message_from\",\"description\":\"Automatically pause the agent when receiving messages from specified user types (e.g. developers)\",\"is_required\":false,\"name\":\"suspend_on_message_from\",\"oasis\":{\"name\":\"suspend_on_message_from\"}},{\"field_type\":\"text\",\"data_name\":\"additional_context\",\"db_name\":\"additional_context\",\"description\":\"Additional context to be used by the agent\",\"is_required\":false,\"name\":\"additional_context\",\"oasis\":{\"name\":\"additional_context\"}}],\"type\":\"field_descriptor\"},\"type\":\"default\"},{\"name\":\"callback\",\"schema\":{\"field_descriptors\":[{\"field_type\":\"text\",\"data_name\":\"event\",\"db_name\":\"event\",\"description\":\"Event to be triggered for callback port\",\"is_required\":true,\"name\":\"event\",\"oasis\":{\"name\":\"event\"}}],\"type\":\"field_descriptor\"},\"type\":\"system\"}],\"input_values\":[{\"fields\":[{\"name\":\"agent\",\"value\":{\"type\":\"literal\",\"value\":\"don:core:dvrv-us-1:devo/0:ai_agent/261\"}},{\"name\":\"object\",\"value\":{\"type\":\"jsonata_expression\",\"value\":\"$get('dm_created_or_updated_1', 'output').id\"}},{\"name\":\"visibility\",\"value\":{\"type\":\"literal\",\"value\":\"internal\"}},{\"name\":\"panel\",\"value\":{\"type\":\"literal\",\"value\":\"discussions\"}},{\"name\":\"respond_to_user_types\",\"value\":{\"type\":\"list_value\",\"value\":{\"items\":[{\"type\":\"literal\",\"value\":[\"dev_user\"]}]}}}],\"port_name\":\"input\"}],\"name\":\"Talk to Agent\",\"operation\":{\"namespace\":\"devrev\",\"slug\":\"talk_to_agent\"},\"output_ports\":[{\"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\":\"talk_to_agent_1\",\"ui_metadata\":{\"position\":{\"x\":100,\"y\":150}}}],\"title\":\"Async Opportunity Review Agent\"}","templateVersion":"2.0.0"}
|