ReceiptLine

Properties

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

JSON Schema

manhattan-associates-receiptline-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ReceiptLine",
  "title": "ReceiptLine",
  "type": "object",
  "properties": {
    "lineId": {
      "type": "string"
    },
    "itemId": {
      "type": "string"
    },
    "expectedQuantity": {
      "type": "number"
    },
    "receivedQuantity": {
      "type": "number"
    },
    "uom": {
      "type": "string"
    },
    "lotNumber": {
      "type": "string"
    },
    "expirationDate": {
      "type": "string",
      "format": "date"
    }
  }
}