Properties
| Name | Type | Description |
|---|---|---|
| priority | array | |
| status | array | |
| tlp | array |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/cloudforce-one_request-constants",
"title": "Request Constants",
"properties": {
"priority": {
"example": [
"routine",
"high",
"urgent"
],
"items": {
"$ref": "#/components/schemas/cloudforce-one_priority"
},
"type": "array"
},
"status": {
"example": [
"open",
"accepted",
"reported",
"approved",
"completed",
"declined"
],
"items": {
"$ref": "#/components/schemas/cloudforce-one_request-status"
},
"type": "array"
},
"tlp": {
"example": [
"clear",
"green",
"amber",
"amber-strict",
"red"
],
"items": {
"$ref": "#/components/schemas/cloudforce-one_tlp"
},
"type": "array"
}
},
"type": "object"
}