{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/InvoiceResponse", "title": "InvoiceResponse", "type": "object", "properties": { "invoiceId": { "type": "string", "description": "Xero Identifier of invoice", "format": "uuid" }, "contact": { "$ref": "#/components/schemas/ContactResponse" }, "total": { "type": "number", "description": "Total of Invoice tax inclusive (i.e. SubTotal + TotalTax); Not included in summary mode", "format": "double", "x-is-money": true }, "lineItems": { "type": "array", "items": { "$ref": "#/components/schemas/LineItemResponse" }, "description": "Not included in summary mode" } }, "additionalProperties": false }