Oracle E-Business Suite · Schema
RequisitionLine
Business ApplicationsE-Business SuiteEnterpriseERPOracle
Properties
| Name | Type | Description |
|---|---|---|
| requisitionLineId | integer | |
| lineNum | integer | |
| itemId | integer | |
| itemDescription | string | |
| categoryId | integer | |
| quantity | number | |
| unitMeasLookupCode | string | |
| unitPrice | number | |
| needByDate | string | |
| suggestedVendorId | integer |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/RequisitionLine",
"title": "RequisitionLine",
"type": "object",
"properties": {
"requisitionLineId": {
"type": "integer",
"example": "500123"
},
"lineNum": {
"type": "integer",
"example": 10
},
"itemId": {
"type": "integer",
"example": "500123"
},
"itemDescription": {
"type": "string",
"example": "example_value"
},
"categoryId": {
"type": "integer",
"example": "500123"
},
"quantity": {
"type": "number",
"format": "double",
"example": 42.5
},
"unitMeasLookupCode": {
"type": "string",
"example": "example_value"
},
"unitPrice": {
"type": "number",
"format": "double",
"example": 42.5
},
"needByDate": {
"type": "string",
"format": "date",
"example": "2026-01-15"
},
"suggestedVendorId": {
"type": "integer",
"example": "500123"
}
}
}