changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "$schema": "http://json-schema.org/draft-07/schema#",
+ "additionalProperties": false,
+ "properties": {
+ "data": {
+ "description": "One row per Stripe invoice — id, number, amount, currency, status, period and the hosted invoice / PDF links.",
+ "items": {},
+ "type": "array"
+ },
+ "meta": {
+ "additionalProperties": true,
+ "description": "Pagination for the list — page, limit and the total row count.",
+ "properties": {
+ "limit": {
+ "description": "Maximum rows per page.",
+ "type": "number"
+ },
+ "page": {
+ "description": "Zero-based index of the page returned.",
+ "type": "number"
+ },
+ "total": {
+ "description": "Total rows matching the query across all pages.",
+ "type": "number"
+ }
+ },
+ "type": "object"
+ },
+ "success": {
+ "description": "True when the call succeeded. A failure comes back as an error result instead.",
+ "type": "boolean"
+ }
+ },
+ "required": [
+ "success"
+ ],
+ "type": "object"
+}