InventoryPosition

Properties

Name Type Description
itemId string
locationId string
locationName string
onHand number
reserved number
available number
onOrder number
updatedAt string
View JSON Schema on GitHub

JSON Schema

manhattan-associates-inventoryposition-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/InventoryPosition",
  "title": "InventoryPosition",
  "type": "object",
  "properties": {
    "itemId": {
      "type": "string"
    },
    "locationId": {
      "type": "string"
    },
    "locationName": {
      "type": "string"
    },
    "onHand": {
      "type": "number"
    },
    "reserved": {
      "type": "number"
    },
    "available": {
      "type": "number"
    },
    "onOrder": {
      "type": "number"
    },
    "updatedAt": {
      "type": "string",
      "format": "date-time"
    }
  }
}