Unified.to · Schema

CommerceInventory

IntegrationsUnified API

Properties

Name Type Description
available number
id string
item_id string
item_option_id string
item_variant_id string
location_id string
raw object
updated_at string
View JSON Schema on GitHub

JSON Schema

unified-to-commerceinventory-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/CommerceInventory",
  "title": "CommerceInventory",
  "properties": {
    "available": {
      "type": "number"
    },
    "id": {
      "type": "string"
    },
    "item_id": {
      "type": "string"
    },
    "item_option_id": {
      "type": "string"
    },
    "item_variant_id": {
      "type": "string"
    },
    "location_id": {
      "type": "string"
    },
    "raw": {
      "additionalProperties": true,
      "type": "object"
    },
    "updated_at": {
      "format": "date-time",
      "type": "string"
    }
  },
  "required": [
    "available"
  ],
  "type": "object"
}