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