addedInput schema / properties / offset
Added value: +{
+ "default": 0,
+ "description": "Entries to skip before the returned page, for reading past a truncated result. Repeat the same call with the nextOffset value the previous one reported. Applies to browsing and to a query with many matches alike; the order is stable, so every entry is reachable by paging.",
+ "maximum": 9007199254740991,
+ "minimum": 0,
+ "type": "integer"
+}
addedOutput schema / properties / nextOffset
Added value: +{
+ "description": "The offset to pass on an otherwise identical call to read the next page. Absent on the last page.",
+ "type": "number"
+}
changedOutput schema / properties / notice / description
Previous value: -"How to reach the entries beyond the cap when a browse was capped."New value: +"How to reach the entries this page left out."
changedOutput schema / properties / shown / description
Previous value: -"Number of entries returned when the cap was hit."New value: +"Entries in the returned page."
changedOutput schema / properties / snapshotDate / description
Previous value: -"Date the bundled reference snapshot was captured, so callers know the data vintage."New value: +"Date the reference data in this response was captured, so callers know its vintage — the day the live refresh ran when source is \"live\", the bundled snapshot's own capture date when source is \"bundled\". Read it together with source: the same date can mean either a fresh fetch or a freshly cut bundle."
addedOutput schema / properties / source
Added value: +{
+ "description": "Where these entries came from. \"live\" — a startup refresh from Open Charge Map returned a complete set and is what is being served. \"bundled\" — the snapshot shipped with the server is being served, either because the refresh is switched off or because it failed and the server fell back to the bundle.",
+ "enum": [
+ "live",
+ "bundled"
+ ],
+ "type": "string"
+}
changedOutput schema / properties / totalCount / description
Previous value: -"Number of entries returned."New value: +"Entries matching before the offset/limit page was taken — the whole category when browsing, every match when a query was given."
changedOutput schema / properties / truncated / description
Previous value: -"True when a browse was capped at limit."New value: +"True when matching entries were left out of the returned page."
changedOutput schema / required
Previous value: -[
- "category",
- "matches",
- "snapshotDate",
- "attribution",
- "totalCount"
-]New value: +[
+ "category",
+ "matches",
+ "snapshotDate",
+ "source",
+ "attribution",
+ "totalCount"
+]