Advance Auto Parts · Schema
Product
An automotive part or product.
AutomotiveE-CommerceParts CatalogRetailSupply ChainFortune 500
Properties
| Name | Type | Description |
|---|---|---|
| id | string | Product SKU. |
| name | string | Product name. |
| partNumber | string | Manufacturer part number. |
| brand | string | Brand name. |
| description | string | Product description. |
| price | number | Current retail price. |
| available | boolean | Whether available. |
| categoryId | string | Product category identifier. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"title": "Product",
"description": "An automotive part or product.",
"type": "object",
"properties": {
"id": {
"type": "string",
"description": "Product SKU.",
"example": "SKU-123456"
},
"name": {
"type": "string",
"description": "Product name.",
"example": "Duralast Gold Brake Pad Set"
},
"partNumber": {
"type": "string",
"description": "Manufacturer part number.",
"example": "MKD1083"
},
"brand": {
"type": "string",
"description": "Brand name.",
"example": "Duralast Gold"
},
"description": {
"type": "string",
"description": "Product description."
},
"price": {
"type": "number",
"description": "Current retail price.",
"example": 54.99
},
"available": {
"type": "boolean",
"description": "Whether available.",
"example": true
},
"categoryId": {
"type": "string",
"description": "Product category identifier.",
"example": "brake-pads"
}
}
}