Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -5481,6 +5481,21 @@
"description": "Describes a user that updated the bookmark",
"type": "object"
},
"eventTime": {
"description": "The bookmark event time",
"format": "date-time",
"type": "string"
},
"queryStartTime": {
"description": "The start time for the query",
"format": "date-time",
"type": "string"
},
"queryEndTime": {
"description": "The end time for the query",
"format": "date-time",
"type": "string"
},
"incidentInfo": {
"$ref": "#/definitions/IncidentInfo",
"description": "Describes an incident that relates to bookmark",
Expand Down Expand Up @@ -5529,6 +5544,13 @@
"$ref": "#/definitions/Entity"
},
"type": "array"
},
"edges": {
"description": "Array of expansion result connected entities",
"items": {
"$ref": "#/definitions/ConnectedEntity"
},
"type": "array"
}
},
"type": "object"
Expand Down Expand Up @@ -6900,6 +6922,19 @@
},
"type": "object"
},
"ConnectedEntity": {
"description": "Expansion result connected entities",
"properties": {
"targetEntityId": {
"description": "Entity Id of the connected entity",
"type": "string"
},
"additionalData": {
"description": "key-value pairs for a connected entity mapping",
"type": "object"
}
}
},
"TimelineResultsMetadata": {
"description": "Expansion result metadata.",
"properties": {
Expand Down Expand Up @@ -10445,12 +10480,6 @@
"type": "string"
}
},
"required": [
"incidentId",
"severity",
"title",
"relationName"
],
"type": "object"
},
"WatchlistList": {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1859,6 +1859,21 @@
"description": "Describes a user that updated the bookmark",
"type": "object"
},
"eventTime": {
"description": "The bookmark event time",
"format": "date-time",
"type": "string"
},
"queryStartTime": {
"description": "The start time for the query",
"format": "date-time",
"type": "string"
},
"queryEndTime": {
"description": "The end time for the query",
"format": "date-time",
"type": "string"
},
"incidentInfo": {
"$ref": "#/definitions/IncidentInfo",
"description": "Describes an incident that relates to bookmark",
Expand Down Expand Up @@ -3522,12 +3537,6 @@
"type": "string"
}
},
"required": [
"incidentId",
"severity",
"title",
"relationName"
],
"type": "object"
}
},
Expand Down