Coupa · Schema
InvoiceUpdate
Schema for updating an invoice
BSMBusiness Spend ManagementCloud PlatformEnterpriseFinancial ManagementInvoicingProcurementSupply Chain
Properties
| Name | Type | Description |
|---|---|---|
| invoice-date | string | |
| payment-term | object | |
| bill-to-address | object | |
| ship-to-address | object | |
| tax-amount | number | |
| discount-amount | number | |
| shipping-amount | number | |
| handling-amount | number | |
| line-level-taxation | boolean | |
| invoice-lines | array | |
| exported | boolean |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/InvoiceUpdate",
"title": "InvoiceUpdate",
"type": "object",
"description": "Schema for updating an invoice",
"properties": {
"invoice-date": {
"type": "string",
"format": "date-time"
},
"payment-term": {
"$ref": "#/components/schemas/PaymentTermReference"
},
"bill-to-address": {
"$ref": "#/components/schemas/AddressReference"
},
"ship-to-address": {
"$ref": "#/components/schemas/AddressReference"
},
"tax-amount": {
"type": "number",
"format": "decimal"
},
"discount-amount": {
"type": "number",
"format": "decimal"
},
"shipping-amount": {
"type": "number",
"format": "decimal"
},
"handling-amount": {
"type": "number",
"format": "decimal"
},
"line-level-taxation": {
"type": "boolean"
},
"invoice-lines": {
"type": "array",
"items": {
"$ref": "#/components/schemas/InvoiceLine"
}
},
"exported": {
"type": "boolean"
}
}
}