Oracle E-Business Suite · Schema
ApInvoiceLine
Business ApplicationsE-Business SuiteEnterpriseERPOracle
Properties
| Name | Type | Description |
|---|---|---|
| lineNumber | integer | Invoice line number |
| lineType | string | Line type lookup code |
| amount | number | Line amount |
| description | string | Line description |
| accountingDate | string | |
| distCodeCombinationId | integer | Distribution account code combination ID |
| itemDescription | string | |
| quantity | number | |
| unitPrice | number |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"title": "ApInvoiceLine",
"type": "object",
"properties": {
"lineNumber": {
"type": "integer",
"description": "Invoice line number"
},
"lineType": {
"type": "string",
"description": "Line type lookup code"
},
"amount": {
"type": "number",
"description": "Line amount"
},
"description": {
"type": "string",
"description": "Line description"
},
"accountingDate": {
"type": "string"
},
"distCodeCombinationId": {
"type": "integer",
"description": "Distribution account code combination ID"
},
"itemDescription": {
"type": "string"
},
"quantity": {
"type": "number"
},
"unitPrice": {
"type": "number"
}
}
}