Verifone · Schema

description

description from PayPal eComm API

PaymentsPOSTerminal ManagementeCommerceFinTechPayment ProcessingOmnichannel

Properties

Name Type Description
op string The remove operation does not require a value
value string The product description
View JSON Schema on GitHub

JSON Schema

paypal-ecommerce-api-description.json Raw ↑
{
  "$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"
    }
  }
}