Properties
| Name | Type | Description |
|---|---|---|
| card_brand | object | |
| card_category | object | |
| card_product_type | object | |
| end_date | string | The time when program became inactive |
| name | string | Program name |
| start_date | string | The time when program becomes active |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/card_program_update_request",
"title": "card_program_update_request",
"additionalProperties": false,
"properties": {
"card_brand": {
"$ref": "#/components/schemas/card_brand"
},
"card_category": {
"$ref": "#/components/schemas/card_category"
},
"card_product_type": {
"$ref": "#/components/schemas/card_product_type"
},
"end_date": {
"description": "The time when program became inactive",
"example": "Wed Aug 16 2023 04:51:41 GMT+0000 (Coordinated Universal Time)",
"format": "date-time",
"type": "string"
},
"name": {
"description": "Program name",
"type": "string"
},
"start_date": {
"description": "The time when program becomes active",
"example": "Wed Feb 09 2022 09:27:52 GMT+0000 (Coordinated Universal Time)",
"format": "date-time",
"type": "string"
}
},
"type": "object"
}