changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "$schema": "http://json-schema.org/draft-07/schema#",
+ "additionalProperties": false,
+ "properties": {
+ "currency": {
+ "description": "ISO 4217 currency code (EUR, USD, GBP or CHF).",
+ "type": "string"
+ },
+ "due_date": {
+ "description": "Due date, YYYY-MM-DD.",
+ "type": "string"
+ },
+ "gross_total": {
+ "description": "Total incl. VAT, in the document currency.",
+ "type": "number"
+ },
+ "id": {
+ "description": "Quote UUID.",
+ "type": "string"
+ },
+ "invoice_number": {
+ "description": "Quote number (own series).",
+ "type": "string"
+ },
+ "issue_date": {
+ "description": "Issue date, YYYY-MM-DD.",
+ "type": "string"
+ },
+ "net_total": {
+ "description": "Total excl. VAT, in the document currency.",
+ "type": "number"
+ },
+ "status": {
+ "description": "Document status: Draft, Sent, Paid, Overdue, Cancelled, Rectified, Accepted, Rejected or Expired.",
+ "type": "string"
+ },
+ "tax_total": {
+ "description": "VAT amount, in the document currency.",
+ "type": "number"
+ },
+ "type": {
+ "description": "Document type: invoice, credit_note, provision or quote.",
+ "type": "string"
+ },
+ "valid_until": {
+ "anyOf": [
+ {
+ "type": "string"
+ },
+ {
+ "type": "null"
+ }
+ ],
+ "description": "Validity limit, YYYY-MM-DD."
+ }
+ },
+ "required": [
+ "id",
+ "invoice_number",
+ "type",
+ "status",
+ "issue_date",
+ "due_date",
+ "valid_until",
+ "currency",
+ "net_total",
+ "tax_total",
+ "gross_total"
+ ],
+ "type": "object"
+}