{ "$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" }