Receipt

Properties

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

JSON Schema

manhattan-associates-receipt-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/Receipt",
  "title": "Receipt",
  "type": "object",
  "properties": {
    "receiptId": {
      "type": "string"
    },
    "externalASNId": {
      "type": "string"
    },
    "facilityId": {
      "type": "string"
    },
    "supplierId": {
      "type": "string"
    },
    "status": {
      "type": "string",
      "enum": [
        "expected",
        "in_progress",
        "completed",
        "closed"
      ]
    },
    "expectedArrivalDate": {
      "type": "string",
      "format": "date"
    },
    "lines": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/ReceiptLine"
      }
    },
    "createdAt": {
      "type": "string",
      "format": "date-time"
    }
  }
}