Oracle E-Business Suite · Schema
Requisition
Business ApplicationsE-Business SuiteEnterpriseERPOracle
Properties
| Name | Type | Description |
|---|---|---|
| requisitionHeaderId | integer | Requisition header identifier |
| segment1 | string | Requisition number |
| typeLookupCode | string | Requisition type |
| authorizationStatus | string | Authorization status |
| preparerId | integer | Preparer identifier |
| description | string | Requisition description |
| totalAmount | number | |
| creationDate | string | |
| lines | array | |
| orgId | integer |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"title": "Requisition",
"type": "object",
"properties": {
"requisitionHeaderId": {
"type": "integer",
"description": "Requisition header identifier"
},
"segment1": {
"type": "string",
"description": "Requisition number"
},
"typeLookupCode": {
"type": "string",
"description": "Requisition type"
},
"authorizationStatus": {
"type": "string",
"description": "Authorization status"
},
"preparerId": {
"type": "integer",
"description": "Preparer identifier"
},
"description": {
"type": "string",
"description": "Requisition description"
},
"totalAmount": {
"type": "number"
},
"creationDate": {
"type": "string"
},
"lines": {
"type": "array"
},
"orgId": {
"type": "integer"
}
}
}