-
Notifications
You must be signed in to change notification settings - Fork 253
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Ben Skelker
committed
Jan 19, 2020
1 parent
701c862
commit fd2bb02
Showing
3 changed files
with
31 additions
and
51 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
// tag::cases-api-json-schema[] | ||
[width="100%",options="header"] | ||
|============================================== | ||
|Name |Type |Description |Required | ||
|
||
|`title` |String |The case's title. |Yes | ||
|`description` |String |The case's description. |Yes | ||
|`case_type` |String |The type of case. For example, `security`. |Yes | ||
|`state` |String a|Indicates whether the case is open or closed. Valid values | ||
are: | ||
|
||
* `open` | ||
* `closed` | ||
|No, defaults to `open`. | ||
|assignees |Object[] a|Object containing string arrays for the names of people | ||
assigned to the case: | ||
|
||
* `username` (String, required) - The username of the person assigned to the | ||
case. | ||
* `full_name` (String, optional) - The full name of the person assigned to the | ||
object. | ||
|No, defaults to an empty array. | ||
|
||
|`tags` |String[] |String array containing words and phrases that help categorize | ||
cases. |No, defaults to an empty array. | ||
|============================================== | ||
// end::cases-api-json-schema[] |