@@ -9229,6 +9229,10 @@ components:
92299229 $ref: '#/components/schemas/ServiceNowTicket'
92309230 status:
92319231 $ref: '#/components/schemas/CaseStatus'
9232+ status_group:
9233+ $ref: '#/components/schemas/CaseStatusGroup'
9234+ status_name:
9235+ $ref: '#/components/schemas/CaseStatusName'
92329236 title:
92339237 description: Title
92349238 example: Memory leak investigation on API
@@ -9295,6 +9299,8 @@ components:
92959299 type: string
92969300 priority:
92979301 $ref: '#/components/schemas/CasePriority'
9302+ status_name:
9303+ $ref: '#/components/schemas/CaseStatusName'
92989304 title:
92999305 description: Title
93009306 example: Security breach investigation
@@ -9463,7 +9469,9 @@ components:
94639469 - PRIORITY
94649470 - STATUS
94659471 CaseStatus:
9466- description: Case status
9472+ deprecated: true
9473+ description: Deprecated way of representing the case status, which only supports
9474+ OPEN, IN_PROGRESS, and CLOSED statuses. Use `status_name` instead.
94679475 enum:
94689476 - OPEN
94699477 - IN_PROGRESS
@@ -9474,6 +9482,23 @@ components:
94749482 - OPEN
94759483 - IN_PROGRESS
94769484 - CLOSED
9485+ CaseStatusGroup:
9486+ description: Status group of the case.
9487+ enum:
9488+ - SG_OPEN
9489+ - SG_IN_PROGRESS
9490+ - SG_CLOSED
9491+ example: SG_OPEN
9492+ type: string
9493+ x-enum-varnames:
9494+ - SG_OPEN
9495+ - SG_IN_PROGRESS
9496+ - SG_CLOSED
9497+ CaseStatusName:
9498+ description: Status of the case. Must be one of the existing statuses for the
9499+ case's type.
9500+ example: Open
9501+ type: string
94779502 CaseTrigger:
94789503 description: Trigger a workflow from a Case. For automatic triggering a handle
94799504 must be configured and the workflow must be published.
@@ -9697,8 +9722,9 @@ components:
96979722 properties:
96989723 status:
96999724 $ref: '#/components/schemas/CaseStatus'
9700- required:
9701- - status
9725+ deprecated: true
9726+ status_name:
9727+ $ref: '#/components/schemas/CaseStatusName'
97029728 type: object
97039729 CaseUpdateStatusRequest:
97049730 description: Case update status request
0 commit comments