{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/CartItemCount", "title": "CartItemCount", "type": "object", "properties": { "id": { "description": "Not allowed on create.", "type": "string", "nullable": true }, "type": { "type": "string", "enum": [ "cart_item_count" ] }, "properties": { "$ref": "#/components/schemas/CartItemCountProperties" } }, "required": [ "type" ] }