VTEX · Schema

SubscriptionCycleContext

CommerceE-CommerceRetailMarketplacePayments

Properties

Name Type Description
items array
paymentSystem string
paymentSystemName string
paymentSystemGroup string
paymentAccountId string
addressId string
addressType string
View JSON Schema on GitHub

JSON Schema

vtex-subscriptioncyclecontext-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/SubscriptionCycleContext",
  "title": "SubscriptionCycleContext",
  "type": "object",
  "properties": {
    "items": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/SubscriptionCycleItemContext"
      },
      "nullable": true
    },
    "paymentSystem": {
      "type": "string",
      "nullable": true
    },
    "paymentSystemName": {
      "type": "string",
      "nullable": true
    },
    "paymentSystemGroup": {
      "type": "string",
      "nullable": true
    },
    "paymentAccountId": {
      "type": "string",
      "nullable": true
    },
    "addressId": {
      "type": "string",
      "nullable": true
    },
    "addressType": {
      "type": "string",
      "nullable": true
    }
  },
  "additionalProperties": false
}