changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "$schema": "http://json-schema.org/draft-07/schema#",
+ "additionalProperties": false,
+ "properties": {
+ "collected": {
+ "description": "Gross total of invoices paid within the period (by payment date).",
+ "type": "number"
+ },
+ "collected_count": {
+ "description": "Number of invoices paid within the period.",
+ "maximum": 9007199254740991,
+ "minimum": -9007199254740991,
+ "type": "integer"
+ },
+ "credit_note_total": {
+ "description": "Net effect of credit notes issued within the period (negative or zero).",
+ "type": "number"
+ },
+ "currency_note": {
+ "description": "Caveat about amounts being summed across currencies.",
+ "type": "string"
+ },
+ "draft_count": {
+ "description": "Current number of drafts.",
+ "maximum": 9007199254740991,
+ "minimum": -9007199254740991,
+ "type": "integer"
+ },
+ "invoice_count": {
+ "description": "Documents issued within the period, drafts excluded.",
+ "maximum": 9007199254740991,
+ "minimum": -9007199254740991,
+ "type": "integer"
+ },
+ "outstanding": {
+ "description": "Amount currently due on Sent invoices (point-in-time).",
+ "type": "number"
+ },
+ "outstanding_count": {
+ "description": "Number of Sent invoices.",
+ "maximum": 9007199254740991,
+ "minimum": -9007199254740991,
+ "type": "integer"
+ },
+ "overdue": {
+ "description": "Amount currently due on Overdue invoices (point-in-time).",
+ "type": "number"
+ },
+ "overdue_count": {
+ "description": "Number of Overdue invoices.",
+ "maximum": 9007199254740991,
+ "minimum": -9007199254740991,
+ "type": "integer"
+ },
+ "period": {
+ "additionalProperties": false,
+ "description": "Period the collected/issued figures cover.",
+ "properties": {
+ "from": {
+ "description": "Period start, YYYY-MM-DD.",
+ "type": "string"
+ },
+ "to": {
+ "description": "Period end (inclusive), YYYY-MM-DD.",
+ "type": "string"
+ }
+ },
+ "required": [
+ "from",
+ "to"
+ ],
+ "type": "object"
+ }
+ },
+ "required": [
+ "period",
+ "collected",
+ "collected_count",
+ "outstanding",
+ "outstanding_count",
+ "overdue",
+ "overdue_count",
+ "invoice_count",
+ "draft_count",
+ "credit_note_total",
+ "currency_note"
+ ],
+ "type": "object"
+}