changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "properties": {
+ "best_offer": {
+ "properties": {
+ "currency": {
+ "type": "string"
+ },
+ "price": {
+ "description": "Lowest current price in minor units (cents/rappen).",
+ "type": "integer"
+ },
+ "shops_count": {
+ "description": "Number of shops currently offering the product.",
+ "type": "integer"
+ }
+ },
+ "required": [
+ "price",
+ "currency",
+ "shops_count"
+ ],
+ "type": [
+ "object",
+ "null"
+ ]
+ },
+ "brand": {
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "gtins": {
+ "description": "GTIN (EAN/UPC) barcodes.",
+ "items": {
+ "type": "string"
+ },
+ "type": "array"
+ },
+ "id": {
+ "description": "Ponito product id.",
+ "type": "string"
+ },
+ "name": {
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "rating": {
+ "description": "Average user rating, 0-5.",
+ "type": [
+ "number",
+ "null"
+ ]
+ },
+ "url": {
+ "description": "Ponito product page listing all offers in the country.",
+ "type": "string"
+ }
+ },
+ "required": [
+ "id",
+ "name",
+ "brand",
+ "gtins",
+ "rating",
+ "best_offer",
+ "url"
+ ],
+ "type": "object"
+}