Oracle Fusion Cloud Applications · Schema
InventoryTransactionCreate
CloudCXEnterpriseEPMERPHCMProject ManagementREST APISaaSSCM
Properties
| Name | Type | Description |
|---|---|---|
| TransactionType | string | |
| OrganizationCode | string | |
| ItemNumber | string | |
| Subinventory | string | |
| Locator | string | |
| Quantity | number | |
| UnitOfMeasure | string | |
| LotNumber | string | |
| SerialNumber | string |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/InventoryTransactionCreate",
"title": "InventoryTransactionCreate",
"type": "object",
"required": [
"TransactionType",
"OrganizationCode",
"ItemNumber",
"Subinventory",
"Quantity",
"UnitOfMeasure"
],
"properties": {
"TransactionType": {
"type": "string"
},
"OrganizationCode": {
"type": "string"
},
"ItemNumber": {
"type": "string"
},
"Subinventory": {
"type": "string"
},
"Locator": {
"type": "string"
},
"Quantity": {
"type": "number",
"format": "double"
},
"UnitOfMeasure": {
"type": "string"
},
"LotNumber": {
"type": "string"
},
"SerialNumber": {
"type": "string"
}
}
}