IBM WebSphere · Schema
Notification
Application ServerCloud NativeEnterprise JavaJ2EEMicroservicesMiddleware
Properties
| Name | Type | Description |
|---|---|---|
| id | string | |
| type | string | |
| severity | string | |
| title | string | |
| message | string | |
| read | boolean | |
| createdDate | string | |
| relatedResourceId | string |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/Notification",
"title": "Notification",
"type": "object",
"properties": {
"id": {
"type": "string",
"example": "abc123"
},
"type": {
"type": "string",
"enum": [
"vulnerability",
"health",
"compliance",
"fix"
],
"example": "vulnerability"
},
"severity": {
"type": "string",
"enum": [
"info",
"warning",
"critical"
],
"example": "info"
},
"title": {
"type": "string",
"example": "Example Title"
},
"message": {
"type": "string",
"example": "example_value"
},
"read": {
"type": "boolean",
"example": true
},
"createdDate": {
"type": "string",
"format": "date-time",
"example": "2026-01-15T10:30:00Z"
},
"relatedResourceId": {
"type": "string",
"example": "500123"
}
}
}