TransferRequest

Properties

Name Type Description
facilityId string
fromLocationId string
toLocationId string
lines array
View JSON Schema on GitHub

JSON Schema

manhattan-associates-transferrequest-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/TransferRequest",
  "title": "TransferRequest",
  "type": "object",
  "required": [
    "facilityId",
    "fromLocationId",
    "toLocationId",
    "lines"
  ],
  "properties": {
    "facilityId": {
      "type": "string"
    },
    "fromLocationId": {
      "type": "string"
    },
    "toLocationId": {
      "type": "string"
    },
    "lines": {
      "type": "array",
      "minItems": 1,
      "items": {
        "type": "object",
        "required": [
          "itemId",
          "quantity"
        ],
        "properties": {
          "itemId": {
            "type": "string"
          },
          "quantity": {
            "type": "number"
          },
          "lotNumber": {
            "type": "string"
          }
        }
      }
    }
  }
}