{ "$schema": "http://json-schema.org/draft-07/schema#", "$id": "https://raw.githubusercontent.com/api-evangelist/verifone/refs/heads/main/json-schema/paypal-ecommerce-api-description.json", "title": "description", "description": "description from PayPal eComm API", "required": [ "op" ], "type": "object", "properties": { "op": { "type": "string", "description": "The remove operation does not require a value", "enum": [ "add", "remove", "replace" ] }, "value": { "maxLength": 256, "minLength": 1, "type": "string", "description": "The product description" } } }