ReceiptLineRequest

Properties

Name Type Description
itemId string
expectedQuantity number
uom string
lotNumber string
View JSON Schema on GitHub

JSON Schema

manhattan-associates-receiptlinerequest-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ReceiptLineRequest",
  "title": "ReceiptLineRequest",
  "type": "object",
  "required": [
    "itemId",
    "expectedQuantity"
  ],
  "properties": {
    "itemId": {
      "type": "string"
    },
    "expectedQuantity": {
      "type": "number"
    },
    "uom": {
      "type": "string"
    },
    "lotNumber": {
      "type": "string"
    }
  }
}