Citrix · Schema

Notification

Application DeliveryDesktop-As-A-ServiceNetworkingVirtualizationWorkspaceFortune 1000

Properties

Name Type Description
id string Notification unique identifier
title string Notification title
description string Notification description
severity string Severity level of the notification
createdDate string When the notification was created
View JSON Schema on GitHub

JSON Schema

citrix-notification-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/Notification",
  "title": "Notification",
  "type": "object",
  "properties": {
    "id": {
      "type": "string",
      "description": "Notification unique identifier"
    },
    "title": {
      "type": "string",
      "description": "Notification title"
    },
    "description": {
      "type": "string",
      "description": "Notification description"
    },
    "severity": {
      "type": "string",
      "enum": [
        "Information",
        "Warning",
        "Critical"
      ],
      "description": "Severity level of the notification"
    },
    "createdDate": {
      "type": "string",
      "format": "date-time",
      "description": "When the notification was created"
    }
  }
}