Verifone · Schema

Model30

Model30 from PayPal eComm API

PaymentsPOSTerminal ManagementeCommerceFinTechPayment ProcessingOmnichannel

Properties

Name Type Description
id string The ID of the agreement.
state string The state of the agreement.
description string The description of the agreement.
merchant object
payer object
plan object
createTime string The date and time when the agreement was created.
updateTime string The date and time when the agreement was updated.
View JSON Schema on GitHub

JSON Schema

paypal-ecommerce-api-model30.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-model30.json",
  "title": "Model30",
  "description": "Model30 from PayPal eComm API",
  "required": [
    "createTime",
    "id",
    "state"
  ],
  "type": "object",
  "properties": {
    "id": {
      "type": "string",
      "description": "The ID of the agreement."
    },
    "state": {
      "type": "string",
      "description": "The state of the agreement."
    },
    "description": {
      "type": "string",
      "description": "The description of the agreement."
    },
    "merchant": {
      "$ref": "#/components/schemas/merchant"
    },
    "payer": {
      "$ref": "#/components/schemas/payer"
    },
    "plan": {
      "$ref": "#/components/schemas/plan"
    },
    "createTime": {
      "type": "string",
      "description": "The date and time when the agreement was created."
    },
    "updateTime": {
      "type": "string",
      "description": "The date and time when the agreement was updated."
    }
  }
}