eBay · Schema

ListingStructurePolicyResponse

AuctionsCommerceProductsMarketplaceFortune 500

Properties

Name Type Description
listingStructurePolicies array Returns a list of category IDs plus a flag indicating whether or not each listed category supports item variations.
warnings array A list of the warnings that were generated as a result of the request. This field is not returned if no warnings were generated by the request.
View JSON Schema on GitHub

JSON Schema

ebay-listingstructurepolicyresponse-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ListingStructurePolicyResponse",
  "title": "ListingStructurePolicyResponse",
  "type": "object",
  "properties": {
    "listingStructurePolicies": {
      "type": "array",
      "description": "Returns a list of category IDs plus a flag indicating whether or not each listed category supports item variations.",
      "items": {
        "$ref": "#/components/schemas/ListingStructurePolicy"
      }
    },
    "warnings": {
      "type": "array",
      "description": "A list of the warnings that were generated as a result of the request. This field is not returned if no warnings were generated by the request.",
      "items": {
        "$ref": "#/components/schemas/Error"
      }
    }
  }
}