Properties
| Name | Type | Description |
|---|---|---|
| items | array | |
| paymentSystem | string | |
| paymentSystemName | string | |
| paymentSystemGroup | string | |
| paymentAccountId | string | |
| addressId | string | |
| addressType | string |
JSON Schema
{
"$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
}