Oracle E-Business Suite · Schema
OnhandQuantity
Business ApplicationsE-Business SuiteEnterpriseERPOracle
Properties
| Name | Type | Description |
|---|---|---|
| inventoryItemId | integer | Inventory item identifier |
| organizationId | integer | Organization identifier |
| subinventoryCode | string | Subinventory code |
| locatorId | integer | Locator identifier |
| lotNumber | string | Lot number |
| serialNumber | string | Serial number |
| transactionQuantity | number | On-hand quantity |
| transactionUomCode | string | Unit of measure code |
| lastUpdateDate | string |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/OnhandQuantity",
"title": "OnhandQuantity",
"type": "object",
"properties": {
"inventoryItemId": {
"type": "integer",
"description": "Inventory item identifier",
"example": "500123"
},
"organizationId": {
"type": "integer",
"description": "Organization identifier",
"example": "500123"
},
"subinventoryCode": {
"type": "string",
"description": "Subinventory code",
"example": "example_value"
},
"locatorId": {
"type": "integer",
"description": "Locator identifier",
"example": "500123"
},
"lotNumber": {
"type": "string",
"description": "Lot number",
"example": "example_value"
},
"serialNumber": {
"type": "string",
"description": "Serial number",
"example": "example_value"
},
"transactionQuantity": {
"type": "number",
"format": "double",
"description": "On-hand quantity",
"example": 42.5
},
"transactionUomCode": {
"type": "string",
"description": "Unit of measure code",
"example": "example_value"
},
"lastUpdateDate": {
"type": "string",
"format": "date-time",
"example": "2026-01-15T10:30:00Z"
}
}
}