eBay · Schema
HazardousMaterialsLabels
A type that defines the hazardous materials labels for an item.
AuctionsCommerceProductsMarketplaceFortune 500
Properties
| Name | Type | Description |
|---|---|---|
| additionalInformation | string | Additional information about the hazardous materials labels. |
| pictograms | array | An array of hazard pictograms that apply to the item. |
| signalWord | string | The signal word for the hazardous materials label (such as Danger or Warning). |
| signalWordId | string | The ID of the signal word for the hazardous materials label. |
| statements | array | An array of hazard statements for the item. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/HazardousMaterialsLabels",
"title": "HazardousMaterialsLabels",
"type": "object",
"properties": {
"additionalInformation": {
"type": "string",
"description": "Additional information about the hazardous materials labels."
},
"pictograms": {
"type": "array",
"description": "An array of hazard pictograms that apply to the item.",
"items": {
"$ref": "#/components/schemas/HazardPictogram"
}
},
"signalWord": {
"type": "string",
"description": "The signal word for the hazardous materials label (such as Danger or Warning)."
},
"signalWordId": {
"type": "string",
"description": "The ID of the signal word for the hazardous materials label."
},
"statements": {
"type": "array",
"description": "An array of hazard statements for the item.",
"items": {
"$ref": "#/components/schemas/HazardStatement"
}
}
},
"description": "A type that defines the hazardous materials labels for an item."
}