IBM WebSphere · Schema

NotificationSubscription

Application ServerCloud NativeEnterprise JavaJ2EEMicroservicesMiddleware

Properties

Name Type Description
id string
objectName string
filters array
created string
View JSON Schema on GitHub

JSON Schema

websphere-notificationsubscription-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/NotificationSubscription",
  "title": "NotificationSubscription",
  "type": "object",
  "properties": {
    "id": {
      "type": "string",
      "example": "abc123"
    },
    "objectName": {
      "type": "string",
      "example": "example_value"
    },
    "filters": {
      "type": "array",
      "items": {
        "type": "string"
      },
      "example": []
    },
    "created": {
      "type": "string",
      "format": "date-time",
      "example": "2026-01-15T10:30:00Z"
    }
  }
}