Oracle E-Business Suite · Schema
ApInvoiceCreate
Business ApplicationsE-Business SuiteEnterpriseERPOracle
Properties
| Name | Type | Description |
|---|---|---|
| invoiceNum | string | |
| vendorId | integer | |
| vendorSiteId | integer | |
| invoiceAmount | number | |
| invoiceCurrencyCode | string | |
| invoiceDate | string | |
| invoiceType | string | |
| description | string | |
| termsId | integer | |
| source | string | |
| lines | array |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"title": "ApInvoiceCreate",
"type": "object",
"properties": {
"invoiceNum": {
"type": "string"
},
"vendorId": {
"type": "integer"
},
"vendorSiteId": {
"type": "integer"
},
"invoiceAmount": {
"type": "number"
},
"invoiceCurrencyCode": {
"type": "string"
},
"invoiceDate": {
"type": "string"
},
"invoiceType": {
"type": "string"
},
"description": {
"type": "string"
},
"termsId": {
"type": "integer"
},
"source": {
"type": "string"
},
"lines": {
"type": "array"
}
}
}