{ "type": "object", "$schema": "https://json-structure.org/meta/core/v0/#", "$id": "https://raw.githubusercontent.com/api-evangelist/7digital/refs/heads/main/json-structure/api-card-registration-request-structure.json", "name": "CardRegistrationRequest", "description": "CardRegistrationRequest schema from 7digital API", "properties": { "cardNumber": { "type": "string", "example": "4242424242424242" }, "expiryMonth": { "type": "int32", "example": 12 }, "expiryYear": { "type": "int32", "example": 2028 }, "cvv": { "type": "string", "example": "123" }, "cardholderName": { "type": "string", "example": "Jane Smith" } }, "required": [ "cardNumber", "expiryMonth", "expiryYear", "cvv" ] }