@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\":\"If an issue enters a active sprint, the sprint becomes the source of truth for its TCD.\\nMissing or outdated TCDs (earlier than sprint start) are aligned to the end of the active sprint.\",\"serialization_version\":{\"major\":2,\"minor\":0,\"patch\":0},\"steps\":[{\"description\":\"Triggered when an issue is updated\",\"input_ports\":[{\"name\":\"input\",\"schema\":{\"field_descriptors\":[{\"field_type\":\"uenum\",\"allowed_values\":[{\"id\":90868322,\"label\":\"AAI Issue\",\"ordinal\":1,\"tooltip\":\"Subtype for AAI work.\",\"value\":\"aai_issue\"},{\"id\":90865466,\"label\":\"AAIOnboarding\",\"ordinal\":2,\"tooltip\":\"This is for the onboarding of AAI\",\"value\":\"aaionboarding\"},{\"id\":90865588,\"label\":\"Advocacy Customer References\",\"ordinal\":3,\"tooltip\":\"Advocacy Customer References\",\"value\":\"advocacy_customer_references\"},{\"id\":90866615,\"label\":\"AIOps Issue\",\"ordinal\":4,\"tooltip\":\"Subtype for AIOps work\",\"value\":\"aiops_issue\"},{\"id\":90866426,\"label\":\"Approved customer logos\",\"ordinal\":5,\"tooltip\":\"Approved customer logos\",\"value\":\"approved_customer_logos\"},{\"id\":90865434,\"label\":\"Cloud Engineering Requests\",\"ordinal\":6,\"tooltip\":\"Infrastructure Request Custom Fields\",\"value\":\"cloud_engineering_requests\"},{\"id\":90868446,\"label\":\"Customer Implementation \",\"ordinal\":7,\"tooltip\":\"Issue subtype for keeping track of Customer Implementation \",\"value\":\"cs_implementation\"},{\"id\":90866399,\"label\":\"Demand Gen\",\"ordinal\":8,\"tooltip\":\"Subtype for Demand Gen team work\",\"value\":\"demand_gen\"},{\"id\":90868479,\"label\":\"Demo Prep\",\"ordinal\":9,\"tooltip\":\"Tracks the work to prepare for presales demo\",\"value\":\"demo_prep\"},{\"id\":90869471,\"label\":\"Developer Experience\",\"ordinal\":10,\"tooltip\":\"Making DX better for internal/external users\",\"value\":\"developer_experience\"},{\"id\":90868293,\"label\":\"Incident\",\"ordinal\":11,\"tooltip\":\"Attributes for tracking a prod incident\",\"value\":\"Incident\"},{\"id\":90865590,\"label\":\"Onboarding\",\"ordinal\":12,\"tooltip\":\"Issue Subtype for all the Onboarding Tasks\",\"value\":\"Onboarding\"},{\"id\":90868291,\"label\":\"Patent\",\"ordinal\":13,\"tooltip\":\"Patent tracking\",\"value\":\"patent\"},{\"id\":90868316,\"label\":\"People Ops\",\"ordinal\":14,\"tooltip\":\"Subtype for testing HR fragment\",\"value\":\"people_ops\"},{\"id\":90868478,\"label\":\"PoC\",\"ordinal\":15,\"tooltip\":\"Updated stage issue\",\"value\":\"poc\"},{\"id\":90868477,\"label\":\"PoC Child\",\"ordinal\":16,\"tooltip\":\"Child issue within a PoC issue\",\"value\":\"poc_child\"},{\"id\":90868292,\"label\":\"Quality\",\"ordinal\":17,\"tooltip\":\"Reporting quality issuues/bugs\",\"value\":\"quality\"},{\"id\":90868317,\"label\":\"Security Risk\",\"ordinal\":18,\"value\":\"security_risk\"},{\"id\":90868315,\"label\":\"Strategic Engineering Topic\",\"ordinal\":19,\"tooltip\":\"Strategic engineering topic tracking\",\"value\":\"strategic_engineering_topic\"},{\"id\":90868319,\"label\":\"Support Issue\",\"ordinal\":20,\"tooltip\":\"The requests for support team to solve\",\"value\":\"support_issue\"},{\"id\":90868318,\"label\":\"WEBCI\",\"ordinal\":21,\"value\":\"webci\"}],\"data_name\":\"subtype\",\"db_name\":\"subtype\",\"description\":\"Subtype whose custom fields to watch for updates\",\"name\":\"subtype\",\"oasis\":{\"name\":\"subtype\"},\"ui\":{\"display_name\":\"Subtype\"}},{\"field_type\":\"array\",\"base_type\":\"uenum\",\"allowed_values\":[{\"id\":0,\"label\":\"Applies To Part\",\"ordinal\":0,\"value\":\"applies_to_part\"},{\"id\":1,\"label\":\"Artifacts\",\"ordinal\":1,\"value\":\"artifacts\"},{\"id\":2,\"label\":\"Body\",\"ordinal\":2,\"value\":\"body\"},{\"id\":3,\"label\":\"Developed With\",\"ordinal\":3,\"value\":\"developed_with\"},{\"id\":4,\"label\":\"Owned By\",\"ordinal\":4,\"value\":\"owned_by\"},{\"id\":5,\"label\":\"Priority\",\"ordinal\":5,\"value\":\"priority\"},{\"id\":6,\"label\":\"Reported By\",\"ordinal\":6,\"value\":\"reported_by\"},{\"id\":7,\"label\":\"Sprint\",\"ordinal\":7,\"value\":\"sprint\"},{\"id\":8,\"label\":\"Stage\",\"ordinal\":8,\"value\":\"stage\"},{\"id\":9,\"label\":\"Subtype\",\"ordinal\":9,\"value\":\"subtype\"},{\"id\":10,\"label\":\"Tags\",\"ordinal\":10,\"value\":\"tags\"},{\"id\":11,\"label\":\"Target Close Date\",\"ordinal\":11,\"value\":\"target_close_date\"},{\"id\":12,\"label\":\"Target Start Date\",\"ordinal\":12,\"value\":\"target_start_date\"},{\"id\":13,\"label\":\"Title\",\"ordinal\":13,\"value\":\"title\"},{\"id\":14,\"label\":\"TDD link\",\"ordinal\":14,\"value\":\"tnt__app_ai_tdd_link\"},{\"id\":15,\"label\":\"Category (AI Predicted)\",\"ordinal\":15,\"value\":\"tnt__category_ai_predicted\"},{\"id\":16,\"label\":\"Category Justification\",\"ordinal\":16,\"value\":\"tnt__category_justification\"},{\"id\":17,\"label\":\"Classification\",\"ordinal\":17,\"value\":\"tnt__classification\"},{\"id\":18,\"label\":\"DataDog Issue ID\",\"ordinal\":18,\"value\":\"tnt__datadog_issue_id\"},{\"id\":19,\"label\":\"Deployment Blocked Time\",\"ordinal\":19,\"value\":\"tnt__deployment_blocked_time\"},{\"id\":20,\"label\":\"Effort Level\",\"ordinal\":20,\"value\":\"tnt__effort_level\"},{\"id\":21,\"label\":\"Team\",\"ordinal\":21,\"value\":\"tnt__eng_team\"},{\"id\":22,\"label\":\"External Ref Id\",\"ordinal\":22,\"value\":\"tnt__external_ref_id\"},{\"id\":23,\"label\":\"Hashed Deployment Id\",\"ordinal\":23,\"value\":\"tnt__hashed_deployment_id\"},{\"id\":24,\"label\":\"Level of Effort\",\"ordinal\":24,\"value\":\"tnt__level_of_effort\"},{\"id\":25,\"label\":\"Release\",\"ordinal\":25,\"value\":\"tnt__release\"},{\"id\":26,\"label\":\"Release Notes\",\"ordinal\":26,\"value\":\"tnt__release_notes\"},{\"id\":27,\"label\":\"Solution Space\",\"ordinal\":27,\"value\":\"tnt__solution_space\"},{\"id\":28,\"label\":\"Summary\",\"ordinal\":28,\"value\":\"tnt__summary\"},{\"id\":29,\"label\":\"Theme\",\"ordinal\":29,\"value\":\"tnt__theme\"},{\"id\":30,\"label\":\"UI E2E Failure Testname\",\"ordinal\":30,\"value\":\"tnt__ui_e2e_failure_testname\"},{\"id\":31,\"label\":\"Visible To\",\"ordinal\":31,\"value\":\"tnt__visible_to\"}],\"data_name\":\"fields_to_watch\",\"db_name\":\"fields_to_watch\",\"description\":\"Fields to watch for changes. The trigger will only be fired if any of these fields are updated.\",\"is_required\":true,\"name\":\"fields_to_watch\",\"oasis\":{\"name\":\"fields_to_watch\"},\"ui\":{\"display_name\":\"Fields to watch\"}},{\"field_type\":\"array\",\"base_type\":\"enum\",\"allowed_values\":[\"slack\",\"devrev_cloud_engineering\",\"github_issue_categorization\",\"bulk_work_item_snapin\",\"on_call_assistant\"],\"data_name\":\"apps\",\"db_name\":\"apps\",\"description\":\"List of Integrations whose fields are needed in this workflow\",\"name\":\"apps\",\"oasis\":{\"name\":\"apps\"},\"ui\":{\"display_name\":\"List of Integrations\"}},{\"field_type\":\"struct\",\"data_name\":\"_filter\",\"db_name\":\"_filter\",\"description\":\"Filter for the trigger event\",\"name\":\"_filter\",\"oasis\":{\"name\":\"_filter\"},\"ui\":{\"display_name\":\"Filter\"}}],\"invalidate_on_field_update\":[\"subtype\",\"apps\"],\"type\":\"field_descriptor\"},\"type\":\"default\"}],\"input_values\":[{\"fields\":[{\"name\":\"fields_to_watch\",\"value\":{\"type\":\"list_value\",\"value\":{\"items\":[{\"type\":\"literal\",\"value\":[\"sprint\"]}]}}},{\"name\":\"_filter\",\"value\":{\"type\":\"literal\",\"value\":{\"conditions\":[{\"conditions\":[{\"operands\":[{\"type\":\"jsonata_expression\",\"value\":\"$get('issue_updated_1', 'output').sprint.state\"},{\"type\":\"literal\",\"value\":\"planned\"}],\"operator\":\"equals\",\"type\":\"rule\",\"ui_reference_key\":\"09b6183d-5500-49a4-8b2b-8c53ac97617e\"},{\"operands\":[{\"type\":\"jsonata_expression\",\"value\":\"$get('issue_updated_1', 'output').target_close_date\"}],\"operator\":\"exists\",\"type\":\"rule\",\"ui_reference_key\":\"f657783e-e431-45a0-8b71-994bdbf3e3a2\"}],\"logical_operator\":\"or\",\"negate\":true,\"type\":\"group\",\"ui_reference_key\":\"a5004f90-3cf5-4a18-94c7-3bf5f351283d\"},{\"conditions\":[{\"operands\":[{\"type\":\"jsonata_expression\",\"value\":\"$get('issue_updated_1', 'output').sprint.state\"},{\"type\":\"literal\",\"value\":\"active\"}],\"operator\":\"equals\",\"type\":\"rule\",\"ui_reference_key\":\"f974f5dd-222a-4972-81e5-d64bfbe9dd56\"},{\"operands\":[{\"type\":\"jsonata_expression\",\"value\":\"$get('issue_updated_1', 'output').target_close_date\"},{\"type\":\"jsonata_expression\",\"value\":\"$get('issue_updated_1', 'output').sprint.start_date\"}],\"operator\":\"less_than\",\"type\":\"rule\",\"ui_reference_key\":\"30b4e6b1-21da-490b-89b0-6ad7c5491db5\"}],\"logical_operator\":\"and\",\"negate\":false,\"type\":\"group\",\"ui_reference_key\":\"2853f76f-1ff2-4520-8dab-30930bf35e6a\"},{\"conditions\":[{\"operands\":[{\"type\":\"jsonata_expression\",\"value\":\"$get('issue_updated_1', 'output').sprint.state\"},{\"type\":\"literal\",\"value\":\"planned\"}],\"operator\":\"equals\",\"type\":\"rule\",\"ui_reference_key\":\"495f8603-bb6e-4638-a282-d3d85940223e\"},{\"operands\":[{\"type\":\"jsonata_expression\",\"value\":\"$get('issue_updated_1', 'output').stage.name\"},{\"type\":\"literal\",\"value\":\"Prioritized\"}],\"operator\":\"contains\",\"type\":\"rule\",\"ui_reference_key\":\"1493c95d-d844-4d93-b7f9-2f2b65ab4188\"}],\"logical_operator\":\"and\",\"negate\":false,\"type\":\"group\",\"ui_reference_key\":\"72916509-03df-49f8-b981-2469bc83d212\"}],\"logical_operator\":\"or\",\"negate\":false,\"type\":\"group\",\"ui_reference_key\":\"0b9ffa0e-1942-4a72-a424-6a11173234d8\"}}}],\"port_name\":\"input\"}],\"name\":\"Issue Updated\",\"next_steps\":[{\"next_port_name\":\"input\",\"next_step_reference_key\":\"update_issue_1\",\"port_name\":\"output\"}],\"operation\":{\"namespace\":\"devrev\",\"slug\":\"issue_updated\"},\"output_ports\":[{\"name\":\"output\",\"schema\":{\"composite_schemas\":[{\"fields\":[{\"field_type\":\"text\",\"data_name\":\"display_id\",\"db_name\":\"display_id\",\"description\":\"Human-readable object ID unique to the Dev organization.\",\"name\":\"display_id\",\"oasis\":{\"name\":\"display_id\"}},{\"field_type\":\"text\",\"data_name\":\"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:applies_to_part\"},{\"fields\":[{\"field_type\":\"text\",\"data_name\":\"display_id\",\"db_name\":\"display_id\",\"description\":\"Human-readable object ID unique to the Dev organization.\",\"name\":\"display_id\",\"oasis\":{\"name\":\"display_id\"}},{\"field_type\":\"id\",\"data_name\":\"id\",\"db_name\":\"id\",\"description\":\"Globally unique object ID.\",\"id_type\":[\"artifact\"],\"is_required\":true,\"name\":\"id\",\"oasis\":{\"name\":\"id\"}}],\"name\":\"_gen:artifact-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\":\"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\"},{\"fields\":[{\"field_type\":\"text\",\"data_name\":\"display_id\",\"db_name\":\"display_id\",\"description\":\"Human-readable object ID unique to the Dev organization.\",\"name\":\"display_id\",\"oasis\":{\"name\":\"display_id\"}},{\"field_type\":\"id\",\"data_name\":\"id\",\"db_name\":\"id\",\"description\":\"Globally unique object ID.\",\"id_type\":[\"artifact\"],\"is_required\":true,\"name\":\"id\",\"oasis\":{\"name\":\"id\"}}],\"name\":\"_gen:display_picture\"},{\"fields\":[{\"field_type\":\"text\",\"data_name\":\"display_id\",\"db_name\":\"display_id\",\"description\":\"Human-readable object ID unique to the Dev organization.\",\"name\":\"display_id\",\"oasis\":{\"name\":\"display_id\"}},{\"field_type\":\"text\",\"data_name\":\"display_name\",\"db_name\":\"display_name\",\"description\":\"The user's display name. The name is non-unique and mutable.\\n\",\"name\":\"display_name\",\"oasis\":{\"name\":\"display_name\"}},{\"field_type\":\"composite\",\"composite_type\":\"_gen:display_picture\",\"data_name\":\"display_picture\",\"db_name\":\"display_picture\",\"name\":\"display_picture\",\"oasis\":{\"name\":\"display_picture\"}},{\"field_type\":\"text\",\"data_name\":\"email\",\"db_name\":\"email\",\"description\":\"Email address of the user.\",\"name\":\"email\",\"oasis\":{\"name\":\"email\"}},{\"field_type\":\"text\",\"data_name\":\"external_ref\",\"db_name\":\"external_ref\",\"description\":\"External ref is a mutable unique identifier for a user within the\\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\":\"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\":\"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\":\"Vista group item.\",\"fields\":[{\"field_type\":\"timestamp\",\"data_name\":\"end_date\",\"db_name\":\"end_date\",\"description\":\"Timestamp when the vista ends.\",\"name\":\"end_date\",\"oasis\":{\"name\":\"end_date\"}},{\"field_type\":\"text\",\"data_name\":\"name\",\"db_name\":\"name\",\"description\":\"Name of the group.\",\"is_required\":true,\"name\":\"name\",\"oasis\":{\"name\":\"name\"}},{\"field_type\":\"timestamp\",\"data_name\":\"start_date\",\"db_name\":\"start_date\",\"description\":\"Timestamp when the vista starts.\",\"name\":\"start_date\",\"oasis\":{\"name\":\"start_date\"}},{\"field_type\":\"enum\",\"allowed_values\":[\"active\",\"completed\",\"planned\"],\"data_name\":\"state\",\"db_name\":\"state\",\"description\":\"Defines the state of the group item.\",\"name\":\"state\",\"oasis\":{\"name\":\"state\"}},{\"field_type\":\"enum\",\"allowed_values\":[\"curated\",\"dynamic\"],\"data_name\":\"type\",\"db_name\":\"type\",\"description\":\"Type of the group object.\",\"is_required\":true,\"name\":\"type\",\"oasis\":{\"name\":\"type\"}},{\"field_type\":\"id\",\"data_name\":\"id\",\"db_name\":\"id\",\"description\":\"Globally unique object ID.\",\"id_type\":[\"vista_group_item\"],\"is_required\":true,\"name\":\"id\",\"oasis\":{\"name\":\"id\"}}],\"name\":\"_gen:sprint\"},{\"description\":\"Describes the current stage of a work item.\",\"fields\":[{\"field_type\":\"text\",\"data_name\":\"name\",\"db_name\":\"name\",\"description\":\"Current stage name of the work item.\",\"is_required\":true,\"name\":\"name\",\"oasis\":{\"name\":\"name\"}},{\"field_type\":\"composite\",\"composite_type\":\"stage.stage\",\"data_name\":\"stage\",\"db_name\":\"stage\",\"description\":\"The stage of the issue.\",\"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\":\"text\",\"data_name\":\"name\",\"db_name\":\"name\",\"description\":\"The name of the tag, which denotes the logical concept by which all\\ntagged objects will be associated. The name is guaranteed to be\\nunique.\\n\",\"is_required\":true,\"name\":\"name\",\"oasis\":{\"name\":\"name\"}},{\"field_type\":\"id\",\"data_name\":\"id\",\"db_name\":\"id\",\"description\":\"Globally unique object ID.\",\"id_type\":[\"tag\"],\"is_required\":true,\"name\":\"id\",\"oasis\":{\"name\":\"id\"}}],\"name\":\"_gen:tag\"},{\"fields\":[{\"field_type\":\"composite\",\"composite_type\":\"_gen:tag\",\"data_name\":\"tag\",\"db_name\":\"tag\",\"name\":\"tag\",\"oasis\":{\"name\":\"tag\"}}],\"name\":\"_gen:tags\"},{\"fields\":[{\"field_type\":\"text\",\"data_name\":\"display_id\",\"db_name\":\"display_id\",\"description\":\"Human-readable object ID unique to the Dev organization.\",\"name\":\"display_id\",\"oasis\":{\"name\":\"display_id\"}},{\"field_type\":\"text\",\"data_name\":\"display_name\",\"db_name\":\"display_name\",\"description\":\"The user's display name. The name is non-unique and mutable.\\n\",\"name\":\"display_name\",\"oasis\":{\"name\":\"display_name\"}},{\"field_type\":\"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:user-summary\"},{\"description\":\"Describes the current stage of a work item.\",\"fields\":[{\"field_type\":\"id\",\"data_name\":\"id\",\"db_name\":\"id\",\"description\":\"The stage of the issue.\",\"id_type\":[\"custom_stage\"],\"name\":\"id\",\"oasis\":{\"name\":\"id\"}}],\"name\":\"stage.stage\"},{\"fields\":[{\"field_type\":\"uenum\",\"allowed_values\":[{\"id\":90868322,\"label\":\"AAI Issue\",\"ordinal\":1,\"tooltip\":\"Subtype for AAI work.\",\"value\":\"aai_issue\"},{\"id\":90865466,\"label\":\"AAIOnboarding\",\"ordinal\":2,\"tooltip\":\"This is for the onboarding of AAI\",\"value\":\"aaionboarding\"},{\"id\":90865588,\"label\":\"Advocacy Customer References\",\"ordinal\":3,\"tooltip\":\"Advocacy Customer References\",\"value\":\"advocacy_customer_references\"},{\"id\":90866615,\"label\":\"AIOps Issue\",\"ordinal\":4,\"tooltip\":\"Subtype for AIOps work\",\"value\":\"aiops_issue\"},{\"id\":90866426,\"label\":\"Approved customer logos\",\"ordinal\":5,\"tooltip\":\"Approved customer logos\",\"value\":\"approved_customer_logos\"},{\"id\":90865434,\"label\":\"Cloud Engineering Requests\",\"ordinal\":6,\"tooltip\":\"Infrastructure Request Custom Fields\",\"value\":\"cloud_engineering_requests\"},{\"id\":90868446,\"label\":\"Customer Implementation \",\"ordinal\":7,\"tooltip\":\"Issue subtype for keeping track of Customer Implementation \",\"value\":\"cs_implementation\"},{\"id\":90866399,\"label\":\"Demand Gen\",\"ordinal\":8,\"tooltip\":\"Subtype for Demand Gen team work\",\"value\":\"demand_gen\"},{\"id\":90868479,\"label\":\"Demo Prep\",\"ordinal\":9,\"tooltip\":\"Tracks the work to prepare for presales demo\",\"value\":\"demo_prep\"},{\"id\":90869471,\"label\":\"Developer Experience\",\"ordinal\":10,\"tooltip\":\"Making DX better for internal/external users\",\"value\":\"developer_experience\"},{\"id\":90868293,\"label\":\"Incident\",\"ordinal\":11,\"tooltip\":\"Attributes for tracking a prod incident\",\"value\":\"Incident\"},{\"id\":90865590,\"label\":\"Onboarding\",\"ordinal\":12,\"tooltip\":\"Issue Subtype for all the Onboarding Tasks\",\"value\":\"Onboarding\"},{\"id\":90868291,\"label\":\"Patent\",\"ordinal\":13,\"tooltip\":\"Patent tracking\",\"value\":\"patent\"},{\"id\":90868316,\"label\":\"People Ops\",\"ordinal\":14,\"tooltip\":\"Subtype for testing HR fragment\",\"value\":\"people_ops\"},{\"id\":90868478,\"label\":\"PoC\",\"ordinal\":15,\"tooltip\":\"Updated stage issue\",\"value\":\"poc\"},{\"id\":90868477,\"label\":\"PoC Child\",\"ordinal\":16,\"tooltip\":\"Child issue within a PoC issue\",\"value\":\"poc_child\"},{\"id\":90868292,\"label\":\"Quality\",\"ordinal\":17,\"tooltip\":\"Reporting quality issuues/bugs\",\"value\":\"quality\"},{\"id\":90868317,\"label\":\"Security Risk\",\"ordinal\":18,\"value\":\"security_risk\"},{\"id\":90868315,\"label\":\"Strategic Engineering Topic\",\"ordinal\":19,\"tooltip\":\"Strategic engineering topic tracking\",\"value\":\"strategic_engineering_topic\"},{\"id\":90868319,\"label\":\"Support Issue\",\"ordinal\":20,\"tooltip\":\"The requests for support team to solve\",\"value\":\"support_issue\"},{\"id\":90868318,\"label\":\"WEBCI\",\"ordinal\":21,\"value\":\"webci\"}],\"data_name\":\"subtype\",\"db_name\":\"subtype\",\"description\":\"Subtype of the object.\",\"name\":\"subtype\",\"oasis\":{\"name\":\"subtype\"},\"ui\":{\"display_name\":\"Subtype\"}},{\"field_type\":\"composite\",\"composite_type\":\"_gen:applies_to_part\",\"data_name\":\"applies_to_part\",\"db_name\":\"applies_to_part\",\"name\":\"applies_to_part\",\"oasis\":{\"name\":\"applies_to_part\"}},{\"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\":\"body\",\"db_name\":\"body\",\"description\":\"Body of the work object.\",\"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\":\"array\",\"base_type\":\"composite\",\"composite_type\":\"_gen:part-summary\",\"data_name\":\"developed_with\",\"db_name\":\"developed_with\",\"name\":\"developed_with\",\"oasis\":{\"name\":\"developed_with\"}},{\"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\":\"double\",\"data_name\":\"estimated_effort\",\"db_name\":\"estimated_effort\",\"description\":\"Estimated effort to complete the issue.\",\"name\":\"estimated_effort\",\"oasis\":{\"name\":\"estimated_effort\"}},{\"field_type\":\"text\",\"data_name\":\"external_ref\",\"db_name\":\"external_ref\",\"description\":\"An opaque key that's associated with the work item that's\\nguaranteed to be unique across all work items of same type (issue,\\nticket, etc).\\n\",\"name\":\"external_ref\",\"oasis\":{\"name\":\"external_ref\"}},{\"field_type\":\"composite\",\"composite_type\":\"_gen:modified_by\",\"data_name\":\"modified_by\",\"db_name\":\"modified_by\",\"name\":\"modified_by\",\"oasis\":{\"name\":\"modified_by\"}},{\"field_type\":\"timestamp\",\"data_name\":\"modified_date\",\"db_name\":\"modified_date\",\"description\":\"Timestamp when the 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\",\"is_required\":true,\"name\":\"owned_by\",\"oasis\":{\"name\":\"owned_by\"}},{\"field_type\":\"enum\",\"allowed_values\":[\"p0\",\"p1\",\"p2\",\"p3\"],\"data_name\":\"priority\",\"db_name\":\"priority\",\"description\":\"Priority of the work based upon impact and criticality.\",\"name\":\"priority\",\"oasis\":{\"name\":\"priority\"}},{\"field_type\":\"array\",\"base_type\":\"composite\",\"composite_type\":\"_gen:user-summary\",\"data_name\":\"reported_by\",\"db_name\":\"reported_by\",\"name\":\"reported_by\",\"oasis\":{\"name\":\"reported_by\"}},{\"field_type\":\"composite\",\"composite_type\":\"_gen:sprint\",\"data_name\":\"sprint\",\"db_name\":\"sprint\",\"description\":\"Vista group item.\",\"name\":\"sprint\",\"oasis\":{\"name\":\"sprint\"}},{\"field_type\":\"composite\",\"composite_type\":\"_gen:stage\",\"data_name\":\"stage\",\"db_name\":\"stage\",\"description\":\"Describes the current stage of a work item.\",\"name\":\"stage\",\"oasis\":{\"name\":\"stage\"}},{\"field_type\":\"text\",\"data_name\":\"state_display_name\",\"db_name\":\"state_display_name\",\"description\":\"Display name for current state.\",\"name\":\"state_display_name\",\"oasis\":{\"name\":\"state_display_name\"}},{\"field_type\":\"array\",\"base_type\":\"composite\",\"composite_type\":\"_gen:tags\",\"data_name\":\"tags\",\"db_name\":\"tags\",\"description\":\"Tags associated with the object.\",\"name\":\"tags\",\"oasis\":{\"name\":\"tags\"}},{\"field_type\":\"timestamp\",\"data_name\":\"target_close_date\",\"db_name\":\"target_close_date\",\"description\":\"Timestamp when the work is expected to be complete.\",\"name\":\"target_close_date\",\"oasis\":{\"name\":\"target_close_date\"}},{\"field_type\":\"timestamp\",\"data_name\":\"target_start_date\",\"db_name\":\"target_start_date\",\"description\":\"Target start date for the object.\",\"name\":\"target_start_date\",\"oasis\":{\"name\":\"target_start_date\"}},{\"field_type\":\"text\",\"data_name\":\"title\",\"db_name\":\"title\",\"description\":\"Title of the work object.\",\"is_required\":true,\"name\":\"title\",\"oasis\":{\"name\":\"title\"}},{\"field_type\":\"enum\",\"allowed_values\":[\"issue\",\"opportunity\",\"task\",\"ticket\"],\"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\":[\"issue\"],\"is_required\":true,\"name\":\"id\",\"oasis\":{\"name\":\"id\"}},{\"supported_filter_ops\":[\"any\",\"not_any\",\"empty\",\"not_empty\"],\"field_type\":\"text\",\"data_name\":\"tnt__app_ai_tdd_link\",\"db_name\":\"tnt__app_ai_tdd_link\",\"description\":\"Link to the technical design document\",\"is_filterable\":true,\"name\":\"tnt__app_ai_tdd_link\",\"oasis\":{\"name\":\"tnt__app_ai_tdd_link\"},\"ui\":{\"display_name\":\"TDD link\",\"placeholder\":\"Link to the technical design document\"}},{\"supported_filter_ops\":[\"any\",\"not_any\",\"empty\",\"not_empty\"],\"field_type\":\"enum\",\"allowed_values\":[\"Bug\",\"Incident\",\"New Work\",\"Tech Debt\"],\"data_name\":\"tnt__category_ai_predicted\",\"db_name\":\"tnt__category_ai_predicted\",\"description\":\"AI-predicted category of the issue (Bug, Incident, New Work, Tech Debt)\",\"is_filterable\":true,\"name\":\"tnt__category_ai_predicted\",\"oasis\":{\"name\":\"tnt__category_ai_predicted\"},\"ui\":{\"display_name\":\"Category (AI Predicted)\",\"placeholder\":\"Add Category (AI Predicted)\",\"tooltip\":\"Type of work\"}},{\"field_type\":\"rich_text\",\"data_name\":\"tnt__category_justification\",\"db_name\":\"tnt__category_justification\",\"description\":\"Justification for the AI predicted category populated in the field \\\"Category (AI Predicted)\\\"\",\"is_filterable\":false,\"name\":\"tnt__category_justification\",\"oasis\":{\"name\":\"tnt__category_justification\"},\"ui\":{\"display_name\":\"Category Justification\",\"placeholder\":\"Add Category Justification\",\"tooltip\":\"Justification for the AI predicted category populated in the field \\\"Category (AI Predicted)\\\"\"}},{\"supported_filter_ops\":[\"all\",\"any\",\"not_any\",\"empty\",\"not_empty\"],\"field_type\":\"array\",\"base_type\":\"enum\",\"allowed_values\":[\"Customer commit\",\"Feature work\",\"Quality - Latency\",\"Quality - One click\",\"Quality - Reliability\",\"Quality - Secure & Governed\",\"Quality - Self serve\"],\"data_name\":\"tnt__classification\",\"db_name\":\"tnt__classification\",\"description\":\"List of classifications for the issue (e.g., Customer Commit, Feature Work)\",\"is_filterable\":true,\"name\":\"tnt__classification\",\"oasis\":{\"name\":\"tnt__classification\"},\"ui\":{\"display_name\":\"Classification\",\"placeholder\":\"Add Classification\"}},{\"supported_filter_ops\":[\"any\",\"not_any\",\"empty\",\"not_empty\"],\"field_type\":\"text\",\"data_name\":\"tnt__datadog_issue_id\",\"db_name\":\"tnt__datadog_issue_id\",\"description\":\"Reference ID for the issue in Datadog\",\"is_filterable\":true,\"name\":\"tnt__datadog_issue_id\",\"oasis\":{\"name\":\"tnt__datadog_issue_id\"},\"ui\":{\"display_name\":\"DataDog Issue ID\",\"placeholder\":\"Add DataDog Issue ID\"}},{\"supported_filter_ops\":[\"any\",\"not_any\",\"empty\",\"not_empty\"],\"field_type\":\"int\",\"data_name\":\"tnt__deployment_blocked_time\",\"db_name\":\"tnt__deployment_blocked_time\",\"description\":\"Deployment Blocked Time\",\"is_filterable\":true,\"name\":\"tnt__deployment_blocked_time\",\"oasis\":{\"name\":\"tnt__deployment_blocked_time\"},\"ui\":{\"display_name\":\"Deployment Blocked Time\",\"placeholder\":\"Add Deployment Blocked Time\"}},{\"supported_filter_ops\":[\"any\",\"not_any\",\"empty\",\"not_empty\"],\"field_type\":\"enum\",\"allowed_values\":[\"Pebble\",\"Rock\",\"Stone\"],\"data_name\":\"tnt__effort_level\",\"db_name\":\"tnt__effort_level\",\"description\":\"Estimated effort level required for the issue (Pebble, Rock, Stone)\",\"is_filterable\":true,\"name\":\"tnt__effort_level\",\"oasis\":{\"name\":\"tnt__effort_level\"},\"ui\":{\"display_name\":\"Effort Level\",\"placeholder\":\"Add Effort Level\",\"tooltip\":\"Rock (>= 1 week), Stone (3 days to 1 week), Pebble (< 3 days)\"}},{\"supported_filter_ops\":[\"any\",\"not_any\",\"empty\",\"not_empty\"],\"field_type\":\"enum\",\"allowed_values\":[\"Agents\",\"Applied AI Eng\",\"Engineering\",\"Infra\",\"PRE\"],\"data_name\":\"tnt__eng_team\",\"db_name\":\"tnt__eng_team\",\"description\":\"Engineering team responsible for the issue (e.g., Applied Ai Eng, Infra)\",\"is_filterable\":true,\"name\":\"tnt__eng_team\",\"oasis\":{\"name\":\"tnt__eng_team\"},\"ui\":{\"display_name\":\"Team\",\"placeholder\":\"Add Team\"}},{\"supported_filter_ops\":[\"any\",\"not_any\",\"empty\",\"not_empty\"],\"field_type\":\"text\",\"data_name\":\"tnt__external_ref_id\",\"db_name\":\"tnt__external_ref_id\",\"description\":\"External reference ID for the issue\",\"is_filterable\":true,\"name\":\"tnt__external_ref_id\",\"oasis\":{\"name\":\"tnt__external_ref_id\"},\"ui\":{\"display_name\":\"External Ref Id\",\"placeholder\":\"Add External Ref Id\"}},{\"supported_filter_ops\":[\"any\",\"not_any\",\"empty\",\"not_empty\"],\"field_type\":\"text\",\"data_name\":\"tnt__hashed_deployment_id\",\"db_name\":\"tnt__hashed_deployment_id\",\"description\":\"Unique Hashed Deployment Id\",\"is_filterable\":true,\"name\":\"tnt__hashed_deployment_id\",\"oasis\":{\"name\":\"tnt__hashed_deployment_id\"},\"ui\":{\"display_name\":\"Hashed Deployment Id\",\"placeholder\":\"Add Hashed Deployment Id\"}},{\"supported_filter_ops\":[\"any\",\"not_any\",\"empty\",\"not_empty\"],\"field_type\":\"enum\",\"allowed_values\":[\"L\",\"M\",\"S\",\"XS\"],\"data_name\":\"tnt__level_of_effort\",\"db_name\":\"tnt__level_of_effort\",\"description\":\"Level of effort required for the issue (L, M, S, Xs)\",\"is_filterable\":true,\"name\":\"tnt__level_of_effort\",\"oasis\":{\"name\":\"tnt__level_of_effort\"},\"ui\":{\"display_name\":\"Level of Effort\",\"placeholder\":\"Add Level of Effort\",\"tooltip\":\"XS : <1 person week (0.5 sprint), S : 1-2 person week (0.5-1 sprint), M: 2-4 person week (1-2 sprints), L: 4+ person week (2+ sprints)\"}},{\"supported_filter_ops\":[\"any\",\"not_any\",\"empty\",\"not_empty\"],\"field_type\":\"id\",\"data_name\":\"tnt__release\",\"db_name\":\"tnt__release\",\"description\":\"ID of the associated release in custom_object.release\",\"id_type\":[\"custom_object.release\"],\"is_filterable\":true,\"name\":\"tnt__release\",\"oasis\":{\"name\":\"tnt__release\"},\"ui\":{\"display_name\":\"Release\",\"placeholder\":\"Add Release\"}},{\"field_type\":\"rich_text\",\"data_name\":\"tnt__release_notes\",\"db_name\":\"tnt__release_notes\",\"description\":\"Rich text notes detailing the release information for the issue\",\"name\":\"tnt__release_notes\",\"oasis\":{\"name\":\"tnt__release_notes\"},\"ui\":{\"display_name\":\"Release Notes\",\"placeholder\":\"Add Release Notes\"}},{\"supported_filter_ops\":[\"any\",\"not_any\",\"empty\",\"not_empty\"],\"field_type\":\"enum\",\"allowed_values\":[\"Adaas\",\"Agent\",\"Customization\",\"Dashboards\",\"Documentation\",\"Search\",\"Snap In\",\"Snap In as a Script\",\"Workflows\"],\"data_name\":\"tnt__solution_space\",\"db_name\":\"tnt__solution_space\",\"description\":\"Solution space category for the issue (e.g., Adaas, Dashboards, Workflows)\",\"is_filterable\":true,\"name\":\"tnt__solution_space\",\"oasis\":{\"name\":\"tnt__solution_space\"},\"ui\":{\"display_name\":\"Solution Space\",\"placeholder\":\"Add Solution Space\"}},{\"field_type\":\"rich_text\",\"data_name\":\"tnt__summary\",\"db_name\":\"tnt__summary\",\"description\":\"Rich text summary of the issue\",\"is_filterable\":false,\"name\":\"tnt__summary\",\"oasis\":{\"name\":\"tnt__summary\"},\"ui\":{\"display_name\":\"Summary\",\"placeholder\":\"Add Summary\"}},{\"supported_filter_ops\":[\"all\",\"any\",\"not_any\",\"empty\",\"not_empty\"],\"field_type\":\"array\",\"base_type\":\"id\",\"data_name\":\"tnt__theme\",\"db_name\":\"tnt__theme\",\"description\":\"List of associated themes from custom_object.theme\",\"id_type\":[\"custom_object.theme\"],\"is_filterable\":true,\"name\":\"tnt__theme\",\"oasis\":{\"name\":\"tnt__theme\"},\"ui\":{\"display_name\":\"Theme\",\"placeholder\":\"Add Theme\"}},{\"supported_filter_ops\":[\"any\",\"not_any\",\"empty\",\"not_empty\"],\"field_type\":\"text\",\"data_name\":\"tnt__ui_e2e_failure_testname\",\"db_name\":\"tnt__ui_e2e_failure_testname\",\"description\":\"UI E2E Failure Testname\",\"is_filterable\":true,\"name\":\"tnt__ui_e2e_failure_testname\",\"oasis\":{\"name\":\"tnt__ui_e2e_failure_testname\"},\"ui\":{\"display_name\":\"UI E2E Failure Testname\",\"placeholder\":\"Add UI E2E Failure Testname\"}},{\"supported_filter_ops\":[\"all\",\"any\",\"not_any\",\"empty\",\"not_empty\"],\"field_type\":\"array\",\"base_type\":\"id\",\"data_name\":\"tnt__visible_to\",\"db_name\":\"tnt__visible_to\",\"description\":\"Added list of users to give CRUD access\",\"id_type\":[\"group\"],\"is_filterable\":true,\"name\":\"tnt__visible_to\",\"oasis\":{\"name\":\"tnt__visible_to\"},\"ui\":{\"display_name\":\"Visible To\",\"placeholder\":\"Visible to users\"}}],\"name\":\"_gen:implicit:issue\"}],\"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/6\",\"don:core:dvrv-us-1:devo/0:custom_stage/27\",\"don:core:dvrv-us-1:devo/0:custom_stage/5\",\"don:core:dvrv-us-1:devo/0:custom_stage/17\",\"don:core:dvrv-us-1:devo/0:custom_stage/20\",\"don:core:dvrv-us-1:devo/0:custom_stage/13\",\"don:core:dvrv-us-1:devo/0:custom_stage/8\",\"don:core:dvrv-us-1:devo/0:custom_stage/15\",\"don:core:dvrv-us-1:devo/0:custom_stage/12\"]]},{\"effects\":[{\"fields\":[\"old_issue.stage.stage.id\"],\"invalid\":true}],\"expression_ast\":[\"not\",[\"in\",\"$old_issue.stage.stage.id\",\"don:core:dvrv-us-1:devo/0:custom_stage/16\",\"don:core:dvrv-us-1:devo/0:custom_stage/6\",\"don:core:dvrv-us-1:devo/0:custom_stage/27\",\"don:core:dvrv-us-1:devo/0:custom_stage/5\",\"don:core:dvrv-us-1:devo/0:custom_stage/17\",\"don:core:dvrv-us-1:devo/0:custom_stage/20\",\"don:core:dvrv-us-1:devo/0:custom_stage/13\",\"don:core:dvrv-us-1:devo/0:custom_stage/8\",\"don:core:dvrv-us-1:devo/0:custom_stage/15\",\"don:core:dvrv-us-1:devo/0:custom_stage/12\"]]}],\"field_descriptors\":[{\"field_type\":\"uenum\",\"allowed_values\":[{\"id\":90868322,\"label\":\"AAI Issue\",\"ordinal\":1,\"tooltip\":\"Subtype for AAI work.\",\"value\":\"aai_issue\"},{\"id\":90865466,\"label\":\"AAIOnboarding\",\"ordinal\":2,\"tooltip\":\"This is for the onboarding of AAI\",\"value\":\"aaionboarding\"},{\"id\":90865588,\"label\":\"Advocacy Customer References\",\"ordinal\":3,\"tooltip\":\"Advocacy Customer References\",\"value\":\"advocacy_customer_references\"},{\"id\":90866615,\"label\":\"AIOps Issue\",\"ordinal\":4,\"tooltip\":\"Subtype for AIOps work\",\"value\":\"aiops_issue\"},{\"id\":90866426,\"label\":\"Approved customer logos\",\"ordinal\":5,\"tooltip\":\"Approved customer logos\",\"value\":\"approved_customer_logos\"},{\"id\":90865434,\"label\":\"Cloud Engineering Requests\",\"ordinal\":6,\"tooltip\":\"Infrastructure Request Custom Fields\",\"value\":\"cloud_engineering_requests\"},{\"id\":90868446,\"label\":\"Customer Implementation \",\"ordinal\":7,\"tooltip\":\"Issue subtype for keeping track of Customer Implementation \",\"value\":\"cs_implementation\"},{\"id\":90866399,\"label\":\"Demand Gen\",\"ordinal\":8,\"tooltip\":\"Subtype for Demand Gen team work\",\"value\":\"demand_gen\"},{\"id\":90868479,\"label\":\"Demo Prep\",\"ordinal\":9,\"tooltip\":\"Tracks the work to prepare for presales demo\",\"value\":\"demo_prep\"},{\"id\":90869471,\"label\":\"Developer Experience\",\"ordinal\":10,\"tooltip\":\"Making DX better for internal/external users\",\"value\":\"developer_experience\"},{\"id\":90868293,\"label\":\"Incident\",\"ordinal\":11,\"tooltip\":\"Attributes for tracking a prod incident\",\"value\":\"Incident\"},{\"id\":90865590,\"label\":\"Onboarding\",\"ordinal\":12,\"tooltip\":\"Issue Subtype for all the Onboarding Tasks\",\"value\":\"Onboarding\"},{\"id\":90868291,\"label\":\"Patent\",\"ordinal\":13,\"tooltip\":\"Patent tracking\",\"value\":\"patent\"},{\"id\":90868316,\"label\":\"People Ops\",\"ordinal\":14,\"tooltip\":\"Subtype for testing HR fragment\",\"value\":\"people_ops\"},{\"id\":90868478,\"label\":\"PoC\",\"ordinal\":15,\"tooltip\":\"Updated stage issue\",\"value\":\"poc\"},{\"id\":90868477,\"label\":\"PoC Child\",\"ordinal\":16,\"tooltip\":\"Child issue within a PoC issue\",\"value\":\"poc_child\"},{\"id\":90868292,\"label\":\"Quality\",\"ordinal\":17,\"tooltip\":\"Reporting quality issuues/bugs\",\"value\":\"quality\"},{\"id\":90868317,\"label\":\"Security Risk\",\"ordinal\":18,\"value\":\"security_risk\"},{\"id\":90868315,\"label\":\"Strategic Engineering Topic\",\"ordinal\":19,\"tooltip\":\"Strategic engineering topic tracking\",\"value\":\"strategic_engineering_topic\"},{\"id\":90868319,\"label\":\"Support Issue\",\"ordinal\":20,\"tooltip\":\"The requests for support team to solve\",\"value\":\"support_issue\"},{\"id\":90868318,\"label\":\"WEBCI\",\"ordinal\":21,\"value\":\"webci\"}],\"data_name\":\"subtype\",\"db_name\":\"subtype\",\"description\":\"Subtype of the object.\",\"name\":\"subtype\",\"oasis\":{\"name\":\"subtype\"},\"ui\":{\"display_name\":\"Subtype\"}},{\"field_type\":\"id\",\"data_name\":\"id\",\"db_name\":\"id\",\"description\":\"The issue which was updated.\",\"id_type\":[\"issue\"],\"is_required\":true,\"name\":\"id\",\"oasis\":{\"name\":\"id\"},\"ui\":{\"display_name\":\"Issue Object\"}},{\"field_type\":\"text\",\"data_name\":\"body\",\"db_name\":\"body\",\"description\":\"The description of the issue.\",\"name\":\"body\",\"oasis\":{\"name\":\"body\"},\"ui\":{\"display_name\":\"Description\"}},{\"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\":\"modified_date\",\"db_name\":\"modified_date\",\"description\":\"Timestamp when the object was last modified.\",\"name\":\"modified_date\",\"oasis\":{\"name\":\"modified_date\"}},{\"field_type\":\"enum\",\"allowed_values\":[\"p0\",\"p1\",\"p2\",\"p3\"],\"data_name\":\"priority\",\"db_name\":\"priority\",\"description\":\"Priority of the work based upon impact and criticality.\",\"name\":\"priority\",\"oasis\":{\"name\":\"priority\"}},{\"field_type\":\"timestamp\",\"data_name\":\"target_close_date\",\"db_name\":\"target_close_date\",\"description\":\"Timestamp when the work is expected to be complete.\",\"name\":\"target_close_date\",\"oasis\":{\"name\":\"target_close_date\"}},{\"field_type\":\"timestamp\",\"data_name\":\"target_start_date\",\"db_name\":\"target_start_date\",\"description\":\"Target start date for the object.\",\"name\":\"target_start_date\",\"oasis\":{\"name\":\"target_start_date\"}},{\"field_type\":\"text\",\"data_name\":\"title\",\"db_name\":\"title\",\"description\":\"Title of the work object.\",\"is_required\":true,\"name\":\"title\",\"oasis\":{\"name\":\"title\"}},{\"field_type\":\"composite\",\"composite_type\":\"_gen:applies_to_part\",\"data_name\":\"applies_to_part\",\"db_name\":\"applies_to_part\",\"name\":\"applies_to_part\",\"oasis\":{\"name\":\"applies_to_part\"}},{\"field_type\":\"array\",\"base_type\":\"composite\",\"composite_type\":\"_gen:artifact-summary\",\"data_name\":\"artifacts\",\"db_name\":\"artifacts\",\"name\":\"artifacts\",\"oasis\":{\"name\":\"artifacts\"}},{\"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\":\"array\",\"base_type\":\"composite\",\"composite_type\":\"_gen:part-summary\",\"data_name\":\"developed_with\",\"db_name\":\"developed_with\",\"name\":\"developed_with\",\"oasis\":{\"name\":\"developed_with\"}},{\"field_type\":\"double\",\"data_name\":\"estimated_effort\",\"db_name\":\"estimated_effort\",\"description\":\"Estimated effort to complete the issue.\",\"name\":\"estimated_effort\",\"oasis\":{\"name\":\"estimated_effort\"}},{\"field_type\":\"text\",\"data_name\":\"external_ref\",\"db_name\":\"external_ref\",\"description\":\"An opaque key that's associated with the work item that's\\nguaranteed to be unique across all work items of same type (issue,\\nticket, etc).\\n\",\"name\":\"external_ref\",\"oasis\":{\"name\":\"external_ref\"}},{\"field_type\":\"composite\",\"composite_type\":\"_gen:modified_by\",\"data_name\":\"modified_by\",\"db_name\":\"modified_by\",\"name\":\"modified_by\",\"oasis\":{\"name\":\"modified_by\"}},{\"field_type\":\"composite\",\"composite_type\":\"_gen:implicit:issue\",\"data_name\":\"old_issue\",\"db_name\":\"old_issue\",\"description\":\"Old issue object\",\"name\":\"old_issue\",\"oasis\":{\"name\":\"old_issue\"},\"ui\":{\"display_name\":\"Old Issue\"}},{\"field_type\":\"array\",\"base_type\":\"composite\",\"composite_type\":\"_gen:user-summary\",\"data_name\":\"owned_by\",\"db_name\":\"owned_by\",\"is_required\":true,\"name\":\"owned_by\",\"oasis\":{\"name\":\"owned_by\"}},{\"field_type\":\"array\",\"base_type\":\"composite\",\"composite_type\":\"_gen:user-summary\",\"data_name\":\"reported_by\",\"db_name\":\"reported_by\",\"name\":\"reported_by\",\"oasis\":{\"name\":\"reported_by\"}},{\"field_type\":\"composite\",\"composite_type\":\"_gen:sprint\",\"data_name\":\"sprint\",\"db_name\":\"sprint\",\"description\":\"Vista group item.\",\"name\":\"sprint\",\"oasis\":{\"name\":\"sprint\"}},{\"field_type\":\"composite\",\"composite_type\":\"_gen:stage\",\"data_name\":\"stage\",\"db_name\":\"stage\",\"description\":\"Describes the current stage of a work item.\",\"name\":\"stage\",\"oasis\":{\"name\":\"stage\"}},{\"field_type\":\"text\",\"data_name\":\"state_display_name\",\"db_name\":\"state_display_name\",\"description\":\"Display name for current state.\",\"name\":\"state_display_name\",\"oasis\":{\"name\":\"state_display_name\"}},{\"field_type\":\"array\",\"base_type\":\"composite\",\"composite_type\":\"_gen:tags\",\"data_name\":\"tags\",\"db_name\":\"tags\",\"description\":\"Tags associated with the object.\",\"name\":\"tags\",\"oasis\":{\"name\":\"tags\"}},{\"field_type\":\"enum\",\"allowed_values\":[\"issue\",\"opportunity\",\"task\",\"ticket\"],\"data_name\":\"type\",\"db_name\":\"type\",\"is_required\":true,\"name\":\"type\",\"oasis\":{\"name\":\"type\"}},{\"supported_filter_ops\":[\"any\",\"not_any\",\"empty\",\"not_empty\"],\"field_type\":\"text\",\"data_name\":\"tnt__app_ai_tdd_link\",\"db_name\":\"tnt__app_ai_tdd_link\",\"description\":\"Link to the technical design document\",\"is_filterable\":true,\"name\":\"tnt__app_ai_tdd_link\",\"oasis\":{\"name\":\"tnt__app_ai_tdd_link\"},\"ui\":{\"display_name\":\"TDD link\",\"placeholder\":\"Link to the technical design document\"}},{\"supported_filter_ops\":[\"any\",\"not_any\",\"empty\",\"not_empty\"],\"field_type\":\"enum\",\"allowed_values\":[\"Bug\",\"Incident\",\"New Work\",\"Tech Debt\"],\"data_name\":\"tnt__category_ai_predicted\",\"db_name\":\"tnt__category_ai_predicted\",\"description\":\"AI-predicted category of the issue (Bug, Incident, New Work, Tech Debt)\",\"is_filterable\":true,\"name\":\"tnt__category_ai_predicted\",\"oasis\":{\"name\":\"tnt__category_ai_predicted\"},\"ui\":{\"display_name\":\"Category (AI Predicted)\",\"placeholder\":\"Add Category (AI Predicted)\",\"tooltip\":\"Type of work\"}},{\"field_type\":\"rich_text\",\"data_name\":\"tnt__category_justification\",\"db_name\":\"tnt__category_justification\",\"description\":\"Justification for the AI predicted category populated in the field \\\"Category (AI Predicted)\\\"\",\"is_filterable\":false,\"name\":\"tnt__category_justification\",\"oasis\":{\"name\":\"tnt__category_justification\"},\"ui\":{\"display_name\":\"Category Justification\",\"placeholder\":\"Add Category Justification\",\"tooltip\":\"Justification for the AI predicted category populated in the field \\\"Category (AI Predicted)\\\"\"}},{\"supported_filter_ops\":[\"all\",\"any\",\"not_any\",\"empty\",\"not_empty\"],\"field_type\":\"array\",\"base_type\":\"enum\",\"allowed_values\":[\"Customer commit\",\"Feature work\",\"Quality - Latency\",\"Quality - One click\",\"Quality - Reliability\",\"Quality - Secure & Governed\",\"Quality - Self serve\"],\"data_name\":\"tnt__classification\",\"db_name\":\"tnt__classification\",\"description\":\"List of classifications for the issue (e.g., Customer Commit, Feature Work)\",\"is_filterable\":true,\"name\":\"tnt__classification\",\"oasis\":{\"name\":\"tnt__classification\"},\"ui\":{\"display_name\":\"Classification\",\"placeholder\":\"Add Classification\"}},{\"supported_filter_ops\":[\"any\",\"not_any\",\"empty\",\"not_empty\"],\"field_type\":\"text\",\"data_name\":\"tnt__datadog_issue_id\",\"db_name\":\"tnt__datadog_issue_id\",\"description\":\"Reference ID for the issue in Datadog\",\"is_filterable\":true,\"name\":\"tnt__datadog_issue_id\",\"oasis\":{\"name\":\"tnt__datadog_issue_id\"},\"ui\":{\"display_name\":\"DataDog Issue ID\",\"placeholder\":\"Add DataDog Issue ID\"}},{\"supported_filter_ops\":[\"any\",\"not_any\",\"empty\",\"not_empty\"],\"field_type\":\"int\",\"data_name\":\"tnt__deployment_blocked_time\",\"db_name\":\"tnt__deployment_blocked_time\",\"description\":\"Deployment Blocked Time\",\"is_filterable\":true,\"name\":\"tnt__deployment_blocked_time\",\"oasis\":{\"name\":\"tnt__deployment_blocked_time\"},\"ui\":{\"display_name\":\"Deployment Blocked Time\",\"placeholder\":\"Add Deployment Blocked Time\"}},{\"supported_filter_ops\":[\"any\",\"not_any\",\"empty\",\"not_empty\"],\"field_type\":\"enum\",\"allowed_values\":[\"Pebble\",\"Rock\",\"Stone\"],\"data_name\":\"tnt__effort_level\",\"db_name\":\"tnt__effort_level\",\"description\":\"Estimated effort level required for the issue (Pebble, Rock, Stone)\",\"is_filterable\":true,\"name\":\"tnt__effort_level\",\"oasis\":{\"name\":\"tnt__effort_level\"},\"ui\":{\"display_name\":\"Effort Level\",\"placeholder\":\"Add Effort Level\",\"tooltip\":\"Rock (>= 1 week), Stone (3 days to 1 week), Pebble (< 3 days)\"}},{\"supported_filter_ops\":[\"any\",\"not_any\",\"empty\",\"not_empty\"],\"field_type\":\"enum\",\"allowed_values\":[\"Agents\",\"Applied AI Eng\",\"Engineering\",\"Infra\",\"PRE\"],\"data_name\":\"tnt__eng_team\",\"db_name\":\"tnt__eng_team\",\"description\":\"Engineering team responsible for the issue (e.g., Applied Ai Eng, Infra)\",\"is_filterable\":true,\"name\":\"tnt__eng_team\",\"oasis\":{\"name\":\"tnt__eng_team\"},\"ui\":{\"display_name\":\"Team\",\"placeholder\":\"Add Team\"}},{\"supported_filter_ops\":[\"any\",\"not_any\",\"empty\",\"not_empty\"],\"field_type\":\"text\",\"data_name\":\"tnt__external_ref_id\",\"db_name\":\"tnt__external_ref_id\",\"description\":\"External reference ID for the issue\",\"is_filterable\":true,\"name\":\"tnt__external_ref_id\",\"oasis\":{\"name\":\"tnt__external_ref_id\"},\"ui\":{\"display_name\":\"External Ref Id\",\"placeholder\":\"Add External Ref Id\"}},{\"supported_filter_ops\":[\"any\",\"not_any\",\"empty\",\"not_empty\"],\"field_type\":\"text\",\"data_name\":\"tnt__hashed_deployment_id\",\"db_name\":\"tnt__hashed_deployment_id\",\"description\":\"Unique Hashed Deployment Id\",\"is_filterable\":true,\"name\":\"tnt__hashed_deployment_id\",\"oasis\":{\"name\":\"tnt__hashed_deployment_id\"},\"ui\":{\"display_name\":\"Hashed Deployment Id\",\"placeholder\":\"Add Hashed Deployment Id\"}},{\"supported_filter_ops\":[\"any\",\"not_any\",\"empty\",\"not_empty\"],\"field_type\":\"enum\",\"allowed_values\":[\"L\",\"M\",\"S\",\"XS\"],\"data_name\":\"tnt__level_of_effort\",\"db_name\":\"tnt__level_of_effort\",\"description\":\"Level of effort required for the issue (L, M, S, Xs)\",\"is_filterable\":true,\"name\":\"tnt__level_of_effort\",\"oasis\":{\"name\":\"tnt__level_of_effort\"},\"ui\":{\"display_name\":\"Level of Effort\",\"placeholder\":\"Add Level of Effort\",\"tooltip\":\"XS : <1 person week (0.5 sprint), S : 1-2 person week (0.5-1 sprint), M: 2-4 person week (1-2 sprints), L: 4+ person week (2+ sprints)\"}},{\"supported_filter_ops\":[\"any\",\"not_any\",\"empty\",\"not_empty\"],\"field_type\":\"id\",\"data_name\":\"tnt__release\",\"db_name\":\"tnt__release\",\"description\":\"ID of the associated release in custom_object.release\",\"id_type\":[\"custom_object.release\"],\"is_filterable\":true,\"name\":\"tnt__release\",\"oasis\":{\"name\":\"tnt__release\"},\"ui\":{\"display_name\":\"Release\",\"placeholder\":\"Add Release\"}},{\"field_type\":\"rich_text\",\"data_name\":\"tnt__release_notes\",\"db_name\":\"tnt__release_notes\",\"description\":\"Rich text notes detailing the release information for the issue\",\"name\":\"tnt__release_notes\",\"oasis\":{\"name\":\"tnt__release_notes\"},\"ui\":{\"display_name\":\"Release Notes\",\"placeholder\":\"Add Release Notes\"}},{\"supported_filter_ops\":[\"any\",\"not_any\",\"empty\",\"not_empty\"],\"field_type\":\"enum\",\"allowed_values\":[\"Adaas\",\"Agent\",\"Customization\",\"Dashboards\",\"Documentation\",\"Search\",\"Snap In\",\"Snap In as a Script\",\"Workflows\"],\"data_name\":\"tnt__solution_space\",\"db_name\":\"tnt__solution_space\",\"description\":\"Solution space category for the issue (e.g., Adaas, Dashboards, Workflows)\",\"is_filterable\":true,\"name\":\"tnt__solution_space\",\"oasis\":{\"name\":\"tnt__solution_space\"},\"ui\":{\"display_name\":\"Solution Space\",\"placeholder\":\"Add Solution Space\"}},{\"field_type\":\"rich_text\",\"data_name\":\"tnt__summary\",\"db_name\":\"tnt__summary\",\"description\":\"Rich text summary of the issue\",\"is_filterable\":false,\"name\":\"tnt__summary\",\"oasis\":{\"name\":\"tnt__summary\"},\"ui\":{\"display_name\":\"Summary\",\"placeholder\":\"Add Summary\"}},{\"supported_filter_ops\":[\"all\",\"any\",\"not_any\",\"empty\",\"not_empty\"],\"field_type\":\"array\",\"base_type\":\"id\",\"data_name\":\"tnt__theme\",\"db_name\":\"tnt__theme\",\"description\":\"List of associated themes from custom_object.theme\",\"id_type\":[\"custom_object.theme\"],\"is_filterable\":true,\"name\":\"tnt__theme\",\"oasis\":{\"name\":\"tnt__theme\"},\"ui\":{\"display_name\":\"Theme\",\"placeholder\":\"Add Theme\"}},{\"supported_filter_ops\":[\"any\",\"not_any\",\"empty\",\"not_empty\"],\"field_type\":\"text\",\"data_name\":\"tnt__ui_e2e_failure_testname\",\"db_name\":\"tnt__ui_e2e_failure_testname\",\"description\":\"UI E2E Failure Testname\",\"is_filterable\":true,\"name\":\"tnt__ui_e2e_failure_testname\",\"oasis\":{\"name\":\"tnt__ui_e2e_failure_testname\"},\"ui\":{\"display_name\":\"UI E2E Failure Testname\",\"placeholder\":\"Add UI E2E Failure Testname\"}},{\"supported_filter_ops\":[\"all\",\"any\",\"not_any\",\"empty\",\"not_empty\"],\"field_type\":\"array\",\"base_type\":\"id\",\"data_name\":\"tnt__visible_to\",\"db_name\":\"tnt__visible_to\",\"description\":\"Added list of users to give CRUD access\",\"id_type\":[\"group\"],\"is_filterable\":true,\"name\":\"tnt__visible_to\",\"oasis\":{\"name\":\"tnt__visible_to\"},\"ui\":{\"display_name\":\"Visible To\",\"placeholder\":\"Visible to users\"}}],\"type\":\"field_descriptor\"},\"type\":\"default\"}],\"reference_key\":\"issue_updated_1\",\"ui_metadata\":{\"position\":{\"x\":150,\"y\":45}}},{\"description\":\"Updates an issue\",\"input_ports\":[{\"name\":\"input\",\"schema\":{\"composite_schemas\":[{\"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:add\"},{\"fields\":[{\"field_type\":\"array\",\"max_items\":50,\"base_type\":\"id\",\"data_name\":\"add\",\"db_name\":\"add\",\"description\":\"Adds the provided artifacts (if not already present) to the field.\\n\",\"id_type\":[\"artifact\"],\"name\":\"add\",\"oasis\":{\"name\":\"add\"}},{\"field_type\":\"array\",\"max_items\":50,\"base_type\":\"id\",\"data_name\":\"remove\",\"db_name\":\"remove\",\"description\":\"Removes the provided artifacts (if they exist) from the field.\\n\",\"id_type\":[\"artifact\"],\"name\":\"remove\",\"oasis\":{\"name\":\"remove\"}},{\"field_type\":\"array\",\"max_items\":50,\"base_type\":\"id\",\"data_name\":\"set\",\"db_name\":\"set\",\"description\":\"Sets the field to the provided artifacts.\",\"id_type\":[\"artifact\"],\"name\":\"set\",\"oasis\":{\"name\":\"set\"}}],\"name\":\"_gen:artifacts\"},{\"fields\":[{\"field_type\":\"array\",\"max_items\":8,\"base_type\":\"id\",\"data_name\":\"set\",\"db_name\":\"set\",\"description\":\"Sets the IDs of the parts associated with issue.\",\"id_type\":[\"capability\",\"feature\",\"product\",\"runnable\",\"linkable\",\"enhancement\"],\"name\":\"set\",\"oasis\":{\"name\":\"set\"}}],\"name\":\"_gen:developed_with\"},{\"fields\":[{\"field_type\":\"array\",\"base_type\":\"id\",\"data_name\":\"set\",\"db_name\":\"set\",\"description\":\"Sets the owner IDs to the provided user IDs. This must not be\\nempty.\\n\",\"id_type\":[\"devu\",\"sysu\",\"svcacc\"],\"name\":\"set\",\"oasis\":{\"name\":\"set\"}}],\"name\":\"_gen:owned_by\"},{\"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:remove\"},{\"fields\":[{\"field_type\":\"array\",\"base_type\":\"id\",\"data_name\":\"set\",\"db_name\":\"set\",\"description\":\"Sets the reported by user IDs to the provided user IDs.\",\"id_type\":[\"devu\",\"sysu\",\"svcacc\",\"revu\"],\"name\":\"set\",\"oasis\":{\"name\":\"set\"}}],\"name\":\"_gen:reported_by\"},{\"fields\":[{\"field_type\":\"array\",\"base_type\":\"composite\",\"composite_type\":\"_gen:add\",\"data_name\":\"add\",\"db_name\":\"add\",\"description\":\"Adds the provided tags on the issue. Note: Provide either 'add' or 'remove' but not both.\",\"name\":\"add\",\"oasis\":{\"name\":\"add\"}},{\"field_type\":\"array\",\"base_type\":\"composite\",\"composite_type\":\"_gen:remove\",\"data_name\":\"remove\",\"db_name\":\"remove\",\"description\":\"Removes the provided tags on the issue. Note: Provide either 'add' or 'remove' but not both.\",\"name\":\"remove\",\"oasis\":{\"name\":\"remove\"}}],\"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/6\",\"don:core:dvrv-us-1:devo/0:custom_stage/27\",\"don:core:dvrv-us-1:devo/0:custom_stage/5\",\"don:core:dvrv-us-1:devo/0:custom_stage/17\",\"don:core:dvrv-us-1:devo/0:custom_stage/20\",\"don:core:dvrv-us-1:devo/0:custom_stage/13\",\"don:core:dvrv-us-1:devo/0:custom_stage/8\",\"don:core:dvrv-us-1:devo/0:custom_stage/15\",\"don:core:dvrv-us-1:devo/0:custom_stage/12\"]]}],\"field_descriptors\":[{\"field_type\":\"uenum\",\"allowed_values\":[{\"id\":90868322,\"label\":\"AAI Issue\",\"ordinal\":1,\"tooltip\":\"Subtype for AAI work.\",\"value\":\"aai_issue\"},{\"id\":90865466,\"label\":\"AAIOnboarding\",\"ordinal\":2,\"tooltip\":\"This is for the onboarding of AAI\",\"value\":\"aaionboarding\"},{\"id\":90865588,\"label\":\"Advocacy Customer References\",\"ordinal\":3,\"tooltip\":\"Advocacy Customer References\",\"value\":\"advocacy_customer_references\"},{\"id\":90866615,\"label\":\"AIOps Issue\",\"ordinal\":4,\"tooltip\":\"Subtype for AIOps work\",\"value\":\"aiops_issue\"},{\"id\":90866426,\"label\":\"Approved customer logos\",\"ordinal\":5,\"tooltip\":\"Approved customer logos\",\"value\":\"approved_customer_logos\"},{\"id\":90865434,\"label\":\"Cloud Engineering Requests\",\"ordinal\":6,\"tooltip\":\"Infrastructure Request Custom Fields\",\"value\":\"cloud_engineering_requests\"},{\"id\":90868446,\"label\":\"Customer Implementation \",\"ordinal\":7,\"tooltip\":\"Issue subtype for keeping track of Customer Implementation \",\"value\":\"cs_implementation\"},{\"id\":90866399,\"label\":\"Demand Gen\",\"ordinal\":8,\"tooltip\":\"Subtype for Demand Gen team work\",\"value\":\"demand_gen\"},{\"id\":90868479,\"label\":\"Demo Prep\",\"ordinal\":9,\"tooltip\":\"Tracks the work to prepare for presales demo\",\"value\":\"demo_prep\"},{\"id\":90869471,\"label\":\"Developer Experience\",\"ordinal\":10,\"tooltip\":\"Making DX better for internal/external users\",\"value\":\"developer_experience\"},{\"id\":90868293,\"label\":\"Incident\",\"ordinal\":11,\"tooltip\":\"Attributes for tracking a prod incident\",\"value\":\"Incident\"},{\"id\":90865590,\"label\":\"Onboarding\",\"ordinal\":12,\"tooltip\":\"Issue Subtype for all the Onboarding Tasks\",\"value\":\"Onboarding\"},{\"id\":90868291,\"label\":\"Patent\",\"ordinal\":13,\"tooltip\":\"Patent tracking\",\"value\":\"patent\"},{\"id\":90868316,\"label\":\"People Ops\",\"ordinal\":14,\"tooltip\":\"Subtype for testing HR fragment\",\"value\":\"people_ops\"},{\"id\":90868478,\"label\":\"PoC\",\"ordinal\":15,\"tooltip\":\"Updated stage issue\",\"value\":\"poc\"},{\"id\":90868477,\"label\":\"PoC Child\",\"ordinal\":16,\"tooltip\":\"Child issue within a PoC issue\",\"value\":\"poc_child\"},{\"id\":90868292,\"label\":\"Quality\",\"ordinal\":17,\"tooltip\":\"Reporting quality issuues/bugs\",\"value\":\"quality\"},{\"id\":90868317,\"label\":\"Security Risk\",\"ordinal\":18,\"value\":\"security_risk\"},{\"id\":90868315,\"label\":\"Strategic Engineering Topic\",\"ordinal\":19,\"tooltip\":\"Strategic engineering topic tracking\",\"value\":\"strategic_engineering_topic\"},{\"id\":90868319,\"label\":\"Support Issue\",\"ordinal\":20,\"tooltip\":\"The requests for support team to solve\",\"value\":\"support_issue\"},{\"id\":90868318,\"label\":\"WEBCI\",\"ordinal\":21,\"value\":\"webci\"}],\"data_name\":\"subtype\",\"db_name\":\"subtype\",\"description\":\"Subtype of the object. WARNING: Changing the subtype removes any fields that are missing in the new subtype or have a different type.\",\"name\":\"subtype\",\"oasis\":{\"name\":\"subtype\"},\"ui\":{\"display_name\":\"Subtype\"}},{\"field_type\":\"composite\",\"composite_type\":\"_gen:artifacts\",\"data_name\":\"artifacts\",\"db_name\":\"artifacts\",\"name\":\"artifacts\",\"oasis\":{\"name\":\"artifacts\"}},{\"field_type\":\"text\",\"data_name\":\"body\",\"db_name\":\"body\",\"description\":\"Updated body of the issue, or unchanged if not provided.\",\"max_len\":65536,\"name\":\"body\",\"oasis\":{\"name\":\"body\"}},{\"field_type\":\"composite\",\"composite_type\":\"_gen:developed_with\",\"data_name\":\"developed_with\",\"db_name\":\"developed_with\",\"name\":\"developed_with\",\"oasis\":{\"name\":\"developed_with\"}},{\"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\":\"uenum\",\"allowed_values\":[{\"id\":1,\"label\":\"P0\",\"ordinal\":1,\"value\":1},{\"id\":2,\"label\":\"P1\",\"ordinal\":2,\"value\":2},{\"id\":3,\"label\":\"P2\",\"ordinal\":3,\"value\":3},{\"id\":4,\"label\":\"P3\",\"ordinal\":4,\"value\":4}],\"data_name\":\"priority_v2\",\"db_name\":\"priority_v2\",\"description\":\"Priority enum id of the work based upon impact and criticality. The\\nallowed ids can be extended by the user. Stock allowed values:\\n```\\n {\\n \\\"id\\\": 1,\\n \\\"label\\\": \\\"P0\\\",\\n \\\"ordinal\\\": 1,\\n \\\"overridable\\\": true\\n },\\n {\\n \\\"id\\\": 2,\\n \\\"label\\\": \\\"P1\\\",\\n \\\"ordinal\\\": 2,\\n \\\"overridable\\\": true\\n },\\n {\\n \\\"id\\\": 3,\\n \\\"label\\\": \\\"P2\\\",\\n \\\"ordinal\\\": 3,\\n \\\"overridable\\\": true\\n },\\n {\\n \\\"id\\\": 4,\\n \\\"label\\\": \\\"P3\\\",\\n \\\"ordinal\\\": 4,\\n \\\"overridable\\\": true\\n }\\n```\\n\",\"name\":\"priority_v2\",\"oasis\":{\"name\":\"priority_v2\"}},{\"field_type\":\"composite\",\"composite_type\":\"_gen:reported_by\",\"data_name\":\"reported_by\",\"db_name\":\"reported_by\",\"name\":\"reported_by\",\"oasis\":{\"name\":\"reported_by\"}},{\"field_type\":\"id\",\"data_name\":\"sprint\",\"db_name\":\"sprint\",\"description\":\"Updates the sprint that the issue belongs to.\",\"id_type\":[\"vista_group_item\"],\"name\":\"sprint\",\"oasis\":{\"name\":\"sprint\"}},{\"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\":\"Updates the timestamp for when the issue is expected to be complete.\",\"name\":\"target_close_date\",\"oasis\":{\"name\":\"target_close_date\"}},{\"field_type\":\"timestamp\",\"data_name\":\"target_start_date\",\"db_name\":\"target_start_date\",\"description\":\"Updates the timestamp for when the issue is expected to start.\",\"name\":\"target_start_date\",\"oasis\":{\"name\":\"target_start_date\"}},{\"field_type\":\"text\",\"data_name\":\"title\",\"db_name\":\"title\",\"description\":\"Updated title of the issue, or unchanged if not provided.\",\"max_len\":256,\"min_len\":1,\"name\":\"title\",\"oasis\":{\"name\":\"title\"}},{\"field_type\":\"id\",\"data_name\":\"applies_to_part\",\"db_name\":\"applies_to_part\",\"description\":\"Updates the part that the issue applies to.\",\"id_type\":[\"capability\",\"feature\",\"product\",\"runnable\",\"linkable\",\"enhancement\"],\"name\":\"applies_to_part\",\"oasis\":{\"name\":\"applies_to_part\"}},{\"field_type\":\"id\",\"data_name\":\"id\",\"db_name\":\"id\",\"description\":\"The ID of issue to update.\",\"id_type\":[\"issue\"],\"is_required\":true,\"name\":\"id\",\"oasis\":{\"name\":\"id\"}},{\"field_type\":\"id\",\"data_name\":\"stage\",\"db_name\":\"stage\",\"description\":\"The stage of the issue.\",\"id_type\":[\"custom_stage\"],\"name\":\"stage\",\"oasis\":{\"name\":\"stage\"}},{\"field_type\":\"array\",\"base_type\":\"enum\",\"allowed_values\":[\"slack\",\"devrev_cloud_engineering\",\"github_issue_categorization\",\"bulk_work_item_snapin\",\"on_call_assistant\"],\"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\":\"text\",\"data_name\":\"tnt__app_ai_tdd_link\",\"db_name\":\"tnt__app_ai_tdd_link\",\"description\":\"Link to the technical design document\",\"is_filterable\":true,\"name\":\"tnt__app_ai_tdd_link\",\"oasis\":{\"name\":\"tnt__app_ai_tdd_link\"},\"ui\":{\"display_name\":\"TDD link\",\"placeholder\":\"Link to the technical design document\"}},{\"supported_filter_ops\":[\"any\",\"not_any\",\"empty\",\"not_empty\"],\"field_type\":\"enum\",\"allowed_values\":[\"Bug\",\"Incident\",\"New Work\",\"Tech Debt\"],\"data_name\":\"tnt__category_ai_predicted\",\"db_name\":\"tnt__category_ai_predicted\",\"description\":\"AI-predicted category of the issue (Bug, Incident, New Work, Tech Debt)\",\"is_filterable\":true,\"name\":\"tnt__category_ai_predicted\",\"oasis\":{\"name\":\"tnt__category_ai_predicted\"},\"ui\":{\"display_name\":\"Category (AI Predicted)\",\"placeholder\":\"Add Category (AI Predicted)\",\"tooltip\":\"Type of work\"}},{\"field_type\":\"rich_text\",\"data_name\":\"tnt__category_justification\",\"db_name\":\"tnt__category_justification\",\"description\":\"Justification for the AI predicted category populated in the field \\\"Category (AI Predicted)\\\"\",\"is_filterable\":false,\"name\":\"tnt__category_justification\",\"oasis\":{\"name\":\"tnt__category_justification\"},\"ui\":{\"display_name\":\"Category Justification\",\"placeholder\":\"Add Category Justification\",\"tooltip\":\"Justification for the AI predicted category populated in the field \\\"Category (AI Predicted)\\\"\"}},{\"supported_filter_ops\":[\"all\",\"any\",\"not_any\",\"empty\",\"not_empty\"],\"field_type\":\"array\",\"base_type\":\"enum\",\"allowed_values\":[\"Customer commit\",\"Feature work\",\"Quality - Latency\",\"Quality - One click\",\"Quality - Reliability\",\"Quality - Secure & Governed\",\"Quality - Self serve\"],\"data_name\":\"tnt__classification\",\"db_name\":\"tnt__classification\",\"description\":\"List of classifications for the issue (e.g., Customer Commit, Feature Work)\",\"is_filterable\":true,\"name\":\"tnt__classification\",\"oasis\":{\"name\":\"tnt__classification\"},\"ui\":{\"display_name\":\"Classification\",\"placeholder\":\"Add Classification\"}},{\"supported_filter_ops\":[\"any\",\"not_any\",\"empty\",\"not_empty\"],\"field_type\":\"text\",\"data_name\":\"tnt__datadog_issue_id\",\"db_name\":\"tnt__datadog_issue_id\",\"description\":\"Reference ID for the issue in Datadog\",\"is_filterable\":true,\"name\":\"tnt__datadog_issue_id\",\"oasis\":{\"name\":\"tnt__datadog_issue_id\"},\"ui\":{\"display_name\":\"DataDog Issue ID\",\"placeholder\":\"Add DataDog Issue ID\"}},{\"supported_filter_ops\":[\"any\",\"not_any\",\"empty\",\"not_empty\"],\"field_type\":\"int\",\"data_name\":\"tnt__deployment_blocked_time\",\"db_name\":\"tnt__deployment_blocked_time\",\"description\":\"Deployment Blocked Time\",\"is_filterable\":true,\"name\":\"tnt__deployment_blocked_time\",\"oasis\":{\"name\":\"tnt__deployment_blocked_time\"},\"ui\":{\"display_name\":\"Deployment Blocked Time\",\"placeholder\":\"Add Deployment Blocked Time\"}},{\"supported_filter_ops\":[\"any\",\"not_any\",\"empty\",\"not_empty\"],\"field_type\":\"enum\",\"allowed_values\":[\"Pebble\",\"Rock\",\"Stone\"],\"data_name\":\"tnt__effort_level\",\"db_name\":\"tnt__effort_level\",\"description\":\"Estimated effort level required for the issue (Pebble, Rock, Stone)\",\"is_filterable\":true,\"name\":\"tnt__effort_level\",\"oasis\":{\"name\":\"tnt__effort_level\"},\"ui\":{\"display_name\":\"Effort Level\",\"placeholder\":\"Add Effort Level\",\"tooltip\":\"Rock (>= 1 week), Stone (3 days to 1 week), Pebble (< 3 days)\"}},{\"supported_filter_ops\":[\"any\",\"not_any\",\"empty\",\"not_empty\"],\"field_type\":\"enum\",\"allowed_values\":[\"Agents\",\"Applied AI Eng\",\"Engineering\",\"Infra\",\"PRE\"],\"data_name\":\"tnt__eng_team\",\"db_name\":\"tnt__eng_team\",\"description\":\"Engineering team responsible for the issue (e.g., Applied Ai Eng, Infra)\",\"is_filterable\":true,\"name\":\"tnt__eng_team\",\"oasis\":{\"name\":\"tnt__eng_team\"},\"ui\":{\"display_name\":\"Team\",\"placeholder\":\"Add Team\"}},{\"supported_filter_ops\":[\"any\",\"not_any\",\"empty\",\"not_empty\"],\"field_type\":\"text\",\"data_name\":\"tnt__external_ref_id\",\"db_name\":\"tnt__external_ref_id\",\"description\":\"External reference ID for the issue\",\"is_filterable\":true,\"name\":\"tnt__external_ref_id\",\"oasis\":{\"name\":\"tnt__external_ref_id\"},\"ui\":{\"display_name\":\"External Ref Id\",\"placeholder\":\"Add External Ref Id\"}},{\"supported_filter_ops\":[\"any\",\"not_any\",\"empty\",\"not_empty\"],\"field_type\":\"text\",\"data_name\":\"tnt__hashed_deployment_id\",\"db_name\":\"tnt__hashed_deployment_id\",\"description\":\"Unique Hashed Deployment Id\",\"is_filterable\":true,\"name\":\"tnt__hashed_deployment_id\",\"oasis\":{\"name\":\"tnt__hashed_deployment_id\"},\"ui\":{\"display_name\":\"Hashed Deployment Id\",\"placeholder\":\"Add Hashed Deployment Id\"}},{\"supported_filter_ops\":[\"any\",\"not_any\",\"empty\",\"not_empty\"],\"field_type\":\"enum\",\"allowed_values\":[\"L\",\"M\",\"S\",\"XS\"],\"data_name\":\"tnt__level_of_effort\",\"db_name\":\"tnt__level_of_effort\",\"description\":\"Level of effort required for the issue (L, M, S, Xs)\",\"is_filterable\":true,\"name\":\"tnt__level_of_effort\",\"oasis\":{\"name\":\"tnt__level_of_effort\"},\"ui\":{\"display_name\":\"Level of Effort\",\"placeholder\":\"Add Level of Effort\",\"tooltip\":\"XS : <1 person week (0.5 sprint), S : 1-2 person week (0.5-1 sprint), M: 2-4 person week (1-2 sprints), L: 4+ person week (2+ sprints)\"}},{\"supported_filter_ops\":[\"any\",\"not_any\",\"empty\",\"not_empty\"],\"field_type\":\"id\",\"data_name\":\"tnt__release\",\"db_name\":\"tnt__release\",\"description\":\"ID of the associated release in custom_object.release\",\"id_type\":[\"custom_object.release\"],\"is_filterable\":true,\"name\":\"tnt__release\",\"oasis\":{\"name\":\"tnt__release\"},\"ui\":{\"display_name\":\"Release\",\"placeholder\":\"Add Release\"}},{\"field_type\":\"rich_text\",\"data_name\":\"tnt__release_notes\",\"db_name\":\"tnt__release_notes\",\"description\":\"Rich text notes detailing the release information for the issue\",\"name\":\"tnt__release_notes\",\"oasis\":{\"name\":\"tnt__release_notes\"},\"ui\":{\"display_name\":\"Release Notes\",\"placeholder\":\"Add Release Notes\"}},{\"supported_filter_ops\":[\"any\",\"not_any\",\"empty\",\"not_empty\"],\"field_type\":\"enum\",\"allowed_values\":[\"Adaas\",\"Agent\",\"Customization\",\"Dashboards\",\"Documentation\",\"Search\",\"Snap In\",\"Snap In as a Script\",\"Workflows\"],\"data_name\":\"tnt__solution_space\",\"db_name\":\"tnt__solution_space\",\"description\":\"Solution space category for the issue (e.g., Adaas, Dashboards, Workflows)\",\"is_filterable\":true,\"name\":\"tnt__solution_space\",\"oasis\":{\"name\":\"tnt__solution_space\"},\"ui\":{\"display_name\":\"Solution Space\",\"placeholder\":\"Add Solution Space\"}},{\"field_type\":\"rich_text\",\"data_name\":\"tnt__summary\",\"db_name\":\"tnt__summary\",\"description\":\"Rich text summary of the issue\",\"is_filterable\":false,\"name\":\"tnt__summary\",\"oasis\":{\"name\":\"tnt__summary\"},\"ui\":{\"display_name\":\"Summary\",\"placeholder\":\"Add Summary\"}},{\"supported_filter_ops\":[\"all\",\"any\",\"not_any\",\"empty\",\"not_empty\"],\"field_type\":\"array\",\"base_type\":\"id\",\"data_name\":\"tnt__theme\",\"db_name\":\"tnt__theme\",\"description\":\"List of associated themes from custom_object.theme\",\"id_type\":[\"custom_object.theme\"],\"is_filterable\":true,\"name\":\"tnt__theme\",\"oasis\":{\"name\":\"tnt__theme\"},\"ui\":{\"display_name\":\"Theme\",\"placeholder\":\"Add Theme\"}},{\"supported_filter_ops\":[\"any\",\"not_any\",\"empty\",\"not_empty\"],\"field_type\":\"text\",\"data_name\":\"tnt__ui_e2e_failure_testname\",\"db_name\":\"tnt__ui_e2e_failure_testname\",\"description\":\"UI E2E Failure Testname\",\"is_filterable\":true,\"name\":\"tnt__ui_e2e_failure_testname\",\"oasis\":{\"name\":\"tnt__ui_e2e_failure_testname\"},\"ui\":{\"display_name\":\"UI E2E Failure Testname\",\"placeholder\":\"Add UI E2E Failure Testname\"}},{\"supported_filter_ops\":[\"all\",\"any\",\"not_any\",\"empty\",\"not_empty\"],\"field_type\":\"array\",\"base_type\":\"id\",\"data_name\":\"tnt__visible_to\",\"db_name\":\"tnt__visible_to\",\"description\":\"Added list of users to give CRUD access\",\"id_type\":[\"group\"],\"is_filterable\":true,\"name\":\"tnt__visible_to\",\"oasis\":{\"name\":\"tnt__visible_to\"},\"ui\":{\"display_name\":\"Visible To\",\"placeholder\":\"Visible to users\"}}],\"invalidate_on_field_update\":[\"subtype\",\"apps\"],\"type\":\"field_descriptor\"},\"type\":\"default\"}],\"input_values\":[{\"fields\":[{\"name\":\"id\",\"value\":{\"type\":\"jsonata_expression\",\"value\":\"$get('issue_updated_1', 'output').id\"}},{\"name\":\"target_close_date\",\"value\":{\"type\":\"jsonata_expression\",\"value\":\"$get('issue_updated_1', 'output').sprint.end_date\"}}],\"port_name\":\"input\"}],\"name\":\"Update Issue TCD\",\"next_steps\":[{\"next_port_name\":\"input\",\"next_step_reference_key\":\"update_issue_2\",\"port_name\":\"output\"}],\"operation\":{\"namespace\":\"devrev\",\"slug\":\"update_issue\"},\"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\":\"id\",\"db_name\":\"id\",\"description\":\"Globally unique object ID.\",\"is_required\":true,\"name\":\"id\",\"oasis\":{\"name\":\"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\":\"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:sync_metadata\",\"data_name\":\"sync_metadata\",\"db_name\":\"sync_metadata\",\"description\":\"Sync information for records synced into/from DevRev.\",\"name\":\"sync_metadata\",\"oasis\":{\"name\":\"sync_metadata\"}},{\"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\"}}],\"name\":\"_gen:applies_to_part\"},{\"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\"}}],\"name\":\"_gen:artifact-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\":\"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:created_by\"},{\"fields\":[{\"field_type\":\"text\",\"data_name\":\"display_id\",\"db_name\":\"display_id\",\"description\":\"Human-readable object ID unique to the Dev organization.\",\"name\":\"display_id\",\"oasis\":{\"name\":\"display_id\"}},{\"field_type\":\"text\",\"data_name\":\"id\",\"db_name\":\"id\",\"description\":\"Globally unique object ID.\",\"is_required\":true,\"name\":\"id\",\"oasis\":{\"name\":\"id\"}}],\"name\":\"_gen:display_picture\"},{\"fields\":[{\"field_type\":\"text\",\"data_name\":\"display_id\",\"db_name\":\"display_id\",\"description\":\"Human-readable object ID unique to the Dev organization.\",\"name\":\"display_id\",\"oasis\":{\"name\":\"display_id\"}},{\"field_type\":\"text\",\"data_name\":\"display_name\",\"db_name\":\"display_name\",\"description\":\"The user's display name. The name is non-unique and mutable.\\n\",\"name\":\"display_name\",\"oasis\":{\"name\":\"display_name\"}},{\"field_type\":\"composite\",\"composite_type\":\"_gen:display_picture\",\"data_name\":\"display_picture\",\"db_name\":\"display_picture\",\"name\":\"display_picture\",\"oasis\":{\"name\":\"display_picture\"}},{\"field_type\":\"text\",\"data_name\":\"email\",\"db_name\":\"email\",\"description\":\"Email address of the user.\",\"name\":\"email\",\"oasis\":{\"name\":\"email\"}},{\"field_type\":\"text\",\"data_name\":\"external_ref\",\"db_name\":\"external_ref\",\"description\":\"External ref is a mutable unique identifier for a user within the\\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:modified_by\"},{\"fields\":[{\"field_type\":\"text\",\"data_name\":\"display_id\",\"db_name\":\"display_id\",\"description\":\"Human-readable object ID unique to the Dev organization.\",\"name\":\"display_id\",\"oasis\":{\"name\":\"display_id\"}},{\"field_type\":\"text\",\"data_name\":\"id\",\"db_name\":\"id\",\"description\":\"Globally unique object ID.\",\"is_required\":true,\"name\":\"id\",\"oasis\":{\"name\":\"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\":\"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:sync_metadata\",\"data_name\":\"sync_metadata\",\"db_name\":\"sync_metadata\",\"description\":\"Sync information for records synced into/from DevRev.\",\"name\":\"sync_metadata\",\"oasis\":{\"name\":\"sync_metadata\"}},{\"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\"}}],\"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\":\"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\",\"dev_org\",\"rev_org\"],\"data_name\":\"type\",\"db_name\":\"type\",\"is_required\":true,\"name\":\"type\",\"oasis\":{\"name\":\"type\"}}],\"name\":\"_gen:rev_org\"},{\"description\":\"Vista group item.\",\"fields\":[{\"field_type\":\"timestamp\",\"data_name\":\"end_date\",\"db_name\":\"end_date\",\"description\":\"Timestamp when the vista ends.\",\"name\":\"end_date\",\"oasis\":{\"name\":\"end_date\"}},{\"field_type\":\"text\",\"data_name\":\"id\",\"db_name\":\"id\",\"description\":\"ID of the group item in don v2 format.\",\"is_required\":true,\"name\":\"id\",\"oasis\":{\"name\":\"id\"}},{\"field_type\":\"text\",\"data_name\":\"name\",\"db_name\":\"name\",\"description\":\"Name of the group.\",\"is_required\":true,\"name\":\"name\",\"oasis\":{\"name\":\"name\"}},{\"field_type\":\"timestamp\",\"data_name\":\"start_date\",\"db_name\":\"start_date\",\"description\":\"Timestamp when the vista starts.\",\"name\":\"start_date\",\"oasis\":{\"name\":\"start_date\"}},{\"field_type\":\"enum\",\"allowed_values\":[\"active\",\"completed\",\"planned\"],\"data_name\":\"state\",\"db_name\":\"state\",\"description\":\"Defines the state of the group item.\",\"name\":\"state\",\"oasis\":{\"name\":\"state\"}},{\"field_type\":\"enum\",\"allowed_values\":[\"curated\",\"dynamic\"],\"data_name\":\"type\",\"db_name\":\"type\",\"description\":\"Type of the group object.\",\"is_required\":true,\"name\":\"type\",\"oasis\":{\"name\":\"type\"}}],\"name\":\"_gen:sprint\"},{\"description\":\"Describes the current stage of a work item.\",\"fields\":[{\"field_type\":\"text\",\"data_name\":\"name\",\"db_name\":\"name\",\"description\":\"Current stage name of the work item.\",\"is_required\":true,\"name\":\"name\",\"oasis\":{\"name\":\"name\"}},{\"field_type\":\"composite\",\"composite_type\":\"stage.stage\",\"data_name\":\"stage\",\"db_name\":\"stage\",\"description\":\"The stage of the issue.\",\"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\":\"text\",\"data_name\":\"name\",\"db_name\":\"name\",\"description\":\"The name of the tag, which denotes the logical concept by which all\\ntagged objects will be associated. The name is guaranteed to be\\nunique.\\n\",\"is_required\":true,\"name\":\"name\",\"oasis\":{\"name\":\"name\"}},{\"field_type\":\"text\",\"data_name\":\"id\",\"db_name\":\"id\",\"description\":\"Globally unique object ID.\",\"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\"},{\"description\":\"Describes the current stage of a work item.\",\"fields\":[{\"field_type\":\"id\",\"data_name\":\"id\",\"db_name\":\"id\",\"description\":\"The stage of the issue.\",\"id_type\":[\"custom_stage\"],\"name\":\"id\",\"oasis\":{\"name\":\"id\"}}],\"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/6\",\"don:core:dvrv-us-1:devo/0:custom_stage/27\",\"don:core:dvrv-us-1:devo/0:custom_stage/5\",\"don:core:dvrv-us-1:devo/0:custom_stage/17\",\"don:core:dvrv-us-1:devo/0:custom_stage/20\",\"don:core:dvrv-us-1:devo/0:custom_stage/13\",\"don:core:dvrv-us-1:devo/0:custom_stage/8\",\"don:core:dvrv-us-1:devo/0:custom_stage/15\",\"don:core:dvrv-us-1:devo/0:custom_stage/12\"]]}],\"field_descriptors\":[{\"field_type\":\"uenum\",\"allowed_values\":[{\"id\":90868322,\"label\":\"AAI Issue\",\"ordinal\":1,\"tooltip\":\"Subtype for AAI work.\",\"value\":\"aai_issue\"},{\"id\":90865466,\"label\":\"AAIOnboarding\",\"ordinal\":2,\"tooltip\":\"This is for the onboarding of AAI\",\"value\":\"aaionboarding\"},{\"id\":90865588,\"label\":\"Advocacy Customer References\",\"ordinal\":3,\"tooltip\":\"Advocacy Customer References\",\"value\":\"advocacy_customer_references\"},{\"id\":90866615,\"label\":\"AIOps Issue\",\"ordinal\":4,\"tooltip\":\"Subtype for AIOps work\",\"value\":\"aiops_issue\"},{\"id\":90866426,\"label\":\"Approved customer logos\",\"ordinal\":5,\"tooltip\":\"Approved customer logos\",\"value\":\"approved_customer_logos\"},{\"id\":90865434,\"label\":\"Cloud Engineering Requests\",\"ordinal\":6,\"tooltip\":\"Infrastructure Request Custom Fields\",\"value\":\"cloud_engineering_requests\"},{\"id\":90868446,\"label\":\"Customer Implementation \",\"ordinal\":7,\"tooltip\":\"Issue subtype for keeping track of Customer Implementation \",\"value\":\"cs_implementation\"},{\"id\":90866399,\"label\":\"Demand Gen\",\"ordinal\":8,\"tooltip\":\"Subtype for Demand Gen team work\",\"value\":\"demand_gen\"},{\"id\":90868479,\"label\":\"Demo Prep\",\"ordinal\":9,\"tooltip\":\"Tracks the work to prepare for presales demo\",\"value\":\"demo_prep\"},{\"id\":90869471,\"label\":\"Developer Experience\",\"ordinal\":10,\"tooltip\":\"Making DX better for internal/external users\",\"value\":\"developer_experience\"},{\"id\":90868293,\"label\":\"Incident\",\"ordinal\":11,\"tooltip\":\"Attributes for tracking a prod incident\",\"value\":\"Incident\"},{\"id\":90865590,\"label\":\"Onboarding\",\"ordinal\":12,\"tooltip\":\"Issue Subtype for all the Onboarding Tasks\",\"value\":\"Onboarding\"},{\"id\":90868291,\"label\":\"Patent\",\"ordinal\":13,\"tooltip\":\"Patent tracking\",\"value\":\"patent\"},{\"id\":90868316,\"label\":\"People Ops\",\"ordinal\":14,\"tooltip\":\"Subtype for testing HR fragment\",\"value\":\"people_ops\"},{\"id\":90868478,\"label\":\"PoC\",\"ordinal\":15,\"tooltip\":\"Updated stage issue\",\"value\":\"poc\"},{\"id\":90868477,\"label\":\"PoC Child\",\"ordinal\":16,\"tooltip\":\"Child issue within a PoC issue\",\"value\":\"poc_child\"},{\"id\":90868292,\"label\":\"Quality\",\"ordinal\":17,\"tooltip\":\"Reporting quality issuues/bugs\",\"value\":\"quality\"},{\"id\":90868317,\"label\":\"Security Risk\",\"ordinal\":18,\"value\":\"security_risk\"},{\"id\":90868315,\"label\":\"Strategic Engineering Topic\",\"ordinal\":19,\"tooltip\":\"Strategic engineering topic tracking\",\"value\":\"strategic_engineering_topic\"},{\"id\":90868319,\"label\":\"Support Issue\",\"ordinal\":20,\"tooltip\":\"The requests for support team to solve\",\"value\":\"support_issue\"},{\"id\":90868318,\"label\":\"WEBCI\",\"ordinal\":21,\"value\":\"webci\"}],\"data_name\":\"subtype\",\"db_name\":\"subtype\",\"description\":\"Subtype of the object. WARNING: Changing the subtype removes any fields that are missing in the new subtype or have a different type.\",\"name\":\"subtype\",\"oasis\":{\"name\":\"subtype\"},\"ui\":{\"display_name\":\"Subtype\"}},{\"field_type\":\"composite\",\"composite_type\":\"_gen:applies_to_part\",\"data_name\":\"applies_to_part\",\"db_name\":\"applies_to_part\",\"name\":\"applies_to_part\",\"oasis\":{\"name\":\"applies_to_part\"}},{\"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\":\"body\",\"db_name\":\"body\",\"description\":\"Body of the work object.\",\"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\":\"array\",\"base_type\":\"composite\",\"composite_type\":\"_gen:part-summary\",\"data_name\":\"developed_with\",\"db_name\":\"developed_with\",\"name\":\"developed_with\",\"oasis\":{\"name\":\"developed_with\"}},{\"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\":\"double\",\"data_name\":\"estimated_effort\",\"db_name\":\"estimated_effort\",\"description\":\"Estimated effort to complete the issue.\",\"name\":\"estimated_effort\",\"oasis\":{\"name\":\"estimated_effort\"}},{\"field_type\":\"text\",\"data_name\":\"external_ref\",\"db_name\":\"external_ref\",\"description\":\"An opaque key that's associated with the work item that's\\nguaranteed to be unique across all work items of same type (issue,\\nticket, etc).\\n\",\"name\":\"external_ref\",\"oasis\":{\"name\":\"external_ref\"}},{\"field_type\":\"composite\",\"composite_type\":\"_gen:modified_by\",\"data_name\":\"modified_by\",\"db_name\":\"modified_by\",\"name\":\"modified_by\",\"oasis\":{\"name\":\"modified_by\"}},{\"field_type\":\"timestamp\",\"data_name\":\"modified_date\",\"db_name\":\"modified_date\",\"description\":\"Timestamp when the 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\",\"is_required\":true,\"name\":\"owned_by\",\"oasis\":{\"name\":\"owned_by\"}},{\"field_type\":\"enum\",\"allowed_values\":[\"p0\",\"p1\",\"p2\",\"p3\"],\"data_name\":\"priority\",\"db_name\":\"priority\",\"description\":\"Priority of the work based upon impact and criticality.\",\"name\":\"priority\",\"oasis\":{\"name\":\"priority\"}},{\"field_type\":\"array\",\"base_type\":\"composite\",\"composite_type\":\"_gen:user-summary\",\"data_name\":\"reported_by\",\"db_name\":\"reported_by\",\"name\":\"reported_by\",\"oasis\":{\"name\":\"reported_by\"}},{\"field_type\":\"composite\",\"composite_type\":\"_gen:sprint\",\"data_name\":\"sprint\",\"db_name\":\"sprint\",\"description\":\"Vista group item.\",\"name\":\"sprint\",\"oasis\":{\"name\":\"sprint\"}},{\"field_type\":\"composite\",\"composite_type\":\"_gen:stage\",\"data_name\":\"stage\",\"db_name\":\"stage\",\"description\":\"Describes the current stage of a work item.\",\"name\":\"stage\",\"oasis\":{\"name\":\"stage\"}},{\"field_type\":\"text\",\"data_name\":\"state_display_name\",\"db_name\":\"state_display_name\",\"description\":\"Display name for current state.\",\"name\":\"state_display_name\",\"oasis\":{\"name\":\"state_display_name\"}},{\"field_type\":\"array\",\"base_type\":\"composite\",\"composite_type\":\"_gen:tags\",\"data_name\":\"tags\",\"db_name\":\"tags\",\"description\":\"Tags associated with the object.\",\"name\":\"tags\",\"oasis\":{\"name\":\"tags\"}},{\"field_type\":\"timestamp\",\"data_name\":\"target_close_date\",\"db_name\":\"target_close_date\",\"description\":\"Timestamp when the work is expected to be complete.\",\"name\":\"target_close_date\",\"oasis\":{\"name\":\"target_close_date\"}},{\"field_type\":\"timestamp\",\"data_name\":\"target_start_date\",\"db_name\":\"target_start_date\",\"description\":\"Target start date for the object.\",\"name\":\"target_start_date\",\"oasis\":{\"name\":\"target_start_date\"}},{\"field_type\":\"text\",\"data_name\":\"title\",\"db_name\":\"title\",\"description\":\"Title of the work object.\",\"is_required\":true,\"name\":\"title\",\"oasis\":{\"name\":\"title\"}},{\"field_type\":\"enum\",\"allowed_values\":[\"issue\",\"opportunity\",\"task\",\"ticket\"],\"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\":[\"issue\"],\"is_required\":true,\"name\":\"id\",\"oasis\":{\"name\":\"id\"}},{\"supported_filter_ops\":[\"any\",\"not_any\",\"empty\",\"not_empty\"],\"field_type\":\"text\",\"data_name\":\"tnt__app_ai_tdd_link\",\"db_name\":\"tnt__app_ai_tdd_link\",\"description\":\"Link to the technical design document\",\"is_filterable\":true,\"name\":\"tnt__app_ai_tdd_link\",\"oasis\":{\"name\":\"tnt__app_ai_tdd_link\"},\"ui\":{\"display_name\":\"TDD link\",\"placeholder\":\"Link to the technical design document\"}},{\"supported_filter_ops\":[\"any\",\"not_any\",\"empty\",\"not_empty\"],\"field_type\":\"enum\",\"allowed_values\":[\"Bug\",\"Incident\",\"New Work\",\"Tech Debt\"],\"data_name\":\"tnt__category_ai_predicted\",\"db_name\":\"tnt__category_ai_predicted\",\"description\":\"AI-predicted category of the issue (Bug, Incident, New Work, Tech Debt)\",\"is_filterable\":true,\"name\":\"tnt__category_ai_predicted\",\"oasis\":{\"name\":\"tnt__category_ai_predicted\"},\"ui\":{\"display_name\":\"Category (AI Predicted)\",\"placeholder\":\"Add Category (AI Predicted)\",\"tooltip\":\"Type of work\"}},{\"field_type\":\"rich_text\",\"data_name\":\"tnt__category_justification\",\"db_name\":\"tnt__category_justification\",\"description\":\"Justification for the AI predicted category populated in the field \\\"Category (AI Predicted)\\\"\",\"is_filterable\":false,\"name\":\"tnt__category_justification\",\"oasis\":{\"name\":\"tnt__category_justification\"},\"ui\":{\"display_name\":\"Category Justification\",\"placeholder\":\"Add Category Justification\",\"tooltip\":\"Justification for the AI predicted category populated in the field \\\"Category (AI Predicted)\\\"\"}},{\"supported_filter_ops\":[\"all\",\"any\",\"not_any\",\"empty\",\"not_empty\"],\"field_type\":\"array\",\"base_type\":\"enum\",\"allowed_values\":[\"Customer commit\",\"Feature work\",\"Quality - Latency\",\"Quality - One click\",\"Quality - Reliability\",\"Quality - Secure & Governed\",\"Quality - Self serve\"],\"data_name\":\"tnt__classification\",\"db_name\":\"tnt__classification\",\"description\":\"List of classifications for the issue (e.g., Customer Commit, Feature Work)\",\"is_filterable\":true,\"name\":\"tnt__classification\",\"oasis\":{\"name\":\"tnt__classification\"},\"ui\":{\"display_name\":\"Classification\",\"placeholder\":\"Add Classification\"}},{\"supported_filter_ops\":[\"any\",\"not_any\",\"empty\",\"not_empty\"],\"field_type\":\"text\",\"data_name\":\"tnt__datadog_issue_id\",\"db_name\":\"tnt__datadog_issue_id\",\"description\":\"Reference ID for the issue in Datadog\",\"is_filterable\":true,\"name\":\"tnt__datadog_issue_id\",\"oasis\":{\"name\":\"tnt__datadog_issue_id\"},\"ui\":{\"display_name\":\"DataDog Issue ID\",\"placeholder\":\"Add DataDog Issue ID\"}},{\"supported_filter_ops\":[\"any\",\"not_any\",\"empty\",\"not_empty\"],\"field_type\":\"int\",\"data_name\":\"tnt__deployment_blocked_time\",\"db_name\":\"tnt__deployment_blocked_time\",\"description\":\"Deployment Blocked Time\",\"is_filterable\":true,\"name\":\"tnt__deployment_blocked_time\",\"oasis\":{\"name\":\"tnt__deployment_blocked_time\"},\"ui\":{\"display_name\":\"Deployment Blocked Time\",\"placeholder\":\"Add Deployment Blocked Time\"}},{\"supported_filter_ops\":[\"any\",\"not_any\",\"empty\",\"not_empty\"],\"field_type\":\"enum\",\"allowed_values\":[\"Pebble\",\"Rock\",\"Stone\"],\"data_name\":\"tnt__effort_level\",\"db_name\":\"tnt__effort_level\",\"description\":\"Estimated effort level required for the issue (Pebble, Rock, Stone)\",\"is_filterable\":true,\"name\":\"tnt__effort_level\",\"oasis\":{\"name\":\"tnt__effort_level\"},\"ui\":{\"display_name\":\"Effort Level\",\"placeholder\":\"Add Effort Level\",\"tooltip\":\"Rock (>= 1 week), Stone (3 days to 1 week), Pebble (< 3 days)\"}},{\"supported_filter_ops\":[\"any\",\"not_any\",\"empty\",\"not_empty\"],\"field_type\":\"enum\",\"allowed_values\":[\"Agents\",\"Applied AI Eng\",\"Engineering\",\"Infra\",\"PRE\"],\"data_name\":\"tnt__eng_team\",\"db_name\":\"tnt__eng_team\",\"description\":\"Engineering team responsible for the issue (e.g., Applied Ai Eng, Infra)\",\"is_filterable\":true,\"name\":\"tnt__eng_team\",\"oasis\":{\"name\":\"tnt__eng_team\"},\"ui\":{\"display_name\":\"Team\",\"placeholder\":\"Add Team\"}},{\"supported_filter_ops\":[\"any\",\"not_any\",\"empty\",\"not_empty\"],\"field_type\":\"text\",\"data_name\":\"tnt__external_ref_id\",\"db_name\":\"tnt__external_ref_id\",\"description\":\"External reference ID for the issue\",\"is_filterable\":true,\"name\":\"tnt__external_ref_id\",\"oasis\":{\"name\":\"tnt__external_ref_id\"},\"ui\":{\"display_name\":\"External Ref Id\",\"placeholder\":\"Add External Ref Id\"}},{\"supported_filter_ops\":[\"any\",\"not_any\",\"empty\",\"not_empty\"],\"field_type\":\"text\",\"data_name\":\"tnt__hashed_deployment_id\",\"db_name\":\"tnt__hashed_deployment_id\",\"description\":\"Unique Hashed Deployment Id\",\"is_filterable\":true,\"name\":\"tnt__hashed_deployment_id\",\"oasis\":{\"name\":\"tnt__hashed_deployment_id\"},\"ui\":{\"display_name\":\"Hashed Deployment Id\",\"placeholder\":\"Add Hashed Deployment Id\"}},{\"supported_filter_ops\":[\"any\",\"not_any\",\"empty\",\"not_empty\"],\"field_type\":\"enum\",\"allowed_values\":[\"L\",\"M\",\"S\",\"XS\"],\"data_name\":\"tnt__level_of_effort\",\"db_name\":\"tnt__level_of_effort\",\"description\":\"Level of effort required for the issue (L, M, S, Xs)\",\"is_filterable\":true,\"name\":\"tnt__level_of_effort\",\"oasis\":{\"name\":\"tnt__level_of_effort\"},\"ui\":{\"display_name\":\"Level of Effort\",\"placeholder\":\"Add Level of Effort\",\"tooltip\":\"XS : <1 person week (0.5 sprint), S : 1-2 person week (0.5-1 sprint), M: 2-4 person week (1-2 sprints), L: 4+ person week (2+ sprints)\"}},{\"supported_filter_ops\":[\"any\",\"not_any\",\"empty\",\"not_empty\"],\"field_type\":\"id\",\"data_name\":\"tnt__release\",\"db_name\":\"tnt__release\",\"description\":\"ID of the associated release in custom_object.release\",\"id_type\":[\"custom_object.release\"],\"is_filterable\":true,\"name\":\"tnt__release\",\"oasis\":{\"name\":\"tnt__release\"},\"ui\":{\"display_name\":\"Release\",\"placeholder\":\"Add Release\"}},{\"field_type\":\"rich_text\",\"data_name\":\"tnt__release_notes\",\"db_name\":\"tnt__release_notes\",\"description\":\"Rich text notes detailing the release information for the issue\",\"name\":\"tnt__release_notes\",\"oasis\":{\"name\":\"tnt__release_notes\"},\"ui\":{\"display_name\":\"Release Notes\",\"placeholder\":\"Add Release Notes\"}},{\"supported_filter_ops\":[\"any\",\"not_any\",\"empty\",\"not_empty\"],\"field_type\":\"enum\",\"allowed_values\":[\"Adaas\",\"Agent\",\"Customization\",\"Dashboards\",\"Documentation\",\"Search\",\"Snap In\",\"Snap In as a Script\",\"Workflows\"],\"data_name\":\"tnt__solution_space\",\"db_name\":\"tnt__solution_space\",\"description\":\"Solution space category for the issue (e.g., Adaas, Dashboards, Workflows)\",\"is_filterable\":true,\"name\":\"tnt__solution_space\",\"oasis\":{\"name\":\"tnt__solution_space\"},\"ui\":{\"display_name\":\"Solution Space\",\"placeholder\":\"Add Solution Space\"}},{\"field_type\":\"rich_text\",\"data_name\":\"tnt__summary\",\"db_name\":\"tnt__summary\",\"description\":\"Rich text summary of the issue\",\"is_filterable\":false,\"name\":\"tnt__summary\",\"oasis\":{\"name\":\"tnt__summary\"},\"ui\":{\"display_name\":\"Summary\",\"placeholder\":\"Add Summary\"}},{\"supported_filter_ops\":[\"all\",\"any\",\"not_any\",\"empty\",\"not_empty\"],\"field_type\":\"array\",\"base_type\":\"id\",\"data_name\":\"tnt__theme\",\"db_name\":\"tnt__theme\",\"description\":\"List of associated themes from custom_object.theme\",\"id_type\":[\"custom_object.theme\"],\"is_filterable\":true,\"name\":\"tnt__theme\",\"oasis\":{\"name\":\"tnt__theme\"},\"ui\":{\"display_name\":\"Theme\",\"placeholder\":\"Add Theme\"}},{\"supported_filter_ops\":[\"any\",\"not_any\",\"empty\",\"not_empty\"],\"field_type\":\"text\",\"data_name\":\"tnt__ui_e2e_failure_testname\",\"db_name\":\"tnt__ui_e2e_failure_testname\",\"description\":\"UI E2E Failure Testname\",\"is_filterable\":true,\"name\":\"tnt__ui_e2e_failure_testname\",\"oasis\":{\"name\":\"tnt__ui_e2e_failure_testname\"},\"ui\":{\"display_name\":\"UI E2E Failure Testname\",\"placeholder\":\"Add UI E2E Failure Testname\"}},{\"supported_filter_ops\":[\"all\",\"any\",\"not_any\",\"empty\",\"not_empty\"],\"field_type\":\"array\",\"base_type\":\"id\",\"data_name\":\"tnt__visible_to\",\"db_name\":\"tnt__visible_to\",\"description\":\"Added list of users to give CRUD access\",\"id_type\":[\"group\"],\"is_filterable\":true,\"name\":\"tnt__visible_to\",\"oasis\":{\"name\":\"tnt__visible_to\"},\"ui\":{\"display_name\":\"Visible To\",\"placeholder\":\"Visible to users\"}}],\"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_issue_1\",\"ui_metadata\":{\"position\":{\"x\":86,\"y\":252}}},{\"description\":\"Updates an issue\",\"input_ports\":[{\"name\":\"input\",\"schema\":{\"composite_schemas\":[{\"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:add\"},{\"fields\":[{\"field_type\":\"array\",\"max_items\":50,\"base_type\":\"id\",\"data_name\":\"add\",\"db_name\":\"add\",\"description\":\"Adds the provided artifacts (if not already present) to the field.\\n\",\"id_type\":[\"artifact\"],\"name\":\"add\",\"oasis\":{\"name\":\"add\"}},{\"field_type\":\"array\",\"max_items\":50,\"base_type\":\"id\",\"data_name\":\"remove\",\"db_name\":\"remove\",\"description\":\"Removes the provided artifacts (if they exist) from the field.\\n\",\"id_type\":[\"artifact\"],\"name\":\"remove\",\"oasis\":{\"name\":\"remove\"}},{\"field_type\":\"array\",\"max_items\":50,\"base_type\":\"id\",\"data_name\":\"set\",\"db_name\":\"set\",\"description\":\"Sets the field to the provided artifacts.\",\"id_type\":[\"artifact\"],\"name\":\"set\",\"oasis\":{\"name\":\"set\"}}],\"name\":\"_gen:artifacts\"},{\"fields\":[{\"field_type\":\"array\",\"max_items\":8,\"base_type\":\"id\",\"data_name\":\"set\",\"db_name\":\"set\",\"description\":\"Sets the IDs of the parts associated with issue.\",\"id_type\":[\"capability\",\"feature\",\"product\",\"runnable\",\"linkable\",\"enhancement\"],\"name\":\"set\",\"oasis\":{\"name\":\"set\"}}],\"name\":\"_gen:developed_with\"},{\"fields\":[{\"field_type\":\"array\",\"base_type\":\"id\",\"data_name\":\"set\",\"db_name\":\"set\",\"description\":\"Sets the owner IDs to the provided user IDs. This must not be\\nempty.\\n\",\"id_type\":[\"devu\",\"sysu\",\"svcacc\"],\"name\":\"set\",\"oasis\":{\"name\":\"set\"}}],\"name\":\"_gen:owned_by\"},{\"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:remove\"},{\"fields\":[{\"field_type\":\"array\",\"base_type\":\"id\",\"data_name\":\"set\",\"db_name\":\"set\",\"description\":\"Sets the reported by user IDs to the provided user IDs.\",\"id_type\":[\"devu\",\"sysu\",\"svcacc\",\"revu\"],\"name\":\"set\",\"oasis\":{\"name\":\"set\"}}],\"name\":\"_gen:reported_by\"},{\"fields\":[{\"field_type\":\"array\",\"base_type\":\"composite\",\"composite_type\":\"_gen:add\",\"data_name\":\"add\",\"db_name\":\"add\",\"description\":\"Adds the provided tags on the issue. Note: Provide either 'add' or 'remove' but not both.\",\"name\":\"add\",\"oasis\":{\"name\":\"add\"}},{\"field_type\":\"array\",\"base_type\":\"composite\",\"composite_type\":\"_gen:remove\",\"data_name\":\"remove\",\"db_name\":\"remove\",\"description\":\"Removes the provided tags on the issue. Note: Provide either 'add' or 'remove' but not both.\",\"name\":\"remove\",\"oasis\":{\"name\":\"remove\"}}],\"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/6\",\"don:core:dvrv-us-1:devo/0:custom_stage/27\",\"don:core:dvrv-us-1:devo/0:custom_stage/5\",\"don:core:dvrv-us-1:devo/0:custom_stage/17\",\"don:core:dvrv-us-1:devo/0:custom_stage/20\",\"don:core:dvrv-us-1:devo/0:custom_stage/13\",\"don:core:dvrv-us-1:devo/0:custom_stage/8\",\"don:core:dvrv-us-1:devo/0:custom_stage/15\",\"don:core:dvrv-us-1:devo/0:custom_stage/12\"]]}],\"field_descriptors\":[{\"field_type\":\"uenum\",\"allowed_values\":[{\"id\":90863611,\"label\":\"AAI Issue\",\"ordinal\":1,\"tooltip\":\"Subtype for AAI work.\",\"value\":\"aai_issue\"},{\"id\":90862619,\"label\":\"AAI Onboarding Followup\",\"ordinal\":2,\"tooltip\":\"The one month followup issue for the AAI Onboarding\",\"value\":\"aai_onboarding_followup\"},{\"id\":90862620,\"label\":\"AAIOnboarding\",\"ordinal\":3,\"tooltip\":\"This is for the onboarding of AAI\",\"value\":\"aaionboarding\"},{\"id\":90865588,\"label\":\"Advocacy Customer References\",\"ordinal\":4,\"tooltip\":\"Advocacy Customer References\",\"value\":\"advocacy_customer_references\"},{\"id\":90864664,\"label\":\"AIOps Issue\",\"ordinal\":5,\"tooltip\":\"Subtype for AIOps work\",\"value\":\"aiops_issue\"},{\"id\":90866426,\"label\":\"Approved customer logos\",\"ordinal\":6,\"tooltip\":\"Approved customer logos\",\"value\":\"approved_customer_logos\"},{\"id\":90863609,\"label\":\"Case Studies\",\"ordinal\":7,\"value\":\"case_studies\"},{\"id\":90865434,\"label\":\"Cloud Engineering Requests\",\"ordinal\":8,\"tooltip\":\"Infrastructure Request Custom Fields\",\"value\":\"cloud_engineering_requests\"},{\"id\":90868446,\"label\":\"Customer Implementation \",\"ordinal\":9,\"tooltip\":\"Issue subtype for keeping track of Customer Implementation \",\"value\":\"cs_implementation\"},{\"id\":90866399,\"label\":\"Demand Gen\",\"ordinal\":10,\"tooltip\":\"Subtype for Demand Gen team work\",\"value\":\"demand_gen\"},{\"id\":90868479,\"label\":\"Demo Prep\",\"ordinal\":11,\"tooltip\":\"Tracks the work to prepare for presales demo\",\"value\":\"demo_prep\"},{\"id\":90869471,\"label\":\"Developer Experience\",\"ordinal\":12,\"tooltip\":\"Making DX better for internal/external users\",\"value\":\"developer_experience\"},{\"id\":90864663,\"label\":\"Incident\",\"ordinal\":13,\"tooltip\":\"Attributes for tracking a prod incident\",\"value\":\"Incident\"},{\"id\":90865590,\"label\":\"Onboarding\",\"ordinal\":14,\"tooltip\":\"Issue Subtype for all the Onboarding Tasks\",\"value\":\"Onboarding\"},{\"id\":90868291,\"label\":\"Patent\",\"ordinal\":15,\"tooltip\":\"Patent tracking\",\"value\":\"patent\"},{\"id\":90868316,\"label\":\"People Ops\",\"ordinal\":16,\"tooltip\":\"Subtype for testing HR fragment\",\"value\":\"people_ops\"},{\"id\":90868478,\"label\":\"PoC\",\"ordinal\":17,\"tooltip\":\"Updated stage issue\",\"value\":\"poc\"},{\"id\":90868477,\"label\":\"PoC Child\",\"ordinal\":18,\"tooltip\":\"Child issue within a PoC issue\",\"value\":\"poc_child\"},{\"id\":90868292,\"label\":\"Quality\",\"ordinal\":19,\"tooltip\":\"Reporting quality issuues/bugs\",\"value\":\"quality\"},{\"id\":90868317,\"label\":\"Security Risk\",\"ordinal\":20,\"value\":\"security_risk\"},{\"id\":90868315,\"label\":\"Strategic Engineering Topic\",\"ordinal\":21,\"tooltip\":\"Strategic engineering topic tracking\",\"value\":\"strategic_engineering_topic\"},{\"id\":90868319,\"label\":\"Support Issue\",\"ordinal\":22,\"tooltip\":\"The requests for support team to solve\",\"value\":\"support_issue\"},{\"id\":90868318,\"label\":\"WEBCI\",\"ordinal\":23,\"value\":\"webci\"}],\"data_name\":\"subtype\",\"db_name\":\"subtype\",\"description\":\"Subtype of the object. WARNING: Changing the subtype removes any fields that are missing in the new subtype or have a different type.\",\"name\":\"subtype\",\"oasis\":{\"name\":\"subtype\"},\"ui\":{\"display_name\":\"Subtype\"}},{\"field_type\":\"composite\",\"composite_type\":\"_gen:artifacts\",\"data_name\":\"artifacts\",\"db_name\":\"artifacts\",\"name\":\"artifacts\",\"oasis\":{\"name\":\"artifacts\"}},{\"field_type\":\"text\",\"data_name\":\"body\",\"db_name\":\"body\",\"description\":\"Updated body of the issue, or unchanged if not provided.\",\"max_len\":65536,\"name\":\"body\",\"oasis\":{\"name\":\"body\"}},{\"field_type\":\"composite\",\"composite_type\":\"_gen:developed_with\",\"data_name\":\"developed_with\",\"db_name\":\"developed_with\",\"name\":\"developed_with\",\"oasis\":{\"name\":\"developed_with\"}},{\"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\":\"uenum\",\"allowed_values\":[{\"id\":1,\"label\":\"P0\",\"ordinal\":1,\"value\":1},{\"id\":2,\"label\":\"P1\",\"ordinal\":2,\"value\":2},{\"id\":3,\"label\":\"P2\",\"ordinal\":3,\"value\":3},{\"id\":4,\"label\":\"P3\",\"ordinal\":4,\"value\":4}],\"data_name\":\"priority_v2\",\"db_name\":\"priority_v2\",\"description\":\"Priority enum id of the work based upon impact and criticality. The\\nallowed ids can be extended by the user. Stock allowed values:\\n```\\n {\\n \\\"id\\\": 1,\\n \\\"label\\\": \\\"P0\\\",\\n \\\"ordinal\\\": 1,\\n \\\"overridable\\\": true\\n },\\n {\\n \\\"id\\\": 2,\\n \\\"label\\\": \\\"P1\\\",\\n \\\"ordinal\\\": 2,\\n \\\"overridable\\\": true\\n },\\n {\\n \\\"id\\\": 3,\\n \\\"label\\\": \\\"P2\\\",\\n \\\"ordinal\\\": 3,\\n \\\"overridable\\\": true\\n },\\n {\\n \\\"id\\\": 4,\\n \\\"label\\\": \\\"P3\\\",\\n \\\"ordinal\\\": 4,\\n \\\"overridable\\\": true\\n }\\n```\\n\",\"name\":\"priority_v2\",\"oasis\":{\"name\":\"priority_v2\"}},{\"field_type\":\"composite\",\"composite_type\":\"_gen:reported_by\",\"data_name\":\"reported_by\",\"db_name\":\"reported_by\",\"name\":\"reported_by\",\"oasis\":{\"name\":\"reported_by\"}},{\"field_type\":\"id\",\"data_name\":\"sprint\",\"db_name\":\"sprint\",\"description\":\"Updates the sprint that the issue belongs to.\",\"id_type\":[\"vista_group_item\"],\"name\":\"sprint\",\"oasis\":{\"name\":\"sprint\"}},{\"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\":\"Updates the timestamp for when the issue is expected to be complete.\",\"name\":\"target_close_date\",\"oasis\":{\"name\":\"target_close_date\"}},{\"field_type\":\"timestamp\",\"data_name\":\"target_start_date\",\"db_name\":\"target_start_date\",\"description\":\"Updates the timestamp for when the issue is expected to start.\",\"name\":\"target_start_date\",\"oasis\":{\"name\":\"target_start_date\"}},{\"field_type\":\"text\",\"data_name\":\"title\",\"db_name\":\"title\",\"description\":\"Updated title of the issue, or unchanged if not provided.\",\"max_len\":256,\"min_len\":1,\"name\":\"title\",\"oasis\":{\"name\":\"title\"}},{\"field_type\":\"id\",\"data_name\":\"applies_to_part\",\"db_name\":\"applies_to_part\",\"description\":\"Updates the part that the issue applies to.\",\"id_type\":[\"capability\",\"feature\",\"product\",\"runnable\",\"linkable\",\"enhancement\"],\"name\":\"applies_to_part\",\"oasis\":{\"name\":\"applies_to_part\"}},{\"field_type\":\"id\",\"data_name\":\"id\",\"db_name\":\"id\",\"description\":\"The ID of issue to update.\",\"id_type\":[\"issue\"],\"is_required\":true,\"name\":\"id\",\"oasis\":{\"name\":\"id\"}},{\"field_type\":\"id\",\"data_name\":\"stage\",\"db_name\":\"stage\",\"description\":\"The stage of the issue.\",\"id_type\":[\"custom_stage\"],\"name\":\"stage\",\"oasis\":{\"name\":\"stage\"}},{\"field_type\":\"array\",\"base_type\":\"enum\",\"allowed_values\":[\"slack\",\"devrev_cloud_engineering\",\"github_issue_categorization\",\"bulk_work_item_snapin\",\"on_call_assistant\"],\"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\":\"text\",\"data_name\":\"tnt__app_ai_tdd_link\",\"db_name\":\"tnt__app_ai_tdd_link\",\"description\":\"Link to the technical design document\",\"is_filterable\":true,\"name\":\"tnt__app_ai_tdd_link\",\"oasis\":{\"name\":\"tnt__app_ai_tdd_link\"},\"ui\":{\"display_name\":\"TDD link\",\"placeholder\":\"Link to the technical design document\"}},{\"supported_filter_ops\":[\"any\",\"not_any\",\"empty\",\"not_empty\"],\"field_type\":\"enum\",\"allowed_values\":[\"Bug\",\"Incident\",\"New Work\",\"Tech Debt\"],\"data_name\":\"tnt__category_ai_predicted\",\"db_name\":\"tnt__category_ai_predicted\",\"description\":\"AI-predicted category of the issue (Bug, Incident, New Work, Tech Debt)\",\"is_filterable\":true,\"name\":\"tnt__category_ai_predicted\",\"oasis\":{\"name\":\"tnt__category_ai_predicted\"},\"ui\":{\"display_name\":\"Category (AI Predicted)\",\"placeholder\":\"Add Category (AI Predicted)\",\"tooltip\":\"Type of work\"}},{\"field_type\":\"rich_text\",\"data_name\":\"tnt__category_justification\",\"db_name\":\"tnt__category_justification\",\"description\":\"Justification for the AI predicted category populated in the field \\\"Category (AI Predicted)\\\"\",\"is_filterable\":false,\"name\":\"tnt__category_justification\",\"oasis\":{\"name\":\"tnt__category_justification\"},\"ui\":{\"display_name\":\"Category Justification\",\"placeholder\":\"Add Category Justification\",\"tooltip\":\"Justification for the AI predicted category populated in the field \\\"Category (AI Predicted)\\\"\"}},{\"supported_filter_ops\":[\"all\",\"any\",\"not_any\",\"empty\",\"not_empty\"],\"field_type\":\"array\",\"base_type\":\"enum\",\"allowed_values\":[\"Customer commit\",\"Feature work\",\"Quality - Latency\",\"Quality - One click\",\"Quality - Reliability\",\"Quality - Secure & Governed\",\"Quality - Self serve\"],\"data_name\":\"tnt__classification\",\"db_name\":\"tnt__classification\",\"description\":\"List of classifications for the issue (e.g., Customer Commit, Feature Work)\",\"is_filterable\":true,\"name\":\"tnt__classification\",\"oasis\":{\"name\":\"tnt__classification\"},\"ui\":{\"display_name\":\"Classification\",\"placeholder\":\"Add Classification\"}},{\"supported_filter_ops\":[\"any\",\"not_any\",\"empty\",\"not_empty\"],\"field_type\":\"text\",\"data_name\":\"tnt__datadog_issue_id\",\"db_name\":\"tnt__datadog_issue_id\",\"description\":\"Reference ID for the issue in Datadog\",\"is_filterable\":true,\"name\":\"tnt__datadog_issue_id\",\"oasis\":{\"name\":\"tnt__datadog_issue_id\"},\"ui\":{\"display_name\":\"DataDog Issue ID\",\"placeholder\":\"Add DataDog Issue ID\"}},{\"supported_filter_ops\":[\"any\",\"not_any\",\"empty\",\"not_empty\"],\"field_type\":\"int\",\"data_name\":\"tnt__deployment_blocked_time\",\"db_name\":\"tnt__deployment_blocked_time\",\"description\":\"Deployment Blocked Time\",\"is_filterable\":true,\"name\":\"tnt__deployment_blocked_time\",\"oasis\":{\"name\":\"tnt__deployment_blocked_time\"},\"ui\":{\"display_name\":\"Deployment Blocked Time\",\"placeholder\":\"Add Deployment Blocked Time\"}},{\"supported_filter_ops\":[\"any\",\"not_any\",\"empty\",\"not_empty\"],\"field_type\":\"enum\",\"allowed_values\":[\"Pebble\",\"Rock\",\"Stone\"],\"data_name\":\"tnt__effort_level\",\"db_name\":\"tnt__effort_level\",\"description\":\"Estimated effort level required for the issue (Pebble, Rock, Stone)\",\"is_filterable\":true,\"name\":\"tnt__effort_level\",\"oasis\":{\"name\":\"tnt__effort_level\"},\"ui\":{\"display_name\":\"Effort Level\",\"placeholder\":\"Add Effort Level\",\"tooltip\":\"Rock (>= 1 week), Stone (3 days to 1 week), Pebble (< 3 days)\"}},{\"supported_filter_ops\":[\"any\",\"not_any\",\"empty\",\"not_empty\"],\"field_type\":\"enum\",\"allowed_values\":[\"Agents\",\"Applied AI Eng\",\"Engineering\",\"Infra\",\"PRE\"],\"data_name\":\"tnt__eng_team\",\"db_name\":\"tnt__eng_team\",\"description\":\"Engineering team responsible for the issue (e.g., Applied Ai Eng, Infra)\",\"is_filterable\":true,\"name\":\"tnt__eng_team\",\"oasis\":{\"name\":\"tnt__eng_team\"},\"ui\":{\"display_name\":\"Team\",\"placeholder\":\"Add Team\"}},{\"supported_filter_ops\":[\"any\",\"not_any\",\"empty\",\"not_empty\"],\"field_type\":\"text\",\"data_name\":\"tnt__external_ref_id\",\"db_name\":\"tnt__external_ref_id\",\"description\":\"External reference ID for the issue\",\"is_filterable\":true,\"name\":\"tnt__external_ref_id\",\"oasis\":{\"name\":\"tnt__external_ref_id\"},\"ui\":{\"display_name\":\"External Ref Id\",\"placeholder\":\"Add External Ref Id\"}},{\"supported_filter_ops\":[\"any\",\"not_any\",\"empty\",\"not_empty\"],\"field_type\":\"text\",\"data_name\":\"tnt__hashed_deployment_id\",\"db_name\":\"tnt__hashed_deployment_id\",\"description\":\"Unique Hashed Deployment Id\",\"is_filterable\":true,\"name\":\"tnt__hashed_deployment_id\",\"oasis\":{\"name\":\"tnt__hashed_deployment_id\"},\"ui\":{\"display_name\":\"Hashed Deployment Id\",\"placeholder\":\"Add Hashed Deployment Id\"}},{\"supported_filter_ops\":[\"any\",\"not_any\",\"empty\",\"not_empty\"],\"field_type\":\"enum\",\"allowed_values\":[\"L\",\"M\",\"S\",\"XS\"],\"data_name\":\"tnt__level_of_effort\",\"db_name\":\"tnt__level_of_effort\",\"description\":\"Level of effort required for the issue (L, M, S, Xs)\",\"is_filterable\":true,\"name\":\"tnt__level_of_effort\",\"oasis\":{\"name\":\"tnt__level_of_effort\"},\"ui\":{\"display_name\":\"Level of Effort\",\"placeholder\":\"Add Level of Effort\",\"tooltip\":\"XS : <1 person week (0.5 sprint), S : 1-2 person week (0.5-1 sprint), M: 2-4 person week (1-2 sprints), L: 4+ person week (2+ sprints)\"}},{\"supported_filter_ops\":[\"any\",\"not_any\",\"empty\",\"not_empty\"],\"field_type\":\"id\",\"data_name\":\"tnt__release\",\"db_name\":\"tnt__release\",\"description\":\"ID of the associated release in custom_object.release\",\"id_type\":[\"custom_object.release\"],\"is_filterable\":true,\"name\":\"tnt__release\",\"oasis\":{\"name\":\"tnt__release\"},\"ui\":{\"display_name\":\"Release\",\"placeholder\":\"Add Release\"}},{\"field_type\":\"rich_text\",\"data_name\":\"tnt__release_notes\",\"db_name\":\"tnt__release_notes\",\"description\":\"Rich text notes detailing the release information for the issue\",\"name\":\"tnt__release_notes\",\"oasis\":{\"name\":\"tnt__release_notes\"},\"ui\":{\"display_name\":\"Release Notes\",\"placeholder\":\"Add Release Notes\"}},{\"supported_filter_ops\":[\"any\",\"not_any\",\"empty\",\"not_empty\"],\"field_type\":\"enum\",\"allowed_values\":[\"Adaas\",\"Agent\",\"Customization\",\"Dashboards\",\"Documentation\",\"Search\",\"Snap In\",\"Snap In as a Script\",\"Workflows\"],\"data_name\":\"tnt__solution_space\",\"db_name\":\"tnt__solution_space\",\"description\":\"Solution space category for the issue (e.g., Adaas, Dashboards, Workflows)\",\"is_filterable\":true,\"name\":\"tnt__solution_space\",\"oasis\":{\"name\":\"tnt__solution_space\"},\"ui\":{\"display_name\":\"Solution Space\",\"placeholder\":\"Add Solution Space\"}},{\"field_type\":\"rich_text\",\"data_name\":\"tnt__summary\",\"db_name\":\"tnt__summary\",\"description\":\"Rich text summary of the issue\",\"is_filterable\":false,\"name\":\"tnt__summary\",\"oasis\":{\"name\":\"tnt__summary\"},\"ui\":{\"display_name\":\"Summary\",\"placeholder\":\"Add Summary\"}},{\"supported_filter_ops\":[\"all\",\"any\",\"not_any\",\"empty\",\"not_empty\"],\"field_type\":\"array\",\"base_type\":\"id\",\"data_name\":\"tnt__theme\",\"db_name\":\"tnt__theme\",\"description\":\"List of associated themes from custom_object.theme\",\"id_type\":[\"custom_object.theme\"],\"is_filterable\":true,\"name\":\"tnt__theme\",\"oasis\":{\"name\":\"tnt__theme\"},\"ui\":{\"display_name\":\"Theme\",\"placeholder\":\"Add Theme\"}},{\"supported_filter_ops\":[\"any\",\"not_any\",\"empty\",\"not_empty\"],\"field_type\":\"text\",\"data_name\":\"tnt__ui_e2e_failure_testname\",\"db_name\":\"tnt__ui_e2e_failure_testname\",\"description\":\"UI E2E Failure Testname\",\"is_filterable\":true,\"name\":\"tnt__ui_e2e_failure_testname\",\"oasis\":{\"name\":\"tnt__ui_e2e_failure_testname\"},\"ui\":{\"display_name\":\"UI E2E Failure Testname\",\"placeholder\":\"Add UI E2E Failure Testname\"}},{\"supported_filter_ops\":[\"all\",\"any\",\"not_any\",\"empty\",\"not_empty\"],\"field_type\":\"array\",\"base_type\":\"id\",\"data_name\":\"tnt__visible_to\",\"db_name\":\"tnt__visible_to\",\"description\":\"Added list of users to give CRUD access\",\"id_type\":[\"group\"],\"is_filterable\":true,\"name\":\"tnt__visible_to\",\"oasis\":{\"name\":\"tnt__visible_to\"},\"ui\":{\"display_name\":\"Visible To\",\"placeholder\":\"Visible to users\"}}],\"invalidate_on_field_update\":[\"subtype\",\"apps\"],\"type\":\"field_descriptor\"},\"type\":\"default\"}],\"input_values\":[{\"fields\":[{\"name\":\"stage\",\"value\":{\"type\":\"literal\",\"value\":\"don:core:dvrv-us-1:devo/0:custom_stage/27\"}},{\"name\":\"id\",\"value\":{\"type\":\"jsonata_expression\",\"value\":\"$get('update_issue_1', 'output').id\"}}],\"port_name\":\"input\"}],\"name\":\"Update Issue stage as prioritised\",\"operation\":{\"namespace\":\"devrev\",\"slug\":\"update_issue\"},\"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\":\"id\",\"db_name\":\"id\",\"description\":\"Globally unique object ID.\",\"is_required\":true,\"name\":\"id\",\"oasis\":{\"name\":\"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\":\"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:sync_metadata\",\"data_name\":\"sync_metadata\",\"db_name\":\"sync_metadata\",\"description\":\"Sync information for records synced into/from DevRev.\",\"name\":\"sync_metadata\",\"oasis\":{\"name\":\"sync_metadata\"}},{\"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\"}}],\"name\":\"_gen:applies_to_part\"},{\"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\"}}],\"name\":\"_gen:artifact-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\":\"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:created_by\"},{\"fields\":[{\"field_type\":\"text\",\"data_name\":\"display_id\",\"db_name\":\"display_id\",\"description\":\"Human-readable object ID unique to the Dev organization.\",\"name\":\"display_id\",\"oasis\":{\"name\":\"display_id\"}},{\"field_type\":\"text\",\"data_name\":\"id\",\"db_name\":\"id\",\"description\":\"Globally unique object ID.\",\"is_required\":true,\"name\":\"id\",\"oasis\":{\"name\":\"id\"}}],\"name\":\"_gen:display_picture\"},{\"fields\":[{\"field_type\":\"text\",\"data_name\":\"display_id\",\"db_name\":\"display_id\",\"description\":\"Human-readable object ID unique to the Dev organization.\",\"name\":\"display_id\",\"oasis\":{\"name\":\"display_id\"}},{\"field_type\":\"text\",\"data_name\":\"display_name\",\"db_name\":\"display_name\",\"description\":\"The user's display name. The name is non-unique and mutable.\\n\",\"name\":\"display_name\",\"oasis\":{\"name\":\"display_name\"}},{\"field_type\":\"composite\",\"composite_type\":\"_gen:display_picture\",\"data_name\":\"display_picture\",\"db_name\":\"display_picture\",\"name\":\"display_picture\",\"oasis\":{\"name\":\"display_picture\"}},{\"field_type\":\"text\",\"data_name\":\"email\",\"db_name\":\"email\",\"description\":\"Email address of the user.\",\"name\":\"email\",\"oasis\":{\"name\":\"email\"}},{\"field_type\":\"text\",\"data_name\":\"external_ref\",\"db_name\":\"external_ref\",\"description\":\"External ref is a mutable unique identifier for a user within the\\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:modified_by\"},{\"fields\":[{\"field_type\":\"text\",\"data_name\":\"display_id\",\"db_name\":\"display_id\",\"description\":\"Human-readable object ID unique to the Dev organization.\",\"name\":\"display_id\",\"oasis\":{\"name\":\"display_id\"}},{\"field_type\":\"text\",\"data_name\":\"id\",\"db_name\":\"id\",\"description\":\"Globally unique object ID.\",\"is_required\":true,\"name\":\"id\",\"oasis\":{\"name\":\"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\":\"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:sync_metadata\",\"data_name\":\"sync_metadata\",\"db_name\":\"sync_metadata\",\"description\":\"Sync information for records synced into/from DevRev.\",\"name\":\"sync_metadata\",\"oasis\":{\"name\":\"sync_metadata\"}},{\"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\"}}],\"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\":\"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\",\"dev_org\",\"rev_org\"],\"data_name\":\"type\",\"db_name\":\"type\",\"is_required\":true,\"name\":\"type\",\"oasis\":{\"name\":\"type\"}}],\"name\":\"_gen:rev_org\"},{\"description\":\"Vista group item.\",\"fields\":[{\"field_type\":\"timestamp\",\"data_name\":\"end_date\",\"db_name\":\"end_date\",\"description\":\"Timestamp when the vista ends.\",\"name\":\"end_date\",\"oasis\":{\"name\":\"end_date\"}},{\"field_type\":\"text\",\"data_name\":\"id\",\"db_name\":\"id\",\"description\":\"ID of the group item in don v2 format.\",\"is_required\":true,\"name\":\"id\",\"oasis\":{\"name\":\"id\"}},{\"field_type\":\"text\",\"data_name\":\"name\",\"db_name\":\"name\",\"description\":\"Name of the group.\",\"is_required\":true,\"name\":\"name\",\"oasis\":{\"name\":\"name\"}},{\"field_type\":\"timestamp\",\"data_name\":\"start_date\",\"db_name\":\"start_date\",\"description\":\"Timestamp when the vista starts.\",\"name\":\"start_date\",\"oasis\":{\"name\":\"start_date\"}},{\"field_type\":\"enum\",\"allowed_values\":[\"active\",\"completed\",\"planned\"],\"data_name\":\"state\",\"db_name\":\"state\",\"description\":\"Defines the state of the group item.\",\"name\":\"state\",\"oasis\":{\"name\":\"state\"}},{\"field_type\":\"enum\",\"allowed_values\":[\"curated\",\"dynamic\"],\"data_name\":\"type\",\"db_name\":\"type\",\"description\":\"Type of the group object.\",\"is_required\":true,\"name\":\"type\",\"oasis\":{\"name\":\"type\"}}],\"name\":\"_gen:sprint\"},{\"description\":\"Describes the current stage of a work item.\",\"fields\":[{\"field_type\":\"text\",\"data_name\":\"name\",\"db_name\":\"name\",\"description\":\"Current stage name of the work item.\",\"is_required\":true,\"name\":\"name\",\"oasis\":{\"name\":\"name\"}},{\"field_type\":\"composite\",\"composite_type\":\"stage.stage\",\"data_name\":\"stage\",\"db_name\":\"stage\",\"description\":\"The stage of the issue.\",\"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\":\"text\",\"data_name\":\"name\",\"db_name\":\"name\",\"description\":\"The name of the tag, which denotes the logical concept by which all\\ntagged objects will be associated. The name is guaranteed to be\\nunique.\\n\",\"is_required\":true,\"name\":\"name\",\"oasis\":{\"name\":\"name\"}},{\"field_type\":\"text\",\"data_name\":\"id\",\"db_name\":\"id\",\"description\":\"Globally unique object ID.\",\"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\"},{\"description\":\"Describes the current stage of a work item.\",\"fields\":[{\"field_type\":\"id\",\"data_name\":\"id\",\"db_name\":\"id\",\"description\":\"The stage of the issue.\",\"id_type\":[\"custom_stage\"],\"name\":\"id\",\"oasis\":{\"name\":\"id\"}}],\"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/6\",\"don:core:dvrv-us-1:devo/0:custom_stage/27\",\"don:core:dvrv-us-1:devo/0:custom_stage/5\",\"don:core:dvrv-us-1:devo/0:custom_stage/17\",\"don:core:dvrv-us-1:devo/0:custom_stage/20\",\"don:core:dvrv-us-1:devo/0:custom_stage/13\",\"don:core:dvrv-us-1:devo/0:custom_stage/8\",\"don:core:dvrv-us-1:devo/0:custom_stage/15\",\"don:core:dvrv-us-1:devo/0:custom_stage/12\"]]}],\"field_descriptors\":[{\"field_type\":\"uenum\",\"allowed_values\":[{\"id\":90863611,\"label\":\"AAI Issue\",\"ordinal\":1,\"tooltip\":\"Subtype for AAI work.\",\"value\":\"aai_issue\"},{\"id\":90862619,\"label\":\"AAI Onboarding Followup\",\"ordinal\":2,\"tooltip\":\"The one month followup issue for the AAI Onboarding\",\"value\":\"aai_onboarding_followup\"},{\"id\":90862620,\"label\":\"AAIOnboarding\",\"ordinal\":3,\"tooltip\":\"This is for the onboarding of AAI\",\"value\":\"aaionboarding\"},{\"id\":90865588,\"label\":\"Advocacy Customer References\",\"ordinal\":4,\"tooltip\":\"Advocacy Customer References\",\"value\":\"advocacy_customer_references\"},{\"id\":90864664,\"label\":\"AIOps Issue\",\"ordinal\":5,\"tooltip\":\"Subtype for AIOps work\",\"value\":\"aiops_issue\"},{\"id\":90866426,\"label\":\"Approved customer logos\",\"ordinal\":6,\"tooltip\":\"Approved customer logos\",\"value\":\"approved_customer_logos\"},{\"id\":90863609,\"label\":\"Case Studies\",\"ordinal\":7,\"value\":\"case_studies\"},{\"id\":90865434,\"label\":\"Cloud Engineering Requests\",\"ordinal\":8,\"tooltip\":\"Infrastructure Request Custom Fields\",\"value\":\"cloud_engineering_requests\"},{\"id\":90868446,\"label\":\"Customer Implementation \",\"ordinal\":9,\"tooltip\":\"Issue subtype for keeping track of Customer Implementation \",\"value\":\"cs_implementation\"},{\"id\":90866399,\"label\":\"Demand Gen\",\"ordinal\":10,\"tooltip\":\"Subtype for Demand Gen team work\",\"value\":\"demand_gen\"},{\"id\":90868479,\"label\":\"Demo Prep\",\"ordinal\":11,\"tooltip\":\"Tracks the work to prepare for presales demo\",\"value\":\"demo_prep\"},{\"id\":90869471,\"label\":\"Developer Experience\",\"ordinal\":12,\"tooltip\":\"Making DX better for internal/external users\",\"value\":\"developer_experience\"},{\"id\":90864663,\"label\":\"Incident\",\"ordinal\":13,\"tooltip\":\"Attributes for tracking a prod incident\",\"value\":\"Incident\"},{\"id\":90865590,\"label\":\"Onboarding\",\"ordinal\":14,\"tooltip\":\"Issue Subtype for all the Onboarding Tasks\",\"value\":\"Onboarding\"},{\"id\":90868291,\"label\":\"Patent\",\"ordinal\":15,\"tooltip\":\"Patent tracking\",\"value\":\"patent\"},{\"id\":90868316,\"label\":\"People Ops\",\"ordinal\":16,\"tooltip\":\"Subtype for testing HR fragment\",\"value\":\"people_ops\"},{\"id\":90868478,\"label\":\"PoC\",\"ordinal\":17,\"tooltip\":\"Updated stage issue\",\"value\":\"poc\"},{\"id\":90868477,\"label\":\"PoC Child\",\"ordinal\":18,\"tooltip\":\"Child issue within a PoC issue\",\"value\":\"poc_child\"},{\"id\":90868292,\"label\":\"Quality\",\"ordinal\":19,\"tooltip\":\"Reporting quality issuues/bugs\",\"value\":\"quality\"},{\"id\":90868317,\"label\":\"Security Risk\",\"ordinal\":20,\"value\":\"security_risk\"},{\"id\":90868315,\"label\":\"Strategic Engineering Topic\",\"ordinal\":21,\"tooltip\":\"Strategic engineering topic tracking\",\"value\":\"strategic_engineering_topic\"},{\"id\":90868319,\"label\":\"Support Issue\",\"ordinal\":22,\"tooltip\":\"The requests for support team to solve\",\"value\":\"support_issue\"},{\"id\":90868318,\"label\":\"WEBCI\",\"ordinal\":23,\"value\":\"webci\"}],\"data_name\":\"subtype\",\"db_name\":\"subtype\",\"description\":\"Subtype of the object. WARNING: Changing the subtype removes any fields that are missing in the new subtype or have a different type.\",\"name\":\"subtype\",\"oasis\":{\"name\":\"subtype\"},\"ui\":{\"display_name\":\"Subtype\"}},{\"field_type\":\"composite\",\"composite_type\":\"_gen:applies_to_part\",\"data_name\":\"applies_to_part\",\"db_name\":\"applies_to_part\",\"name\":\"applies_to_part\",\"oasis\":{\"name\":\"applies_to_part\"}},{\"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\":\"body\",\"db_name\":\"body\",\"description\":\"Body of the work object.\",\"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\":\"array\",\"base_type\":\"composite\",\"composite_type\":\"_gen:part-summary\",\"data_name\":\"developed_with\",\"db_name\":\"developed_with\",\"name\":\"developed_with\",\"oasis\":{\"name\":\"developed_with\"}},{\"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\":\"double\",\"data_name\":\"estimated_effort\",\"db_name\":\"estimated_effort\",\"description\":\"Estimated effort to complete the issue.\",\"name\":\"estimated_effort\",\"oasis\":{\"name\":\"estimated_effort\"}},{\"field_type\":\"text\",\"data_name\":\"external_ref\",\"db_name\":\"external_ref\",\"description\":\"An opaque key that's associated with the work item that's\\nguaranteed to be unique across all work items of same type (issue,\\nticket, etc).\\n\",\"name\":\"external_ref\",\"oasis\":{\"name\":\"external_ref\"}},{\"field_type\":\"composite\",\"composite_type\":\"_gen:modified_by\",\"data_name\":\"modified_by\",\"db_name\":\"modified_by\",\"name\":\"modified_by\",\"oasis\":{\"name\":\"modified_by\"}},{\"field_type\":\"timestamp\",\"data_name\":\"modified_date\",\"db_name\":\"modified_date\",\"description\":\"Timestamp when the 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\",\"is_required\":true,\"name\":\"owned_by\",\"oasis\":{\"name\":\"owned_by\"}},{\"field_type\":\"enum\",\"allowed_values\":[\"p0\",\"p1\",\"p2\",\"p3\"],\"data_name\":\"priority\",\"db_name\":\"priority\",\"description\":\"Priority of the work based upon impact and criticality.\",\"name\":\"priority\",\"oasis\":{\"name\":\"priority\"}},{\"field_type\":\"array\",\"base_type\":\"composite\",\"composite_type\":\"_gen:user-summary\",\"data_name\":\"reported_by\",\"db_name\":\"reported_by\",\"name\":\"reported_by\",\"oasis\":{\"name\":\"reported_by\"}},{\"field_type\":\"composite\",\"composite_type\":\"_gen:sprint\",\"data_name\":\"sprint\",\"db_name\":\"sprint\",\"description\":\"Vista group item.\",\"name\":\"sprint\",\"oasis\":{\"name\":\"sprint\"}},{\"field_type\":\"composite\",\"composite_type\":\"_gen:stage\",\"data_name\":\"stage\",\"db_name\":\"stage\",\"description\":\"Describes the current stage of a work item.\",\"name\":\"stage\",\"oasis\":{\"name\":\"stage\"}},{\"field_type\":\"text\",\"data_name\":\"state_display_name\",\"db_name\":\"state_display_name\",\"description\":\"Display name for current state.\",\"name\":\"state_display_name\",\"oasis\":{\"name\":\"state_display_name\"}},{\"field_type\":\"array\",\"base_type\":\"composite\",\"composite_type\":\"_gen:tags\",\"data_name\":\"tags\",\"db_name\":\"tags\",\"description\":\"Tags associated with the object.\",\"name\":\"tags\",\"oasis\":{\"name\":\"tags\"}},{\"field_type\":\"timestamp\",\"data_name\":\"target_close_date\",\"db_name\":\"target_close_date\",\"description\":\"Timestamp when the work is expected to be complete.\",\"name\":\"target_close_date\",\"oasis\":{\"name\":\"target_close_date\"}},{\"field_type\":\"timestamp\",\"data_name\":\"target_start_date\",\"db_name\":\"target_start_date\",\"description\":\"Target start date for the object.\",\"name\":\"target_start_date\",\"oasis\":{\"name\":\"target_start_date\"}},{\"field_type\":\"text\",\"data_name\":\"title\",\"db_name\":\"title\",\"description\":\"Title of the work object.\",\"is_required\":true,\"name\":\"title\",\"oasis\":{\"name\":\"title\"}},{\"field_type\":\"enum\",\"allowed_values\":[\"issue\",\"opportunity\",\"task\",\"ticket\"],\"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\":[\"issue\"],\"is_required\":true,\"name\":\"id\",\"oasis\":{\"name\":\"id\"}},{\"supported_filter_ops\":[\"any\",\"not_any\",\"empty\",\"not_empty\"],\"field_type\":\"text\",\"data_name\":\"tnt__app_ai_tdd_link\",\"db_name\":\"tnt__app_ai_tdd_link\",\"description\":\"Link to the technical design document\",\"is_filterable\":true,\"name\":\"tnt__app_ai_tdd_link\",\"oasis\":{\"name\":\"tnt__app_ai_tdd_link\"},\"ui\":{\"display_name\":\"TDD link\",\"placeholder\":\"Link to the technical design document\"}},{\"supported_filter_ops\":[\"any\",\"not_any\",\"empty\",\"not_empty\"],\"field_type\":\"enum\",\"allowed_values\":[\"Bug\",\"Incident\",\"New Work\",\"Tech Debt\"],\"data_name\":\"tnt__category_ai_predicted\",\"db_name\":\"tnt__category_ai_predicted\",\"description\":\"AI-predicted category of the issue (Bug, Incident, New Work, Tech Debt)\",\"is_filterable\":true,\"name\":\"tnt__category_ai_predicted\",\"oasis\":{\"name\":\"tnt__category_ai_predicted\"},\"ui\":{\"display_name\":\"Category (AI Predicted)\",\"placeholder\":\"Add Category (AI Predicted)\",\"tooltip\":\"Type of work\"}},{\"field_type\":\"rich_text\",\"data_name\":\"tnt__category_justification\",\"db_name\":\"tnt__category_justification\",\"description\":\"Justification for the AI predicted category populated in the field \\\"Category (AI Predicted)\\\"\",\"is_filterable\":false,\"name\":\"tnt__category_justification\",\"oasis\":{\"name\":\"tnt__category_justification\"},\"ui\":{\"display_name\":\"Category Justification\",\"placeholder\":\"Add Category Justification\",\"tooltip\":\"Justification for the AI predicted category populated in the field \\\"Category (AI Predicted)\\\"\"}},{\"supported_filter_ops\":[\"all\",\"any\",\"not_any\",\"empty\",\"not_empty\"],\"field_type\":\"array\",\"base_type\":\"enum\",\"allowed_values\":[\"Customer commit\",\"Feature work\",\"Quality - Latency\",\"Quality - One click\",\"Quality - Reliability\",\"Quality - Secure & Governed\",\"Quality - Self serve\"],\"data_name\":\"tnt__classification\",\"db_name\":\"tnt__classification\",\"description\":\"List of classifications for the issue (e.g., Customer Commit, Feature Work)\",\"is_filterable\":true,\"name\":\"tnt__classification\",\"oasis\":{\"name\":\"tnt__classification\"},\"ui\":{\"display_name\":\"Classification\",\"placeholder\":\"Add Classification\"}},{\"supported_filter_ops\":[\"any\",\"not_any\",\"empty\",\"not_empty\"],\"field_type\":\"text\",\"data_name\":\"tnt__datadog_issue_id\",\"db_name\":\"tnt__datadog_issue_id\",\"description\":\"Reference ID for the issue in Datadog\",\"is_filterable\":true,\"name\":\"tnt__datadog_issue_id\",\"oasis\":{\"name\":\"tnt__datadog_issue_id\"},\"ui\":{\"display_name\":\"DataDog Issue ID\",\"placeholder\":\"Add DataDog Issue ID\"}},{\"supported_filter_ops\":[\"any\",\"not_any\",\"empty\",\"not_empty\"],\"field_type\":\"int\",\"data_name\":\"tnt__deployment_blocked_time\",\"db_name\":\"tnt__deployment_blocked_time\",\"description\":\"Deployment Blocked Time\",\"is_filterable\":true,\"name\":\"tnt__deployment_blocked_time\",\"oasis\":{\"name\":\"tnt__deployment_blocked_time\"},\"ui\":{\"display_name\":\"Deployment Blocked Time\",\"placeholder\":\"Add Deployment Blocked Time\"}},{\"supported_filter_ops\":[\"any\",\"not_any\",\"empty\",\"not_empty\"],\"field_type\":\"enum\",\"allowed_values\":[\"Pebble\",\"Rock\",\"Stone\"],\"data_name\":\"tnt__effort_level\",\"db_name\":\"tnt__effort_level\",\"description\":\"Estimated effort level required for the issue (Pebble, Rock, Stone)\",\"is_filterable\":true,\"name\":\"tnt__effort_level\",\"oasis\":{\"name\":\"tnt__effort_level\"},\"ui\":{\"display_name\":\"Effort Level\",\"placeholder\":\"Add Effort Level\",\"tooltip\":\"Rock (>= 1 week), Stone (3 days to 1 week), Pebble (< 3 days)\"}},{\"supported_filter_ops\":[\"any\",\"not_any\",\"empty\",\"not_empty\"],\"field_type\":\"enum\",\"allowed_values\":[\"Agents\",\"Applied AI Eng\",\"Engineering\",\"Infra\",\"PRE\"],\"data_name\":\"tnt__eng_team\",\"db_name\":\"tnt__eng_team\",\"description\":\"Engineering team responsible for the issue (e.g., Applied Ai Eng, Infra)\",\"is_filterable\":true,\"name\":\"tnt__eng_team\",\"oasis\":{\"name\":\"tnt__eng_team\"},\"ui\":{\"display_name\":\"Team\",\"placeholder\":\"Add Team\"}},{\"supported_filter_ops\":[\"any\",\"not_any\",\"empty\",\"not_empty\"],\"field_type\":\"text\",\"data_name\":\"tnt__external_ref_id\",\"db_name\":\"tnt__external_ref_id\",\"description\":\"External reference ID for the issue\",\"is_filterable\":true,\"name\":\"tnt__external_ref_id\",\"oasis\":{\"name\":\"tnt__external_ref_id\"},\"ui\":{\"display_name\":\"External Ref Id\",\"placeholder\":\"Add External Ref Id\"}},{\"supported_filter_ops\":[\"any\",\"not_any\",\"empty\",\"not_empty\"],\"field_type\":\"text\",\"data_name\":\"tnt__hashed_deployment_id\",\"db_name\":\"tnt__hashed_deployment_id\",\"description\":\"Unique Hashed Deployment Id\",\"is_filterable\":true,\"name\":\"tnt__hashed_deployment_id\",\"oasis\":{\"name\":\"tnt__hashed_deployment_id\"},\"ui\":{\"display_name\":\"Hashed Deployment Id\",\"placeholder\":\"Add Hashed Deployment Id\"}},{\"supported_filter_ops\":[\"any\",\"not_any\",\"empty\",\"not_empty\"],\"field_type\":\"enum\",\"allowed_values\":[\"L\",\"M\",\"S\",\"XS\"],\"data_name\":\"tnt__level_of_effort\",\"db_name\":\"tnt__level_of_effort\",\"description\":\"Level of effort required for the issue (L, M, S, Xs)\",\"is_filterable\":true,\"name\":\"tnt__level_of_effort\",\"oasis\":{\"name\":\"tnt__level_of_effort\"},\"ui\":{\"display_name\":\"Level of Effort\",\"placeholder\":\"Add Level of Effort\",\"tooltip\":\"XS : <1 person week (0.5 sprint), S : 1-2 person week (0.5-1 sprint), M: 2-4 person week (1-2 sprints), L: 4+ person week (2+ sprints)\"}},{\"supported_filter_ops\":[\"any\",\"not_any\",\"empty\",\"not_empty\"],\"field_type\":\"id\",\"data_name\":\"tnt__release\",\"db_name\":\"tnt__release\",\"description\":\"ID of the associated release in custom_object.release\",\"id_type\":[\"custom_object.release\"],\"is_filterable\":true,\"name\":\"tnt__release\",\"oasis\":{\"name\":\"tnt__release\"},\"ui\":{\"display_name\":\"Release\",\"placeholder\":\"Add Release\"}},{\"field_type\":\"rich_text\",\"data_name\":\"tnt__release_notes\",\"db_name\":\"tnt__release_notes\",\"description\":\"Rich text notes detailing the release information for the issue\",\"name\":\"tnt__release_notes\",\"oasis\":{\"name\":\"tnt__release_notes\"},\"ui\":{\"display_name\":\"Release Notes\",\"placeholder\":\"Add Release Notes\"}},{\"supported_filter_ops\":[\"any\",\"not_any\",\"empty\",\"not_empty\"],\"field_type\":\"enum\",\"allowed_values\":[\"Adaas\",\"Agent\",\"Customization\",\"Dashboards\",\"Documentation\",\"Search\",\"Snap In\",\"Snap In as a Script\",\"Workflows\"],\"data_name\":\"tnt__solution_space\",\"db_name\":\"tnt__solution_space\",\"description\":\"Solution space category for the issue (e.g., Adaas, Dashboards, Workflows)\",\"is_filterable\":true,\"name\":\"tnt__solution_space\",\"oasis\":{\"name\":\"tnt__solution_space\"},\"ui\":{\"display_name\":\"Solution Space\",\"placeholder\":\"Add Solution Space\"}},{\"field_type\":\"rich_text\",\"data_name\":\"tnt__summary\",\"db_name\":\"tnt__summary\",\"description\":\"Rich text summary of the issue\",\"is_filterable\":false,\"name\":\"tnt__summary\",\"oasis\":{\"name\":\"tnt__summary\"},\"ui\":{\"display_name\":\"Summary\",\"placeholder\":\"Add Summary\"}},{\"supported_filter_ops\":[\"all\",\"any\",\"not_any\",\"empty\",\"not_empty\"],\"field_type\":\"array\",\"base_type\":\"id\",\"data_name\":\"tnt__theme\",\"db_name\":\"tnt__theme\",\"description\":\"List of associated themes from custom_object.theme\",\"id_type\":[\"custom_object.theme\"],\"is_filterable\":true,\"name\":\"tnt__theme\",\"oasis\":{\"name\":\"tnt__theme\"},\"ui\":{\"display_name\":\"Theme\",\"placeholder\":\"Add Theme\"}},{\"supported_filter_ops\":[\"any\",\"not_any\",\"empty\",\"not_empty\"],\"field_type\":\"text\",\"data_name\":\"tnt__ui_e2e_failure_testname\",\"db_name\":\"tnt__ui_e2e_failure_testname\",\"description\":\"UI E2E Failure Testname\",\"is_filterable\":true,\"name\":\"tnt__ui_e2e_failure_testname\",\"oasis\":{\"name\":\"tnt__ui_e2e_failure_testname\"},\"ui\":{\"display_name\":\"UI E2E Failure Testname\",\"placeholder\":\"Add UI E2E Failure Testname\"}},{\"supported_filter_ops\":[\"all\",\"any\",\"not_any\",\"empty\",\"not_empty\"],\"field_type\":\"array\",\"base_type\":\"id\",\"data_name\":\"tnt__visible_to\",\"db_name\":\"tnt__visible_to\",\"description\":\"Added list of users to give CRUD access\",\"id_type\":[\"group\"],\"is_filterable\":true,\"name\":\"tnt__visible_to\",\"oasis\":{\"name\":\"tnt__visible_to\"},\"ui\":{\"display_name\":\"Visible To\",\"placeholder\":\"Visible to users\"}}],\"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_issue_2\",\"ui_metadata\":{\"position\":{\"x\":116,\"y\":504}}}],\"title\":\"Auto-update issue TCD as end of sprint date\"}","templateVersion":"2.0.0"}
|