eBay · Schema

UploadSummary

This container provides summary information on an upload feed (not applicable for download feed types).

AuctionsCommerceProductsMarketplaceFortune 500

Properties

Name Type Description
failureCount integer The number of records, such as the number of listings created or the number of pictures uploaded to a listing, that failed to process during the upload feed. Check the response file and correct any is
successCount integer The number of records that were successfully processed during the upload feed.
View JSON Schema on GitHub

JSON Schema

ebay-uploadsummary-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/UploadSummary",
  "title": "UploadSummary",
  "type": "object",
  "properties": {
    "failureCount": {
      "type": "integer",
      "description": "The number of records, such as the number of listings created or the number of pictures uploaded to a listing, that failed to process during the upload feed. Check the response file and correct any issues mentioned. If the feed fails before processing, no response file is provided. In this case check the REST output response.",
      "format": "int32"
    },
    "successCount": {
      "type": "integer",
      "description": "The number of records that were successfully processed during the upload feed.",
      "format": "int32"
    }
  },
  "description": "This container provides summary information on an upload feed (not applicable for download feed types)."
}