eBay · Schema

PayloadDetail

A type that describes the details about a topic's payload.

AuctionsCommerceProductsMarketplaceFortune 500

Properties

Name Type Description
deliveryProtocol string The supported delivery protocols. For implementation help, refer to eBay API documentation
deprecated boolean A deprecation indicator.
format array The supported format. Presently, JSON is the only supported format.
schemaVersion string The supported schema version.
View JSON Schema on GitHub

JSON Schema

ebay-payloaddetail-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/PayloadDetail",
  "title": "PayloadDetail",
  "type": "object",
  "properties": {
    "deliveryProtocol": {
      "type": "string",
      "description": "The supported delivery protocols. For implementation help, refer to <a href='https://developer.ebay.com/api-docs/commerce/notification/types/api:ProtocolEnum'>eBay API documentation</a>"
    },
    "deprecated": {
      "type": "boolean",
      "description": "A deprecation indicator."
    },
    "format": {
      "type": "array",
      "description": "The supported format. Presently, <code>JSON</code> is the only supported format.",
      "items": {
        "type": "string",
        "description": " For implementation help, refer to <a href='https://developer.ebay.com/api-docs/commerce/notification/types/api:FormatTypeEnum'>eBay API documentation</a>"
      }
    },
    "schemaVersion": {
      "type": "string",
      "description": "The supported schema version."
    }
  },
  "description": "A type that describes the details about a topic's payload."
}