{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/CompatibilityPayload",
"title": "CompatibilityPayload",
"type": "object",
"properties": {
"compatibilityProperties": {
"type": "array",
"description": "An array of attribute name/value pairs used to define a specific product. For example: If you wanted to specify a specific car, one of the name/value pairs would be
\"name\" : \"Year\",
\"value\" : \"2019\"
For a list of the attributes required for cars and trucks and motorcycles see Check compatibility in the Buy Integration Guide.",
"items": {
"$ref": "#/components/schemas/AttributeNameValue"
}
}
},
"description": "An array of attribute name/value pairs used to define a specific product. For example: If you wanted to specify a specific car, one of the name/value pairs would be:
\"name\" : \"Year\",
\"value\" : \"2019\"
For a list of the attributes required for cars and trucks and motorcycles refer to Check compatibility in the Buying Integration Guide."
}