# Subscription-RetrySchedule

Defines a custom schedule for retrying failed subscription payments. Each entry in the array specifies how long to wait before attempting the next payment retry. If not specified, the system's default retry schedule will be used.

* Array \[

**interval**stringrequired

The unit of time to wait before the retry attempt.

| Enum Value | Description |
| ---------- | ----------- |
| day        | Daily       |
| week       | Weekly      |
| month      | Monthly     |
| year       | Yearly      |

**Possible values:** \[`day`, `week`, `month`, `year`]

**Example:<!-- -->&#x20;**`day`

**intervalCount**int32required

The number of intervals to wait before the retry attempt.

**Possible values:** `>= 1` and `<= 31`

**Example:<!-- -->&#x20;**`3`

* ]

Subscription-RetrySchedule

```
[

  {

    "interval": "day",

    "intervalCount": 1

  },

  {

    "interval": "day",

    "intervalCount": 3

  },

  {

    "interval": "week",

    "intervalCount": 1

  }

]
```
