@@ -6566,6 +6566,11 @@ components:
6566
6566
$ref: '#/components/schemas/IncidentAttachmentLinkAttributesAttachmentObject'
6567
6567
attachment_type:
6568
6568
$ref: '#/components/schemas/IncidentAttachmentLinkAttachmentType'
6569
+ modified:
6570
+ description: Timestamp when the incident attachment link was last modified.
6571
+ format: date-time
6572
+ readOnly: true
6573
+ type: string
6569
6574
required:
6570
6575
- attachment_type
6571
6576
- attachment
@@ -6871,9 +6876,22 @@ components:
6871
6876
- TEXTARRAY
6872
6877
- METRICTAG
6873
6878
- AUTOCOMPLETE
6879
+ IncidentImpactsType:
6880
+ description: The incident impacts type.
6881
+ enum:
6882
+ - incident_impacts
6883
+ example: incident_impacts
6884
+ type: string
6885
+ x-enum-varnames:
6886
+ - INCIDENT_IMPACTS
6874
6887
IncidentIntegrationMetadataAttributes:
6875
6888
description: Incident integration metadata's attributes for a create request.
6876
6889
properties:
6890
+ created:
6891
+ description: Timestamp when the incident todo was created.
6892
+ format: date-time
6893
+ readOnly: true
6894
+ type: string
6877
6895
incident_id:
6878
6896
description: UUID of the incident this integration metadata is connected
6879
6897
to.
@@ -6890,6 +6908,11 @@ components:
6890
6908
type: integer
6891
6909
metadata:
6892
6910
$ref: '#/components/schemas/IncidentIntegrationMetadataMetadata'
6911
+ modified:
6912
+ description: Timestamp when the incident todo was last modified.
6913
+ format: date-time
6914
+ readOnly: true
6915
+ type: string
6893
6916
status:
6894
6917
description: 'A number indicating the status of this integration metadata.
6895
6918
0 indicates unknown;
@@ -6989,6 +7012,8 @@ components:
6989
7012
description: The incident integration metadata's ID.
6990
7013
example: 00000000-0000-0000-1234-000000000000
6991
7014
type: string
7015
+ relationships:
7016
+ $ref: '#/components/schemas/IncidentIntegrationRelationships'
6992
7017
type:
6993
7018
$ref: '#/components/schemas/IncidentIntegrationMetadataType'
6994
7019
required:
@@ -7009,6 +7034,25 @@ components:
7009
7034
type: string
7010
7035
x-enum-varnames:
7011
7036
- INCIDENT_INTEGRATIONS
7037
+ IncidentIntegrationRelationships:
7038
+ description: The incident's integration relationships from a response.
7039
+ properties:
7040
+ created_by_user:
7041
+ $ref: '#/components/schemas/RelationshipToUser'
7042
+ last_modified_by_user:
7043
+ $ref: '#/components/schemas/RelationshipToUser'
7044
+ type: object
7045
+ IncidentNonDatadogCreator:
7046
+ description: Incident's non Datadog creator.
7047
+ nullable: true
7048
+ properties:
7049
+ image_48_px:
7050
+ description: Non Datadog creator `48px` image.
7051
+ type: string
7052
+ name:
7053
+ description: Non Datadog creator name.
7054
+ type: string
7055
+ type: object
7012
7056
IncidentNotificationHandle:
7013
7057
description: A notification handle that will be notified at incident creation.
7014
7058
properties:
@@ -7039,6 +7083,14 @@ components:
7039
7083
x-enum-varnames:
7040
7084
- USERS
7041
7085
- ATTACHMENTS
7086
+ IncidentRespondersType:
7087
+ description: The incident responders type.
7088
+ enum:
7089
+ - incident_responders
7090
+ example: incident_responders
7091
+ type: string
7092
+ x-enum-varnames:
7093
+ - INCIDENT_RESPONDERS
7042
7094
IncidentResponse:
7043
7095
description: Response with an incident.
7044
7096
properties:
@@ -7056,6 +7108,17 @@ components:
7056
7108
IncidentResponseAttributes:
7057
7109
description: The incident's attributes from a response.
7058
7110
properties:
7111
+ archived:
7112
+ description: Timestamp of when the incident was archived.
7113
+ format: date-time
7114
+ nullable: true
7115
+ readOnly: true
7116
+ type: string
7117
+ case_id:
7118
+ description: The incident case id.
7119
+ format: int64
7120
+ nullable: true
7121
+ type: integer
7059
7122
created:
7060
7123
description: Timestamp when the incident was created.
7061
7124
format: date-time
@@ -7106,6 +7169,8 @@ components:
7106
7169
format: date-time
7107
7170
readOnly: true
7108
7171
type: string
7172
+ non_datadog_creator:
7173
+ $ref: '#/components/schemas/IncidentNonDatadogCreator'
7109
7174
notification_handles:
7110
7175
description: Notification handles that will be notified of the incident
7111
7176
during update.
@@ -7124,6 +7189,12 @@ components:
7124
7189
format: date-time
7125
7190
nullable: true
7126
7191
type: string
7192
+ severity:
7193
+ $ref: '#/components/schemas/IncidentSeverity'
7194
+ state:
7195
+ description: The state incident.
7196
+ nullable: true
7197
+ type: string
7127
7198
time_to_detect:
7128
7199
description: 'The amount of time in seconds to detect the incident.
7129
7200
@@ -7154,6 +7225,10 @@ components:
7154
7225
description: The title of the incident, which summarizes what happened.
7155
7226
example: A test incident title
7156
7227
type: string
7228
+ visibility:
7229
+ description: The incident visibility status.
7230
+ nullable: true
7231
+ type: string
7157
7232
required:
7158
7233
- title
7159
7234
type: object
@@ -7215,10 +7290,16 @@ components:
7215
7290
$ref: '#/components/schemas/NullableRelationshipToUser'
7216
7291
created_by_user:
7217
7292
$ref: '#/components/schemas/RelationshipToUser'
7293
+ impacts:
7294
+ $ref: '#/components/schemas/RelationshipToIncidentImpacts'
7218
7295
integrations:
7219
7296
$ref: '#/components/schemas/RelationshipToIncidentIntegrationMetadatas'
7220
7297
last_modified_by_user:
7221
7298
$ref: '#/components/schemas/RelationshipToUser'
7299
+ responders:
7300
+ $ref: '#/components/schemas/RelationshipToIncidentResponders'
7301
+ user_defined_fields:
7302
+ $ref: '#/components/schemas/RelationshipToIncidentUserDefinedFields'
7222
7303
type: object
7223
7304
IncidentSearchResponse:
7224
7305
description: Response with incidents and facets.
@@ -7601,6 +7682,24 @@ components:
7601
7682
required:
7602
7683
- data
7603
7684
type: object
7685
+ IncidentSeverity:
7686
+ description: The incident severity.
7687
+ enum:
7688
+ - UNKNOWN
7689
+ - SEV-1
7690
+ - SEV-2
7691
+ - SEV-3
7692
+ - SEV-4
7693
+ - SEV-5
7694
+ example: UNKNOWN
7695
+ type: string
7696
+ x-enum-varnames:
7697
+ - UNKNOWN
7698
+ - SEV_1
7699
+ - SEV_2
7700
+ - SEV_3
7701
+ - SEV_4
7702
+ - SEV_5
7604
7703
IncidentTeamCreateAttributes:
7605
7704
description: The incident team's attributes for a create request.
7606
7705
properties:
@@ -7860,6 +7959,11 @@ components:
7860
7959
description: The follow-up task's content.
7861
7960
example: Restore lost data.
7862
7961
type: string
7962
+ created:
7963
+ description: Timestamp when the incident todo was created.
7964
+ format: date-time
7965
+ readOnly: true
7966
+ type: string
7863
7967
due_date:
7864
7968
description: Timestamp when the todo should be completed by.
7865
7969
example: '2023-07-10T05:00:00.000000+00:00'
@@ -7869,6 +7973,11 @@ components:
7869
7973
description: UUID of the incident this todo is connected to.
7870
7974
example: 00000000-aaaa-0000-0000-000000000000
7871
7975
type: string
7976
+ modified:
7977
+ description: Timestamp when the incident todo was last modified.
7978
+ format: date-time
7979
+ readOnly: true
7980
+ type: string
7872
7981
required:
7873
7982
- content
7874
7983
- assignees
@@ -7930,6 +8039,14 @@ components:
7930
8039
required:
7931
8040
- data
7932
8041
type: object
8042
+ IncidentTodoRelationships:
8043
+ description: The incident's relationships from a response.
8044
+ properties:
8045
+ created_by_user:
8046
+ $ref: '#/components/schemas/RelationshipToUser'
8047
+ last_modified_by_user:
8048
+ $ref: '#/components/schemas/RelationshipToUser'
8049
+ type: object
7933
8050
IncidentTodoResponse:
7934
8051
description: Response with an incident todo.
7935
8052
properties:
@@ -7953,6 +8070,8 @@ components:
7953
8070
description: The incident todo's ID.
7954
8071
example: 00000000-0000-0000-1234-000000000000
7955
8072
type: string
8073
+ relationships:
8074
+ $ref: '#/components/schemas/IncidentTodoRelationships'
7956
8075
type:
7957
8076
$ref: '#/components/schemas/IncidentTodoType'
7958
8077
required:
@@ -8063,6 +8182,14 @@ components:
8063
8182
required:
8064
8183
- data
8065
8184
type: object
8185
+ IncidentUserDefinedFieldType:
8186
+ description: The incident user defined fields type.
8187
+ enum:
8188
+ - user_defined_field
8189
+ example: user_defined_field
8190
+ type: string
8191
+ x-enum-varnames:
8192
+ - USER_DEFINED_FIELD
8066
8193
IncidentsResponse:
8067
8194
description: Response with a list of incidents.
8068
8195
properties:
@@ -10755,6 +10882,7 @@ components:
10755
10882
type: object
10756
10883
NullableRelationshipToUser:
10757
10884
description: Relationship to user.
10885
+ nullable: true
10758
10886
properties:
10759
10887
data:
10760
10888
$ref: '#/components/schemas/NullableRelationshipToUserData'
@@ -12615,6 +12743,30 @@ components:
12615
12743
- id
12616
12744
- type
12617
12745
type: object
12746
+ RelationshipToIncidentImpactData:
12747
+ description: Relationship to impact object.
12748
+ properties:
12749
+ id:
12750
+ description: A unique identifier that represents the impact.
12751
+ example: 00000000-0000-0000-2345-000000000000
12752
+ type: string
12753
+ type:
12754
+ $ref: '#/components/schemas/IncidentImpactsType'
12755
+ required:
12756
+ - id
12757
+ - type
12758
+ type: object
12759
+ RelationshipToIncidentImpacts:
12760
+ description: Relationship to impacts.
12761
+ properties:
12762
+ data:
12763
+ description: An array of incident impacts.
12764
+ items:
12765
+ $ref: '#/components/schemas/RelationshipToIncidentImpactData'
12766
+ type: array
12767
+ required:
12768
+ - data
12769
+ type: object
12618
12770
RelationshipToIncidentIntegrationMetadataData:
12619
12771
description: A relationship reference for an integration metadata object.
12620
12772
example:
@@ -12681,6 +12833,54 @@ components:
12681
12833
- id
12682
12834
- type
12683
12835
type: object
12836
+ RelationshipToIncidentResponderData:
12837
+ description: Relationship to impact object.
12838
+ properties:
12839
+ id:
12840
+ description: A unique identifier that represents the responder.
12841
+ example: 00000000-0000-0000-2345-000000000000
12842
+ type: string
12843
+ type:
12844
+ $ref: '#/components/schemas/IncidentRespondersType'
12845
+ required:
12846
+ - id
12847
+ - type
12848
+ type: object
12849
+ RelationshipToIncidentResponders:
12850
+ description: Relationship to incident responders.
12851
+ properties:
12852
+ data:
12853
+ description: An array of incident responders.
12854
+ items:
12855
+ $ref: '#/components/schemas/RelationshipToIncidentResponderData'
12856
+ type: array
12857
+ required:
12858
+ - data
12859
+ type: object
12860
+ RelationshipToIncidentUserDefinedFieldData:
12861
+ description: Relationship to impact object.
12862
+ properties:
12863
+ id:
12864
+ description: A unique identifier that represents the responder.
12865
+ example: 00000000-0000-0000-2345-000000000000
12866
+ type: string
12867
+ type:
12868
+ $ref: '#/components/schemas/IncidentUserDefinedFieldType'
12869
+ required:
12870
+ - id
12871
+ - type
12872
+ type: object
12873
+ RelationshipToIncidentUserDefinedFields:
12874
+ description: Relationship to incident user defined fields.
12875
+ properties:
12876
+ data:
12877
+ description: An array of user defined fields.
12878
+ items:
12879
+ $ref: '#/components/schemas/RelationshipToIncidentUserDefinedFieldData'
12880
+ type: array
12881
+ required:
12882
+ - data
12883
+ type: object
12684
12884
RelationshipToOrganization:
12685
12885
description: Relationship to an organization.
12686
12886
properties:
0 commit comments