{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/CardReplace", "title": "CardReplace", "type": "object", "properties": { "name_on_card": { "type": "string", "description": "The user's name as it will be on the card. Check 'card-name' for the available card names for a user.", "readOnly": false, "writeOnly": true }, "preferred_name_on_card": { "type": "string", "description": "The user's preferred name that can be put on the card.", "readOnly": false, "writeOnly": true }, "pin_code_assignment": { "type": "array", "description": "Array of Types, PINs, account IDs assigned to the card.", "readOnly": false, "writeOnly": true, "items": { "$ref": "#/components/schemas/CardPinAssignment" } }, "second_line": { "type": "string", "description": "The second line on the card.", "readOnly": false, "writeOnly": true } } }