{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/CardBatchReplaceEntry", "title": "CardBatchReplaceEntry", "type": "object", "properties": { "id": { "type": "integer", "description": "The ID of the card that needs to be replaced.", "readOnly": false, "writeOnly": true }, "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 }, "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 } }, "required": [ "id" ] }