changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "description": "`unknown_product` means the claim could NOT be checked. It never means the claim is false and must not be reported as one.",
+ "properties": {
+ "betterBy": {
+ "description": "Saving from taking `cheapest` over the claimed price. Never negative.",
+ "type": [
+ "number",
+ "null"
+ ]
+ },
+ "cheapest": {
+ "properties": {
+ "currency": {
+ "type": "string"
+ },
+ "inStock": {
+ "type": "boolean"
+ },
+ "price": {
+ "type": "number"
+ },
+ "provider": {
+ "type": "string"
+ },
+ "retailer": {
+ "description": "Shopper-facing retailer name.",
+ "type": "string"
+ },
+ "url": {
+ "type": "string"
+ }
+ },
+ "type": [
+ "object",
+ "null"
+ ]
+ },
+ "claimMatched": {
+ "properties": {
+ "currency": {
+ "type": "string"
+ },
+ "inStock": {
+ "type": "boolean"
+ },
+ "price": {
+ "type": "number"
+ },
+ "provider": {
+ "type": "string"
+ },
+ "retailer": {
+ "description": "Shopper-facing retailer name.",
+ "type": "string"
+ },
+ "url": {
+ "type": "string"
+ }
+ },
+ "type": [
+ "object",
+ "null"
+ ]
+ },
+ "disclosure": {
+ "description": "Affiliate disclosure to relay once per answer. Outbound links are tracked at no extra cost to the buyer.",
+ "type": "string"
+ },
+ "lastConfirmedAt": {
+ "description": "When WEM last read these offers — the freshness of this answer.",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "offers": {
+ "items": {
+ "properties": {
+ "currency": {
+ "type": "string"
+ },
+ "inStock": {
+ "type": "boolean"
+ },
+ "price": {
+ "type": "number"
+ },
+ "provider": {
+ "type": "string"
+ },
+ "retailer": {
+ "description": "Shopper-facing retailer name.",
+ "type": "string"
+ },
+ "url": {
+ "type": "string"
+ }
+ },
+ "type": [
+ "object",
+ "null"
+ ]
+ },
+ "type": "array"
+ },
+ "product": {
+ "properties": {
+ "slug": {
+ "type": "string"
+ },
+ "title": {
+ "type": "string"
+ }
+ },
+ "type": [
+ "object",
+ "null"
+ ]
+ },
+ "resolvedBy": {
+ "description": "Which identifier resolved the product — gtin is strongest, title weakest.",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "source": {
+ "type": "string"
+ },
+ "summary": {
+ "description": "Written so quoting it verbatim is accurate. Prefer quoting it to paraphrasing the verdict code.",
+ "type": "string"
+ },
+ "toleranceApplied": {
+ "type": [
+ "number",
+ "null"
+ ]
+ },
+ "verdict": {
+ "enum": [
+ "confirmed",
+ "price_moved",
+ "not_at_retailer",
+ "no_claim",
+ "unknown_product"
+ ],
+ "type": "string"
+ }
+ },
+ "required": [
+ "verdict",
+ "offers",
+ "summary",
+ "source",
+ "disclosure"
+ ],
+ "type": "object"
+}