BigCommerce · Schema

StoredPayPalAccount

E-CommerceRetailCatalogOrdersCheckoutPaymentsSaaS

Properties

Name Type Description
type string Type to classify this payment instrument (required)
token string Identifier representing this stored PayPal account (required)
View JSON Schema on GitHub

JSON Schema

bigcommerce-storedpaypalaccount-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/StoredPayPalAccount",
  "title": "StoredPayPalAccount",
  "type": "object",
  "x-internal": false,
  "properties": {
    "type": {
      "type": "string",
      "description": "Type to classify this payment instrument (required)",
      "enum": [
        "stored_paypal_account"
      ]
    },
    "token": {
      "description": "Identifier representing this stored PayPal account (required)",
      "type": "string",
      "minLength": 64,
      "maxLength": 64
    }
  },
  "x-examples": {
    "example-1": {
      "type": "stored_paypal_account",
      "token": "stringstringstringstringstringstringstringstringstringstringstri"
    }
  }
}