{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/Aspect", "title": "Aspect", "type": "object", "properties": { "localizedName": { "type": "string", "description": "The text representing the name of the aspect for the name/value pair, such as Brand." }, "localizedValues": { "type": "array", "description": "The text representing the value of the aspect for the name/value pair, such as Apple.", "items": { "type": "string" } } }, "description": "The type that defines the fields for the name/value pairs for the aspects of the product. For example: BRAND/Apple" }