{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/CompatibleProduct",
"title": "CompatibleProduct",
"type": "object",
"properties": {
"compatibilityProperties": {
"type": "array",
"description": "This container consists of an array of motor vehicles that are compatible with the motor vehicle part or accessory specified by the SKU value in the call URI. Each motor vehicle is defined through a separate set of name/value pairs. In the name field, the vehicle aspect (such as 'make', 'model', 'year', 'trim', or 'engine') will be identified, and the value field will be used to identify the value of each aspect.
The getCompatibilityProperties method of the Taxonomy API can be used to retrieve applicable vehicle aspect names for a specified category, and the getCompatibilityPropertyValues method of the Taxonomy API can be used to retrieve possible values for these same vehicle aspect names.
Below is an example of identifying one motor vehicle using the compatibilityProperties container:"compatibilityProperties" : [
{
"name" : "make",
"value" : "Subaru"
},
{
"name" : "model",
"value" : "GL"
},
{
"name" : "year",
"value" : "1983"
},
{
"name" : "trim",
"value" : "Base Wagon 4-Door"
},
{
"name" : "engine",
"value" : "1.8L Turbocharged"
}
]
Typically, the make, model, and year of the motor vehicle are always required, with the trim and engine being necessary sometimes, but it will be dependent on the part or accessory, and on the vehicle class.
Note: The productFamilyProperties container is deprecated and should no longer be used. The compatibilityProperties container should be used instead.",
"items": {
"$ref": "#/components/schemas/NameValueList"
}
},
"notes": {
"type": "string",
"description": "This field is used by the seller to input any notes pertaining to the compatible vehicle list being defined. The seller might use this field to specify the placement of the part on a vehicle or other applicable information.
This field will only be returned if specified by the seller.
Max Length: 500
"
},
"productFamilyProperties": {
"description": "
Important! The productFamilyProperties container is deprecated and should no longer be used. The compatibilityProperties container should be used instead.