{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/AttributeNameValue", "title": "AttributeNameValue", "type": "object", "properties": { "name": { "type": "string", "description": "The name of the product attribute, such as Make, Model, Year, etc." }, "value": { "type": "string", "description": "The value for the name attribute, such as BMW, R1200GS, 2011, etc." } }, "description": "The type the defines attribute name/value pair fields that specify a product. The type of data depends on the context. For example, if you were using this to specify a specific vehicle, the attribute names would be Make, Model, Year, etc." }