Properties
| Name | Type | Description |
|---|---|---|
| card_token | string | The token of the card that was renewed. |
| exp_month | string | The new expiration month of the card. |
| exp_year | string | The new expiration year of the card. |
| previous_exp_month | string | The previous expiration month of the card. |
| previous_exp_year | string | The previous expiration year of the card. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/card-renewed",
"title": "Card Renewed",
"examples": [
{
"card_token": "00000000-0000-0000-0000-000000000001",
"exp_month": "01",
"exp_year": "2030",
"previous_exp_month": "01",
"previous_exp_year": "2024"
}
],
"properties": {
"card_token": {
"description": "The token of the card that was renewed.",
"example": "00000000-0000-0000-0000-000000000001",
"format": "uuid",
"type": "string"
},
"exp_month": {
"description": "The new expiration month of the card.",
"example": "01",
"type": "string"
},
"exp_year": {
"description": "The new expiration year of the card.",
"example": "2030",
"type": "string"
},
"previous_exp_month": {
"description": "The previous expiration month of the card.",
"example": "01",
"type": "string"
},
"previous_exp_year": {
"description": "The previous expiration year of the card.",
"example": "2024",
"type": "string"
}
},
"type": "object"
}