{ "$schema": "https://json-schema.org/draft/2020-12/schema", "title": "CustomerInvoice", "type": "object", "properties": { "id": { "type": "string" }, "descriptor": { "type": "string" }, "invoiceNumber": { "type": "string" }, "invoiceDate": { "type": "string" }, "dueDate": { "type": "string" }, "totalAmount": { "type": "number" }, "status": { "type": "string" } } }