Properties
| Name | Type | Description |
|---|---|---|
| created | object | |
| id | object | |
| labels | object | |
| priority | integer | Priority |
| requirement | string | Requirement |
| tlp | object | |
| updated | object |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/cloudforce-one_priority-item",
"title": "Priority Item",
"properties": {
"created": {
"allOf": [
{
"$ref": "#/components/schemas/cloudforce-one_time"
},
{
"description": "Priority creation time"
}
]
},
"id": {
"$ref": "#/components/schemas/cloudforce-one_uuid"
},
"labels": {
"$ref": "#/components/schemas/cloudforce-one_labels"
},
"priority": {
"description": "Priority",
"example": 1,
"type": "integer"
},
"requirement": {
"description": "Requirement",
"example": "DoS attacks carried out by CVEs",
"type": "string"
},
"tlp": {
"$ref": "#/components/schemas/cloudforce-one_tlp"
},
"updated": {
"allOf": [
{
"$ref": "#/components/schemas/cloudforce-one_time"
},
{
"description": "Priority last updated time"
}
]
}
},
"required": [
"id",
"created",
"updated",
"labels",
"priority",
"requirement",
"tlp"
],
"type": "object"
}