changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "properties": {
+ "checkout_url": {
+ "description": "Cart page URL for the human.",
+ "type": "string"
+ },
+ "currency": {
+ "type": "string"
+ },
+ "error": {
+ "description": "Present instead of a cart when the call failed (bad index, unavailable size, ...).",
+ "type": "string"
+ },
+ "items": {
+ "description": "Cart lines in index order — this index is what set_cart_quantity/cart_update/cart_remove take.",
+ "items": {
+ "properties": {
+ "code": {
+ "type": "string"
+ },
+ "currency": {
+ "type": "string"
+ },
+ "custom": {
+ "description": "True when the line is a user-generated custom print.",
+ "type": "boolean"
+ },
+ "fabric": {
+ "type": "string"
+ },
+ "good_id": {
+ "type": "integer"
+ },
+ "price": {
+ "type": "number"
+ },
+ "product": {
+ "type": "string"
+ },
+ "qty": {
+ "type": "integer"
+ },
+ "size": {
+ "type": "string"
+ },
+ "title": {
+ "type": "string"
+ }
+ },
+ "type": "object"
+ },
+ "type": "array"
+ },
+ "subtotal": {
+ "description": "Sum of price x qty over all lines, USD.",
+ "type": "number"
+ }
+ },
+ "type": "object"
+}