Salesforce · Schema
CardPaymentMethod
Fortune 500AIAnalyticsCloudCommerceCRMCustomer ServiceEnterpriseMarketingPlatformSales
Properties
| Name | Type | Description |
|---|---|---|
| cardHolderName | string | |
| expiryMonth | string | |
| expiryYear | string | |
| cardNumber | string | |
| cvv | string | |
| cardCategory | string | |
| cardType | string | |
| startYear | string | |
| startMonth | string | |
| nickName | string | |
| accountId | string |
JSON Schema
{
"type": "object",
"properties": {
"cardHolderName": {
"type": "string",
"example": "example_value"
},
"expiryMonth": {
"type": "string",
"example": "example_value"
},
"expiryYear": {
"type": "string",
"example": "example_value"
},
"cardNumber": {
"type": "string",
"example": "example_value"
},
"cvv": {
"type": "string",
"example": "example_value"
},
"cardCategory": {
"type": "string",
"example": "example_value"
},
"cardType": {
"type": "string",
"example": "example_value"
},
"startYear": {
"type": "string",
"example": "example_value"
},
"startMonth": {
"type": "string",
"example": "example_value"
},
"nickName": {
"type": "string",
"example": "example_value"
},
"accountId": {
"type": "string",
"example": "500123"
}
},
"required": [
"cardHolderName",
"expiryMonth",
"expiryYear",
"cardNumber",
"cvv",
"cardCategory",
"cardType",
"startYear",
"startMonth",
"nickName",
"accountId"
],
"$schema": "https://json-schema.org/draft/2020-12/schema",
"title": "CardPaymentMethod"
}