changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "$schema": "http://json-schema.org/draft-07/schema#",
+ "additionalProperties": false,
+ "properties": {
+ "brands": {
+ "items": {
+ "additionalProperties": false,
+ "properties": {
+ "about": {
+ "type": "string"
+ },
+ "categories": {
+ "items": {
+ "type": "string"
+ },
+ "type": "array"
+ },
+ "countryOfOrigin": {
+ "type": "string"
+ },
+ "domains": {
+ "items": {
+ "type": "string"
+ },
+ "type": "array"
+ },
+ "genders": {
+ "items": {
+ "type": "string"
+ },
+ "type": "array"
+ },
+ "materials": {
+ "items": {
+ "type": "string"
+ },
+ "type": "array"
+ },
+ "name": {
+ "type": "string"
+ },
+ "priceTier": {
+ "type": "string"
+ },
+ "shipsFromCountries": {
+ "items": {
+ "type": "string"
+ },
+ "type": "array"
+ },
+ "similarityScore": {
+ "type": "number"
+ },
+ "styles": {
+ "items": {
+ "type": "string"
+ },
+ "type": "array"
+ }
+ },
+ "required": [
+ "name"
+ ],
+ "type": "object"
+ },
+ "type": "array"
+ }
+ },
+ "required": [
+ "brands"
+ ],
+ "type": "object"
+}