changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "properties": {
+ "currency": {
+ "description": "ISO currency of all prices in the series.",
+ "type": "string"
+ },
+ "days": {
+ "description": "One entry per day; recording started 2026-07-27, earlier days are absent.",
+ "items": {
+ "properties": {
+ "date": {
+ "description": "Day, formatted yyyy-MM-dd.",
+ "type": "string"
+ },
+ "min": {
+ "description": "Lowest valid price that day in minor units (cents/rappen); null when no shop had a valid price.",
+ "type": [
+ "integer",
+ "null"
+ ]
+ },
+ "observed": {
+ "description": "True when a price was directly observed that day; false when carried forward from a previous observation.",
+ "type": "boolean"
+ },
+ "shops": {
+ "description": "Shops with a valid price that day.",
+ "type": "integer"
+ }
+ },
+ "required": [
+ "date",
+ "min",
+ "shops",
+ "observed"
+ ],
+ "type": "object"
+ },
+ "type": "array"
+ }
+ },
+ "required": [
+ "currency",
+ "days"
+ ],
+ "type": "object"
+}