eBay · Schema

ComplianceSummary

This type is the base type for the getListingViolationsSummary response. The violationSummaries container contains an array of policy violation counts for each unique eBay marketplace and compliance type violation.

AuctionsCommerceProductsMarketplaceFortune 500

Properties

Name Type Description
violationSummaries array This container is an array of one or more policy violation counts. A policy violation count is returned for each unique eBay marketplace and compliance type violation. As long as there is at least one
View JSON Schema on GitHub

JSON Schema

ebay-compliancesummary-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ComplianceSummary",
  "title": "ComplianceSummary",
  "type": "object",
  "properties": {
    "violationSummaries": {
      "type": "array",
      "description": "This container is an array of one or more policy violation counts. A policy violation count is returned for each unique eBay marketplace and compliance type violation. As long as there is at least one non-compliant listing for the specified compliance type(s), this container will be returned. If no non-compliant listings are found for the specified compliance type(s), an HTTP status code of <code>204 No Content</code> is returned, and there is no response body.",
      "items": {
        "$ref": "#/components/schemas/ComplianceSummaryInfo"
      }
    }
  },
  "description": "This type is the base type for the <strong>getListingViolationsSummary</strong> response. The <strong>violationSummaries</strong> container contains an array of policy violation counts for each unique eBay marketplace and compliance type violation."
}