eBay · Schema

Regulatory

Type defining regulatory information that the seller is required to disclose.

AuctionsCommerceProductsMarketplaceFortune 500

Properties

Name Type Description
economicOperator object This container provides Economic Operator (EO) information about the manufacturer and/or supplier of the item. The EO is a corporate entity that is related to, has some responsibility for, the product
energyEfficiencyLabel object This container provides information about the energy efficiency for certain durable goods.
hazmat object This container is used by the seller to provide hazardous material information for the listing.

Three elements are required to complete the Hazmat section of a listing:
  • Pictograms
repairScore number This field represents the repair index for the listing.

The repair index identifies the manufacturer's repair score for a product (i.e., how easy is it to repair the product.) This field is a f
View JSON Schema on GitHub

JSON Schema

ebay-regulatory-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/Regulatory",
  "title": "Regulatory",
  "type": "object",
  "properties": {
    "economicOperator": {
      "description": "This container provides Economic Operator (EO) information about the manufacturer and/or supplier of the item. The EO is a corporate entity that is related to, has some responsibility for, the product being listed for sale. For additional information, see <a href = \"https://www.ebay.com/help/selling/selling/CE-mark-EU?id=5225#operator \" target=\"_blank\">What is an economic operator?</a>",
      "$ref": "#/components/schemas/EconomicOperator"
    },
    "energyEfficiencyLabel": {
      "description": "This container provides information about the energy efficiency for certain durable goods.",
      "$ref": "#/components/schemas/EnergyEfficiencyLabel"
    },
    "hazmat": {
      "description": "This container is used by the seller to provide hazardous material information for the listing.<br><br>Three elements are required to complete the Hazmat section of a listing:<ul><li><b>Pictograms</b></li><li><b>SignalWord</b></li><li><b>Statements</b></li></ul>The fourth element, <b>Component</b>, is optional.",
      "$ref": "#/components/schemas/Hazmat"
    },
    "repairScore": {
      "type": "number",
      "description": "This field represents the repair index for the listing.<br><br>The repair index identifies the manufacturer's repair score for a product (i.e., how easy is it to repair the product.) This field is a floating point value between 0.0 (i.e., difficult to repair,) and 10.0 (i.e., easily repaired.)<br><br><span class=\"tablenote\"><b>Note:</b> <code>0</code> should not be used as a default value, as it implies the product is not repairable.</span><br>The format for <b>repairScore</b> is limited to one decimal place. For example:<ul><li><code>7.9</code> and <code>0.0</code> are both valid scores</li><li><code>5.645</code> and <code>2.10</code> are both invalid scores</li></ul><br><span class=\"tablenote\"><b>Note:</b> Repair score is not applicable to all categories. Use the <a href=\"/api-docs/sell/metadata/resources/marketplace/methods/getExtendedProducerResponsibilityPolicies\" target=\"_blank\">getExtendedProducerResponsibilityPolicies</a> method of the <b>Metadata API</b> to see where repair score is applicable.</span>"
    }
  },
  "description": "Type defining regulatory information that the seller is required to disclose."
}