[DOCS] Clarify case duration (#133552)

Co-authored-by: Eric Davis <eric.davis@elastic.co>
This commit is contained in:
Lisa Cawley 2022-06-06 08:45:38 -07:00 committed by GitHub
parent b1d9e76eb6
commit 9ca93a552c
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
5 changed files with 42 additions and 22 deletions

View file

@ -124,7 +124,7 @@ The API returns a JSON object listing the retrieved cases. For example:
"description": "Case description",
"settings": { "syncAlerts": true },
"owner": "securitySolution",
"duration": null,
"duration": null, <1>
"severity": "low",
"closed_at": null,
"closed_by": null,
@ -155,3 +155,7 @@ The API returns a JSON object listing the retrieved cases. For example:
"count_closed_cases": 0
}
--------------------------------------------------
<1> Duration represents the elapsed time from the creation of the case to its
closure (in seconds). If the case has not been closed, the duration is set to
`null`. If the case was closed after less than half a second, the duration is
rounded down to zero.

View file

@ -92,11 +92,15 @@ The API returns a JSON object with the retrieved case. For example:
},
"owner": "securitySolution",
"severity": "low",
"duration": null,
"duration": null, <1>
"tags": [
"phishing",
"social engineering",
"bubblegum"
]
}
--------------------------------------------------
--------------------------------------------------
<1> Duration represents the elapsed time from the creation of the case to its
closure (in seconds). If the case has not been closed, the duration is set to
`null`. If the case was closed after less than half a second, the duration is
rounded down to zero.