ReceiptCreateRequest

Properties

Name Type Description
externalASNId string
facilityId string
supplierId string
expectedArrivalDate string
lines array
View JSON Schema on GitHub

JSON Schema

manhattan-associates-receiptcreaterequest-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ReceiptCreateRequest",
  "title": "ReceiptCreateRequest",
  "type": "object",
  "required": [
    "facilityId",
    "supplierId",
    "lines"
  ],
  "properties": {
    "externalASNId": {
      "type": "string"
    },
    "facilityId": {
      "type": "string"
    },
    "supplierId": {
      "type": "string"
    },
    "expectedArrivalDate": {
      "type": "string",
      "format": "date"
    },
    "lines": {
      "type": "array",
      "minItems": 1,
      "items": {
        "$ref": "#/components/schemas/ReceiptLineRequest"
      }
    }
  }
}