eBay · Schema

Notification

AuctionsCommerceProductsMarketplaceFortune 500

Properties

Name Type Description
notificationId string The notification Id.
eventDate string The event date associated with this notification in UTC.
publishDate string The message publish date in UTC.
publishAttemptCount integer The number of attempts made to publish this message.
data object
View JSON Schema on GitHub

JSON Schema

ebay-notification-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/Notification",
  "title": "Notification",
  "type": "object",
  "properties": {
    "notificationId": {
      "type": "string",
      "description": "The notification Id."
    },
    "eventDate": {
      "type": "string",
      "description": "The event date associated with this notification in UTC."
    },
    "publishDate": {
      "type": "string",
      "description": "The message publish date in UTC."
    },
    "publishAttemptCount": {
      "type": "integer",
      "description": "The number of attempts made to publish this message."
    },
    "data": {
      "$ref": "#/components/schemas/AuthorizationRevocationData"
    }
  }
}