Unified.to · Schema

CommerceItemvariant

IntegrationsUnified API

Properties

Name Type Description
available_at string
created_at string
description string
height number
id string
inventory_id string
is_active boolean
is_featured boolean
is_visible boolean
items object
length number
media object
metadata object
name string
options object
prices object
public_description string
public_name string
raw object
requires_shipping boolean
size_unit string
sku string
tags object
total_stock number
updated_at string
weight number
weight_unit string
width number
View JSON Schema on GitHub

JSON Schema

unified-to-commerceitemvariant-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/CommerceItemvariant",
  "title": "CommerceItemvariant",
  "properties": {
    "available_at": {
      "format": "date-time",
      "type": "string"
    },
    "created_at": {
      "format": "date-time",
      "type": "string"
    },
    "description": {
      "type": "string"
    },
    "height": {
      "type": "number"
    },
    "id": {
      "type": "string"
    },
    "inventory_id": {
      "type": "string"
    },
    "is_active": {
      "type": "boolean"
    },
    "is_featured": {
      "type": "boolean"
    },
    "is_visible": {
      "type": "boolean"
    },
    "items": {
      "$ref": "#/components/schemas/property_CommerceItemvariant_items"
    },
    "length": {
      "type": "number"
    },
    "media": {
      "$ref": "#/components/schemas/property_CommerceItemvariant_media"
    },
    "metadata": {
      "$ref": "#/components/schemas/property_CommerceItemvariant_metadata"
    },
    "name": {
      "type": "string"
    },
    "options": {
      "$ref": "#/components/schemas/property_CommerceItemvariant_options"
    },
    "prices": {
      "$ref": "#/components/schemas/property_CommerceItemvariant_prices"
    },
    "public_description": {
      "type": "string"
    },
    "public_name": {
      "type": "string"
    },
    "raw": {
      "additionalProperties": true,
      "type": "object"
    },
    "requires_shipping": {
      "type": "boolean"
    },
    "size_unit": {
      "enum": [
        "cm",
        "inch"
      ],
      "type": "string",
      "x-speakeasy-unknown-values": "allow"
    },
    "sku": {
      "type": "string"
    },
    "tags": {
      "$ref": "#/components/schemas/property_CommerceItemvariant_tags"
    },
    "total_stock": {
      "type": "number"
    },
    "updated_at": {
      "format": "date-time",
      "type": "string"
    },
    "weight": {
      "type": "number"
    },
    "weight_unit": {
      "enum": [
        "g",
        "kg",
        "oz",
        "lb"
      ],
      "type": "string",
      "x-speakeasy-unknown-values": "allow"
    },
    "width": {
      "type": "number"
    }
  },
  "type": "object"
}