{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/yapily/main/json-schema/yapily-payment-response-schema.json", "title": "Yapily PaymentResponse", "type": "object", "properties": { "id": { "type": "string", "description": "Unique identifier of the payment." }, "institutionConsentId": { "type": "string", "description": "Identification of the consent at the Institution." }, "paymentIdempotencyId": { "type": "string", "description": "__Mandatory__. A unique identifier that you must provide to identify the payment. This can be any alpha-numeric string but is limited to a maximum of 35 characters." }, "paymentLifecycleId": { "type": "string" }, "status": { "type": "string", "description": "The status of the Payment. \n\nFor more information, see [Payment Status](/guides/payments/payment-status/)", "enum": [ "PENDING", "FAILED", "DECLINED", "COMPLETED", "COMPLETED_SETTLEMENT_IN_PROCESS", "EXPIRED", "UNKNOWN", "ACTIVE", "INACTIVE" ] }, "statusDetails": { "type": "object", "properties": { "status": { "type": "string", "description": "The status of the Payment. \n\nFor more information, see [Payment Status](/guides/payments/payment-status/)", "enum": [ "PENDING", "FAILED", "DECLINED", "COMPLETED", "COMPLETED_SETTLEMENT_IN_PROCESS", "EXPIRED", "UNKNOWN", "ACTIVE", "INACTIVE" ] }, "statusReason": { "type": "string" }, "statusReasonDescription": { "type": "string" }, "statusUpdateDate": { "type": "string", "format": "date-time" }, "multiAuthorisationStatus": { "type": "object", "description": "Details the additional levels of authorisation which are required from, and being managed by, the `Institution`.", "properties": { "status": { "type": "string", "description": "__Mandatory__. Specifies the current status of the multi-authorisation flow." }, "numberOfAuthorisationRequired": { "type": "integer", "description": "__Mandatory__. Total number of authorisations required.", "format": "int32" }, "numberOfAuthorisationReceived": { "type": "integer", "description": "__Mandatory__. The total number of authorisations that have been received.", "format": "int32" }, "lastUpdatedDateTime": { "type": "string", "description": "__Mandatory__. Date and time of when the authorisation was last updated.", "format": "date-time" }, "expirationDateTime": { "type": "string", "description": "__Mandatory__. Date and time by when the authorisation flow must be completed before it expires and the authorisation request is terminated.", "format": "date-time" } } }, "isoStatus": { "type": "object", "description": "The payment status code, as denoted by a 3-letter ISO 20022 code.", "properties": { "code": { "type": "string", "description": "The ISO 20022 `PaymentStatusCode`.", "example": "ACCC", "enum": [ "ACCC", "ACCP", "ACSC", "ACSP", "ACTC", "ACWC", "ACWP", "RCVD", "PDNG", "RJCT", "CANC", "ACFC", "PATC", "PART", "ACCO" ] }, "name": { "type": "string", "description": "The full name of the ISO 20022 `PaymentStatusCode`.", "example": "AcceptedCreditSettlementCompleted" } } } } }, "payer": { "title": "Payer Details", "required": [ "accountIdentifications" ], "type": "object", "properties": { "name": { "title": "Payer Name", "type": "string", "description": "The account holder name of the Payer.", "example": "John Doe" }, "accountIdentifications": { "uniqueItems": true, "type": "array", "description": "__Mandatory__. The account identifications that identify the `Payer` bank account.", "items": { "title": "Account Identifications", "required": [ "type", "identification" ], "type": "object", "properties": { "type": { "title": "Account Identification Type", "type": "string", "description": "__Mandatory__. Used to describe the format of the account.\n\n See [Account Identification Combinations](/payments/payment-resources/intro-to-payment-execution#account-identifications-combinations) for more information on when to specify each type.", "example": "SORT_CODE", "enum": [ "SORT_CODE", "ACCOUNT_NUMBER", "IBAN", "BBAN", "BIC", "PAN", "MASKED_PAN", "MSISDN", "BSB", "NCC", "ABA", "ABA_WIRE", "ABA_ACH", "EMAIL", "ROLL_NUMBER", "BLZ", "IFS", "CLABE", "CTN", "BRANCH_CODE", "VIRTUAL_ACCOUNT_ID" ] }, "identification": { "title": "Account Identification", "type": "string", "description": "__Mandatory__. The value associated with the account identification type.\n\n See [Account Identification Combinations](/payments/payment-resources/intro-to-payment-execution#account-identifications-combinations) for more information on the format of the values.", "example": "401016" } } } }, "address": { "title": "Address Details", "type": "object", "properties": { "addressLines": { "title": "Address Lines", "type": "array", "description": "__Optional__. The address line of the address", "example": [ "Ardenham Court" ], "items": { "type": "string" } }, "streetName": { "title": "Street", "type": "string", "description": "__Optional__. The street name of the address", "example": "Oxford Road" }, "buildingNumber": { "title": "Building Number", "type": "string", "description": "__Optional__. The building number of the address", "example": "45" }, "postCode": { "title": "Post Code", "type": "string", "description": "__Optional__. The post code of the address", "example": "HP19 3EQ" }, "townName": { "title": "Town", "type": "string", "description": "__Optional__. The town name of the address", "example": "Aylesbury" }, "county": { "title": "County", "type": "array", "description": "__Optional__. The list of counties for the address", "example": [ "Buckinghamshire" ], "items": { "type": "string" } }, "country": { "title": "Country", "type": "string", "description": "__Conditional__. The 2-letter country code for the address. \n\nAn `Institution` may require you to specify the `country` when used in the context of the `Payee` to be able to make a payment", "example": "GB" }, "department": { "title": "Department", "type": "string", "description": "__Optional__. The department for the address", "example": "Unit 2" }, "subDepartment": { "title": "Sub-Department", "type": "string", "description": "__Optional__. The sub-department for the address", "example": "Floor 3" }, "addressType": { "title": "Address Type", "type": "string", "description": "__Optional__. The type of address", "enum": [ "BUSINESS", "CORRESPONDENCE", "DELIVERY_TO", "MAIL_TO", "PO_BOX", "POSTAL", "RESIDENTIAL", "STATEMENT", "UNKNOWN" ] } }, "description": "__Conditional__. The address of the `Payee` or `Payer`.\n\n- `payee.address` is mandatory when the `paymentType` is an `INTERNATIONAL` payment\n- An `Institution` may require you to specify the `country` when used in the context of the `Payee` to be able to make a payment.", "example": { "country": "GB" } } }, "description": "__Conditional__. Details of the benefactor [person or business]." }, "payeeDetails": { "title": "Payee Details", "type": "object", "description": "__Mandatory__. Details of the beneficiary [person or business].", "required": [ "accountIdentifications", "name" ], "properties": { "name": { "title": "Payee Name", "type": "string", "description": "__Mandatory__. The account holder name of the beneficiary.", "example": "Jane Doe" }, "accountIdentifications": { "uniqueItems": true, "type": "array", "description": "__Mandatory__. The account identifications that identify the `Payee` bank account.", "example": [ { "identification": "401016", "type": "SORT_CODE" }, { "identification": "71518920", "type": "ACCOUNT_NUMBER" } ], "items": { "title": "Account Identifications", "required": [ "type", "identification" ], "type": "object", "properties": { "type": { "title": "Account Identification Type", "type": "string", "description": "__Mandatory__. Used to describe the format of the account.\n\n See [Account Identification Combinations](/payments/payment-resources/intro-to-payment-execution#account-identifications-combinations) for more information on when to specify each type.", "example": "SORT_CODE", "enum": [ "SORT_CODE", "ACCOUNT_NUMBER", "IBAN", "BBAN", "BIC", "PAN", "MASKED_PAN", "MSISDN", "BSB", "NCC", "ABA", "ABA_WIRE", "ABA_ACH", "EMAIL", "ROLL_NUMBER", "BLZ", "IFS", "CLABE", "CTN", "BRANCH_CODE", "VIRTUAL_ACCOUNT_ID" ] }, "identification": { "title": "Account Identification", "type": "string", "description": "__Mandatory__. The value associated with the account identification type.\n\n See [Account Identification Combinations](/payments/payment-resources/intro-to-payment-execution#account-identifications-combinations) for more information on the format of the values.", "example": "401016" } } } }, "accountType": { "title": "Payee Account Type", "type": "string", "description": "__Optional__. The payee account type. \n\nAllowed values: BUSINESS, BUSINESS_SAVING, CHARITY, COLLECTION, CORPORATE, E_WALLET, GOVERNMENT, INVESTMENT, INVESTMENT_ISA, JOINT_PERSONAL, PENSION, PERSONAL, PERSONAL_SAVING, PREMIER, WEALTH ." }, "address": { "title": "Address Details", "type": "object", "properties": { "addressLines": { "title": "Address Lines", "type": "array", "description": "__Optional__. The address line of the address", "example": [ "Ardenham Court" ], "items": { "type": "string" } }, "streetName": { "title": "Street", "type": "string", "description": "__Optional__. The street name of the address", "example": "Oxford Road" }, "buildingNumber": { "title": "Building Number", "type": "string", "description": "__Optional__. The building number of the address", "example": "45" }, "postCode": { "title": "Post Code", "type": "string", "description": "__Optional__. The post code of the address", "example": "HP19 3EQ" }, "townName": { "title": "Town", "type": "string", "description": "__Optional__. The town name of the address", "example": "Aylesbury" }, "county": { "title": "County", "type": "array", "description": "__Optional__. The list of counties for the address", "example": [ "Buckinghamshire" ], "items": { "type": "string" } }, "country": { "title": "Country", "type": "string", "description": "__Conditional__. The 2-letter country code for the address. \n\nAn `Institution` may require you to specify the `country` when used in the context of the `Payee` to be able to make a payment", "example": "GB" }, "department": { "title": "Department", "type": "string", "description": "__Optional__. The department for the address", "example": "Unit 2" }, "subDepartment": { "title": "Sub-Department", "type": "string", "description": "__Optional__. The sub-department for the address", "example": "Floor 3" }, "addressType": { "title": "Address Type", "type": "string", "description": "__Optional__. The type of address", "enum": [ "BUSINESS", "CORRESPONDENCE", "DELIVERY_TO", "MAIL_TO", "PO_BOX", "POSTAL", "RESIDENTIAL", "STATEMENT", "UNKNOWN" ] } }, "description": "__Conditional__. The address of the `Payee` or `Payer`.\n\n- `payee.address` is mandatory when the `paymentType` is an `INTERNATIONAL` payment\n- An `Institution` may require you to specify the `country` when used in the context of the `Payee` to be able to make a payment.", "example": { "country": "GB" } }, "merchantId": { "title": "Merchant Id", "type": "string", "description": "__Optional__. The merchant ID is a unique code provided by the payment processor to the merchant.", "example": "24589303" }, "merchantCategoryCode": { "title": "Merchant Category", "type": "string", "format": "^\\d{4}$", "description": "__Optional__. The category code of the merchant in case the `Payee` is a business. Specified as a 4-letter ISO 18245 code.\n\nAllowed values:\n\n- `0742` (Veterinary Services)\n- `0763` (Agricultural Cooperatives)\n- `0780` (Landscaping and Horticultural Services)\n- `1520` (General Contractor/Residential Building)\n- `1711` (Heating, Plumbing, Air Conditioning Contractors)\n- `1731` (Electrical Contractors)\n- `1740` (Masonry, Stonework, Tile Setting, Plastering, Insulation Contractors)\n- `1750` (Carpentry)\n- `1761` (Roof, Siding, and Sheet Metal Work Contractors)\n- `1771` (Contractors, Concrete)\n- `1799` (Special Trade Contractor - Not Elsewhere Classified)\n- `2741` (Miscellaneous Publishing and Printing Services)\n- `2791` (Typesetting, Plate Making and Related Services (Business to Business MCC))\n- `2842` (Specialty Cleaning, Polishing and Sanitation Preparations (Business to Business MCC))\n- `3000` (United Airlines)\n- `3001` (American Airlines)\n- `3002` (Pan American)\n- `3003` (Eurofly Airlines)\n- `3004` (Dragon Airlines)\n- `3005` (British Airways)\n- `3006` (Japan Air Lines)\n- `3007` (Air France)\n- `3008` (Lufthansa)\n- `3009` (Air Canada)\n- `3010` (KLM)\n- `3011` (AeroFlot)\n- `3012` (Qantas)\n- `3013` (Alitalia)\n- `3014` (Saudi Arabian Airlines)\n- `3015` (SWISS)\n- `3016` (SAS)\n- `3017` (South African Airway)\n- `3018` (Varig (Brazil))\n- `3020` (Air India)\n- `3021` (Air Algerie)\n- `3022` (PAL AIR)\n- `3023` (Mexicana)\n- `3024` (Pakistan International)\n- `3025` (Air New Zealand Ltd.)\n- `3026` (Emirates Airlines)\n- `3027` (UTA/InterAir)\n- `3028` (Air Malta)\n- `3029` (SN Brussels Airlines - SN BRUSSELS)\n- `3030` (Aerolineas Argentinas)\n- `3031` (Olympic Airways)\n- `3032` (El Al)\n- `3033` (Ansett Airlines)\n- `3034` (ETIHADAIR)\n- `3035` (TAP (Portugal))\n- `3036` (VASP (Brazil))\n- `3037` (EgyptAir)\n- `3038` (Kuwait Airways)\n- `3039` (Avianca)\n- `3040` (GulfAir (Bahrain))\n- `3041` (Balkan-Bulgarian)\n- `3042` (FinnAir)\n- `3043` (Aer Lingus)\n- `3044` (Air Lanka)\n- `3045` (Nigeria Airways)\n- `3046` (Cruzeiro do Sul (Bra))\n- `3047` (THY (Turkey))\n- `3048` (Royal Air Maroc)\n- `3049` (Tunis Air)\n- `3050` (Icelandair)\n- `3051` (Austrian Airlines)\n- `3052` (LANAIR)\n- `3053` (AVIACO (Spain))\n- `3054` (Ladeco (Chile))\n- `3055` (LAB (Bolivia))\n- `3056` (JetAir)\n- `3057` (Virgin America \u2013 VIR AMER)\n- `3058` (Delta)\n- `3059` (DBA Airlines-DBA AIR)\n- `3060` (NWA Air)\n- `3061` (Continental)\n- `3062` (Hapag-Lloyd Express - HLX)\n- `3063` (US Airways)\n- `3064` (Adria Airways)\n- `3065` (Airinter (AirInternational))\n- `3066` (Southwest)\n- `3068` (AIR STANA)\n- `3069` (Sun Country Air)\n- `3070` (Pacific Southwest Airlines (PSA))\n- `3071` (Air British Columbia)\n- `3072` (CEBU PAC)\n- `3073` (Air Cal)\n- `3075` (Singapore Airlines)\n- `3076` (Aeromexico)\n- `3077` (Thai Airways)\n- `3078` (China Airlines)\n- `3079` (Jetstar Airways - Jetstar)\n- `3081` (NordAir)\n- `3082` (Korean Airlines)\n- `3083` (Air Afrique)\n- `3084` (Eva Airlines)\n- `3085` (Midwest Express Airlines, Inc)\n- `3087` (Metro Airlines)\n- `3088` (Croatia Airlines)\n- `3089` (Tans Saero)\n- `3090` (Uni Airways)\n- `3094` (Zambia Airways)\n- `3096` (Air Zimbabwe)\n- `3097` (Spanair (abbreviation: SPANAIR))\n- `3098` (Asiana Airlines)\n- `3099` (Cathay Pacific)\n- `3100` (Malaysian Airline Sys)\n- `3102` (Iberia)\n- `3103` (Garuda (Indonesia))\n- `3105` (Piedmont)\n- `3106` (Braathens S.A.F.E. (Norway))\n- `3110` (Wings Airways)\n- `3111` (British Midland)\n- `3112` (Windward Island)\n- `3117` (Venezolana Int de Aviacion)\n- `3118` (Valley Airlines)\n- `3125` (Tan Airlines)\n- `3126` (Talair PTY Ltd.)\n- `3127` (Taca International)\n- `3129` (Surinam Airways)\n- `3130` (Sunworld International Airways)\n- `3131` (VLM Air)\n- `3132` (Frontier Airlines)\n- `3133` (Sunbelt Airlines)\n- `3135` (Sudan Airlines)\n- `3136` (Qatar Air)\n- `3137` (Singleton)\n- `3138` (Simmons Airlines)\n- `3141` (Seair Alaska)\n- `3143` (Scenic Airlines)\n- `3144` (Virgin Atlantic)\n- `3145` (San Juan)\n- `3146` (Luxair)\n- `3148` (Air Littoral SA)\n- `3151` (Air Laire)\n- `3154` (Princeville)\n- `3156` (Go Fly)\n- `3159` (PBA-Provincetwn-Bstn Air)\n- `3161` (All Nippon Airways)\n- `3164` (Norontair)\n- `3165` (New York Helicopter)\n- `3167` (Aero Continente - AEROCONTINENTE)\n- `3170` (Mount Cook)\n- `3171` (Canadian Airlines)\n- `3172` (Nation Air)\n- `3174` (JetBlue Airways)\n- `3175` (Middle East Air)\n- `3176` (Metroflight Airlines)\n- `3177` (AirTran Airways)\n- `3178` (Mesa Air)\n- `3180` (Westjet Airlines-WESTJET)\n- `3181` (Malev Hungarian Airlines)\n- `3182` (LOT (Poland))\n- `3183` (Oman Aviation - OMAN AIR)\n- `3184` (LIAT)\n- `3185` (LAV (Venezuela))\n- `3186` (LAP (Paraguay))\n- `3187` (LACSA (Costa Rica))\n- `3188` (Virgin Express - VIR EXP)\n- `3190` (Jugoslav Air)\n- `3191` (Island Airlines)\n- `3192` (Iran Air)\n- `3193` (Indian Airlines)\n- `3195` (Holiday Airlines)\n- `3196` (Hawaiian Air)\n- `3197` (Havasu Airlines)\n- `3198` (Harbor Airlines)\n- `3199` (Servicios Aereos Militares)\n- `3200` (Guyana Airways)\n- `3203` (Golden Pacific Air)\n- `3204` (Freedom Airlines)\n- `3206` (China Eastern Airlines (Abbr: China East Air))\n- `3207` (Empresa Ecuatoriana)\n- `3211` (Norwegian Air Shuttle - NORWEGIANAIR)\n- `3212` (Dominicana de Aviacion)\n- `3213` (Malmo Aviation - MALMO AV)\n- `3215` (Dan Air Services)\n- `3216` (Cumberland Airlines)\n- `3217` (CSA-Ceskoslovenske Aeroln)\n- `3218` (Crown Air)\n- `3219` (Copa)\n- `3220` (Compania Faucett)\n- `3221` (Transportes Aeros Mil)\n- `3222` (Command Airways)\n- `3223` (Comair)\n- `3226` (Skyways Air- SKYWAYS)\n- `3228` (Cayman Airways)\n- `3229` (SAETA)\n- `3231` (SAHSA)\n- `3233` (Capitol Air)\n- `3234` (CARIBAIR)\n- `3235` (Brockway Air)\n- `3236` (Air Arabia Airlines - Air Arab)\n- `3238` (Bemidji Aviation)\n- `3239` (Bar Harbor Airlines)\n- `3240` (Bahamasair)\n- `3241` (Aviateca (Guatemala))\n- `3242` (Avensa)\n- `3243` (Austrian Air Service)\n- `3245` (Easy Jet - EASYJET)\n- `3246` (Ryan Air - RYANAIR)\n- `3247` (Gol Airlines - GOL)\n- `3248` (Tam Airlines - TAM)\n- `3251` (Aloha Airlines)\n- `3252` (ALM-Antilean Airlines)\n- `3253` (America West)\n- `3254` (U.S. Air Shuttle)\n- `3256` (Alaska Airlines Inc.)\n- `3259` (American Trans Air)\n- `3260` (Spirit Airlines - SPIRIT)\n- `3261` (Air China)\n- `3262` (Reno Air)\n- `3263` (Aero Servicio Carabobo)\n- `3266` (Air Seychelles)\n- `3267` (Air Panama International)\n- `3268` (Air Pacific)\n- `3275` (Air Nevada)\n- `3276` (Air Midwest)\n- `3277` (Air Madagascar)\n- `3279` (Air LA)\n- `3280` (Air Jamaica)\n- `3282` (Air Djibouti)\n- `3284` (Aero Virgin Islands)\n- `3285` (AeroPeru)\n- `3286` (Aero Nicaraguensis)\n- `3287` (Aero Coach Aviation)\n- `3291` (Ariana Afghan)\n- `3292` (Cyprus Airways)\n- `3293` (Ecuatoriana)\n- `3294` (Ethiopian Airlines)\n- `3295` (Kenya Airways)\n- `3296` (Air Berlin-AIRBERLIN)\n- `3297` (Tarom Romanian Air Transport)\n- `3298` (Air Mauritius)\n- `3299` (Wideroe's Flyveselskap)\n- `3351` (Affiliated Auto Rental)\n- `3352` (American International)\n- `3353` (Brooks Rent a Car)\n- `3354` (Action Auto Rental)\n- `3355` (SIXT Car Rental)\n- `3357` (Hertz)\n- `3359` (Payless Car Rental)\n- `3360` (Snappy Car Rental)\n- `3361` (Airways Rent a Car)\n- `3362` (Altra Auto Rental)\n- `3364` (Agency Rent a Car)\n- `3366` (Budget Rent a Car)\n- `3368` (Holiday R-A-C)\n- `3370` (Rent-a-Wreck)\n- `3374` (Accent Rent-A-Car)\n- `3376` (Ajax R-A-C)\n- `3380` (Triangle Rent a Car)\n- `3381` (Europ Car)\n- `3385` (Tropical R-A-C)\n- `3386` (Showcase Rental Cars)\n- `3387` (Alamo Rent a Car)\n- `3388` (Merchants Rent-A-Car, Inc)\n- `3389` (Avis R-A-C)\n- `3390` (Dollar R-A-C)\n- `3391` (Europe by Car)\n- `3393` (National Car Rental)\n- `3394` (Kemwell Group R-A-C)\n- `3395` (Thrify Car Rental)\n- `3396` (Tilden R-A-C)\n- `3398` (Econo Car R-A-C)\n- `3400` (Auto Host Car Rentals)\n- `3405` (Enterprise R-A-C)\n- `3409` (General Rent-a-Car)\n- `3412` (A-1 R-A-C)\n- `3414` (Godfrey National)\n- `3420` (ANSA International)\n- `3421` (Allstate Rent-a-Car)\n- `3423` (Avcar Rent-a-Car)\n- `3425` (Automate Rent-a-Car)\n- `3427` (Avon Rent-a-Car)\n- `3428` (Carey Rent-a-Car)\n- `3429` (Insurance Rent-a-Car)\n- `3430` (Major Rent-a-Car)\n- `3431` (Replacement Rent-a-Car)\n- `3432` (Reserve Rent-a-Car)\n- `3433` (Ugly Duckling R-A-C)\n- `3434` (USA Rent-a-Car)\n- `3435` (Value Rent-a-Car)\n- `3436` (Autohansa Rent-a-Car)\n- `3437` (Cite)\n- `3438` (Interenet Rent-a-Car)\n- `3439` (Millville Rent-a-Car)\n- `3441` (Advantage Rent A Car)\n- `3501` (Holiday Inns)\n- `3502` (Best Western Hotels)\n- `3503` (Sheraton)\n- `3504` (Hilton)\n- `3505` (Forte Hotels)\n- `3506` (Golden Tulip Hotels)\n- `3507` (Friendship Inns)\n- `3508` (Quality Inns)\n- `3509` (Marriott)\n- `3510` (Days Inn Colonial Resort)\n- `3511` (Arabella Hotels)\n- `3512` (Intercontinental Hotels)\n- `3513` (Westin)\n- `3514` (Amerisuites)\n- `3515` (Rodeway Inn)\n- `3516` (LaQuinta Motor Inns)\n- `3517` (Americana Hotels)\n- `3518` (Sol Hotels)\n- `3519` (Pullman International Hotels)\n- `3520` (Meridien Hotels)\n- `3521` (Royal Lahaina Resort)\n- `3522` (Tokyo Group)\n- `3523` (Peninsula Hotels)\n- `3524` (WelcomGroup Hotels)\n- `3525` (Dunfey Hotels)\n- `3526` (Prince Hotels)\n- `3527` (Downtowner Passport)\n- `3528` (Red Lion Inns)\n- `3529` (CP (Canadian Pacific))\n- `3530` (Renaissance Hotels)\n- `3531` (Kauai Coconut Beach Resort)\n- `3532` (Royal Kona Resort)\n- `3533` (Hotel Ibis)\n- `3534` (Southern Pacific)\n- `3535` (Hilton International)\n- `3536` (AMFAC Hotels)\n- `3537` (ANA Hotels)\n- `3538` (Concorde Hotels)\n- `3539` (Summerfield Suites Hotel)\n- `3540` (Iberotel Hotels)\n- `3541` (Hotel Okura)\n- `3542` (Royal Hotels)\n- `3543` (Four Seasons)\n- `3544` (Cigna Hotels)\n- `3545` (Shangri-La International)\n- `3546` (Hotel Sierra)\n- `3548` (Hotels Melia)\n- `3549` (Auberge des Governeurs)\n- `3550` (Regal 8 Inns)\n- `3551` (Mirage Hotel and Casino)\n- `3552` (Coast Hotel)\n- `3553` (Park Inn by Radisson)\n- `3554` (Pinehurst Resort)\n- `3555` (Treasure Island Hotel and Casino)\n- `3556` (Barton Creek Resort)\n- `3557` (Manhattan East Suite Hotels)\n- `3558` (Jolly Hotels)\n- `3559` (Candlewood Suites)\n- `3560` (Aladdin Resort and Casino)\n- `3561` (Golden Nugget)\n- `3562` (Comfort Inns)\n- `3563` (Journey's End Motels)\n- `3564` (Sam's Town Hotel and Casino)\n- `3565` (Relax Inns)\n- `3566` (Garden Place Hotel)\n- `3567` (Soho Grand Hotel)\n- `3568` (Ladbroke Hotels)\n- `3569` (Tribeca Grand Hotel)\n- `3570` (Forum Hotels)\n- `3571` (Grand Wailea Resort)\n- `3572` (Miyako Hotel)\n- `3573` (Sandman Hotels)\n- `3574` (Venture Inn)\n- `3575` (Vagabond Hotels)\n- `3576` (La Quinta Resort)\n- `3577` (Mandarin Oriental Hotel)\n- `3578` (Frankenmuth Bavarian)\n- `3579` (Hotel Mercure)\n- `3580` (Hotel Del Coronado)\n- `3581` (Delta Hotels)\n- `3582` (California Hotel and Casino)\n- `3583` (Radisson BLU)\n- `3584` (Princess Hotels International)\n- `3585` (Hungar Hotels)\n- `3586` (Sokos Hotels)\n- `3587` (Doral Hotels)\n- `3588` (Helmsley Hotels)\n- `3589` (Doral Golf Resort)\n- `3590` (Fairmont Hotel)\n- `3591` (Sonesta Hotels)\n- `3592` (Omni Hotels)\n- `3593` (Cunard Hotels)\n- `3594` (Arizona Biltmore)\n- `3595` (Hospitality Inns)\n- `3596` (Wynn Las Vegas)\n- `3597` (Riverside Resort and Casino)\n- `3598` (Regent International Hotels)\n- `3599` (Pannonia Hotels)\n- `3600` (Saddlebrook Resort - Tampa)\n- `3601` (Trade Winds Resorts)\n- `3602` (Hudson Hotel)\n- `3603` (Noah's Hotel)\n- `3604` (Hilton Garden Inn)\n- `3605` (Jurys Doyle Hotel Group)\n- `3606` (Jefferson Hotel)\n- `3607` (Fountainebleau Resort)\n- `3608` (Gaylord Opryland)\n- `3609` (Gaylord Palms)\n- `3610` (Gaylord Texan)\n- `3611` (C MON INN)\n- `3612` (Movenpick Hotels)\n- `3613` (Microtel Inns & Suites)\n- `3614` (Americinn)\n- `3615` (Travelodge Motels)\n- `3617` (America's Best Value Inn)\n- `3618` (Great Wolf)\n- `3619` (Aloft)\n- `3620` (Binion's Horseshoe Club)\n- `3621` (Extended Stay)\n- `3622` (Merlin Hotel)\n- `3623` (Dorint Hotels)\n- `3624` (Lady Luck Hotel and Casino)\n- `3625` (Hotel Universale)\n- `3626` (Studio Plus)\n- `3627` (Extended Stay America)\n- `3628` (Excalibur Hotel and Casino)\n- `3629` (Dan Hotels)\n- `3630` (Extended Stay Deluxe)\n- `3631` (Sleep Inn)\n- `3632` (The Phoenician)\n- `3633` (Rank Hotels)\n- `3634` (Swissotel)\n- `3635` (Reso Hotel)\n- `3636` (Sarova Hotels)\n- `3637` (Ramada Inns)\n- `3638` (Howard Johnson)\n- `3639` (Mount Charlotte Thistle)\n- `3640` (Hyatt Motels)\n- `3641` (Sofitel Hotels)\n- `3642` (Novotel)\n- `3643` (Steigenberger Hotels)\n- `3644` (EconoLodges)\n- `3645` (Queens Moat Houses)\n- `3646` (Swallow Hotels)\n- `3647` (Husa Hotels)\n- `3648` (De Vere Hotels)\n- `3649` (Radisson)\n- `3650` (Red Roof Inns)\n- `3651` (Imperial London Hotel)\n- `3652` (Embassy Hotels)\n- `3653` (Penta Hotels)\n- `3654` (Loews Hotels)\n- `3655` (Scandic Hotels)\n- `3656` (Sara Hotels)\n- `3657` (Oberoi Hotels)\n- `3658` (New Otani Hotels)\n- `3659` (Taj Hotels International)\n- `3660` (Knights Inn)\n- `3661` (Metropole Hotels)\n- `3662` (Circus Circus Hotel and Casino)\n- `3663` (Hoteles El Presidente)\n- `3664` (Flag Inns)\n- `3665` (Hampton Inn Hotels)\n- `3666` (Stakis Hotels)\n- `3667` (Luxor Hotel and Casino)\n- `3668` (Maritim Hotels)\n- `3669` (Eldorado Hotel and Casino)\n- `3670` (Arcade Hotels)\n- `3671` (Arctia Hotels)\n- `3672` (Campanile Hotels)\n- `3673` (IBUSZ Hotels)\n- `3674` (Rantasipi Hotels)\n- `3675` (Interhotel CEDOK)\n- `3676` (Monte Carlo Hotel and Casino)\n- `3677` (Climat de France Hotels)\n- `3678` (Cumulus Hotels)\n- `3679` (Silver Legacy Hotel and Casino)\n- `3680` (Hoteis Othan)\n- `3681` (Adams Mark Hotels)\n- `3682` (Sahara Hotel and Casino)\n- `3683` (Bradbury Suites)\n- `3684` (Budget Hosts Inns)\n- `3685` (Budgetel Hotels)\n- `3686` (Suisse Chalet)\n- `3687` (Clarion Hotels)\n- `3688` (Compri Hotels)\n- `3689` (Consort Hotels)\n- `3690` (Courtyard Inns)\n- `3691` (Dillon Inn)\n- `3692` (Doubletree)\n- `3693` (Drury Inn)\n- `3694` (Economy Inns of America)\n- `3695` (Embassy Suites)\n- `3696` (Excel Inn)\n- `3697` (Fairfield Hotels)\n- `3698` (Harley Hotels)\n- `3699` (Midway Motor Lodge)\n- `3700` (Motel 6)\n- `3701` (La Mansion Del Rio)\n- `3702` (The Registry Hotels)\n- `3703` (Residence Inn)\n- `3704` (Royce Hotels)\n- `3705` (Sandman Inn)\n- `3706` (Shilo Inn)\n- `3707` (Shoney's Inn)\n- `3708` (Virgin River Hotel and Casino)\n- `3709` (Super 8 Motels)\n- `3710` (The Ritz Carlton Hotels)\n- `3711` (Flag Inns (Australia))\n- `3712` (Buffalo Bill's Hotel and Casino)\n- `3713` (Quality Pacific Hotel)\n- `3714` (Four Seasons Hotels-Austr)\n- `3715` (Fairfield Inn)\n- `3716` (Carlton Hotels)\n- `3717` (City Lodge Hotels)\n- `3718` (Karos Hotels)\n- `3719` (Protea Hotels)\n- `3720` (Southern Sun Hotels)\n- `3721` (Hilton Conrad Hotels)\n- `3722` (Wyndham Hotels)\n- `3723` (Rica Hotels)\n- `3724` (Inter Nor Hotels)\n- `3725` (SeaPines Plantation)\n- `3726` (Rio Suites)\n- `3727` (Broadmoor Hotel)\n- `3728` (Bally's Hotel and Casino)\n- `3729` (John Ascuaga's Nugget)\n- `3730` (MGM Grand Hotel)\n- `3731` (Harrah's Hotels and Casinos)\n- `3732` (Opryland Hotel)\n- `3733` (Boca Raton Resort)\n- `3734` (Harvey/Bristol Hotels)\n- `3735` (Master Economy Inns)\n- `3736` (Colorado Belle/Edgewater Resort)\n- `3737` (Riviera Hotel and Casino)\n- `3738` (Tropicana Resort & Casino)\n- `3739` (Woodside Hotels & Resorts)\n- `3740` (Towneplace Suites)\n- `3741` (Millennium Hotel)\n- `3742` (Club Med)\n- `3743` (Biltmore Hotel and Suites)\n- `3744` (Carefree Resorts)\n- `3745` (St. Regis Hotel)\n- `3746` (The Eliot Hotel)\n- `3747` (ClubCorp/ClubResorts)\n- `3748` (Wellesley Inns)\n- `3749` (The Beverly Hills Hotel)\n- `3750` (Crown Plaza Hotels)\n- `3751` (Homewood Suites)\n- `3752` (Peabody Hotels)\n- `3753` (Greenbriar Resorts)\n- `3754` (Amelia Island Plantation)\n- `3755` (The Homestead)\n- `3757` (Canyon Ranch)\n- `3758` (Kahala Mandarion Oriental Hotel)\n- `3759` (The Orchid at Mauna Lani)\n- `3760` (Halekulani Hotel/Waikiki Parc)\n- `3761` (Primadonna Hotel and Casino)\n- `3762` (Whisky Pete's Hotel and Casino)\n- `3763` (Chateau Elan Winery and Resort)\n- `3764` (Beau Rivage Hotel and Casino)\n- `3765` (Bellagio)\n- `3766` (Fremont Hotel and Casino)\n- `3767` (Main Street Hotel and Casino)\n- `3768` (Silver Star Hotel and Casino)\n- `3769` (Stratosphere Hotel and Casino)\n- `3770` (SpringHill Suites)\n- `3771` (Caesar's Resort)\n- `3772` (Nemacolin Woodlands)\n- `3773` (The Venetian Resort Hotel and Casino)\n- `3774` (New York-New York Hotel and Casino)\n- `3775` (Sands Resort)\n- `3776` (Nevele Grande Resort and Country Club)\n- `3777` (Mandalay Bay Resort)\n- `3778` (Four Points Hotels)\n- `3779` (W Hotels)\n- `3780` (Disney Resorts)\n- `3781` (Patricia Grand Resort Hotels)\n- `3782` (Rosen Hotels & Resort)\n- `3783` (Town and Country Resort and Convention Center)\n- `3784` (First Hospitality Hotel)\n- `3785` (Outrigger Hotels and Resorts)\n- `3786` (Ohana Hotel of Hawaii)\n- `3787` (Caribe Royale Resort Suites & Villas)\n- `3788` (Ala Moana Hotel / Ala Moana Hotels)\n- `3789` (Smugglers' Notch Resort)\n- `3790` (Raffles Hotels)\n- `3791` (Staybridge Suites)\n- `3792` (Claridge Casino Hotel)\n- `3793` (The Flamingo Hotels)\n- `3794` (Grand Casino Hotels)\n- `3795` (Paris Las Vegas Hotel)\n- `3796` (Peppermill Hotel Casino)\n- `3797` (Atlantic City Hilton)\n- `3798` (Embassy Vacation Resort)\n- `3799` (Hale Koa Hotel)\n- `3800` (Homestead)\n- `3801` (Wilderness Hotel and Golf Resort)\n- `3802` (The Palace Hotel)\n- `3807` (Element)\n- `3808` (LXR)\n- `3810` (La Costa Resort)\n- `3811` (Premier Travel Inn)\n- `3812` (Hyatt Place)\n- `3813` (Hotel Indigo)\n- `3814` (The Roosevelt Hotel NY)\n- `3815` (Holiday Inn Nickelodeon)\n- `3816` (Home2 Suites)\n- `3817` (Affinia)\n- `3818` (Mainstay Suites)\n- `3819` (Oxford Suites)\n- `3820` (Jumeirah Essex House)\n- `3821` (Caribe Royale)\n- `3822` (Crossland)\n- `3823` (Grand Sierra Resort)\n- `3824` (Aria)\n- `3825` (Vdara)\n- `3826` (Autograph)\n- `3827` (Galt House)\n- `3828` (Cosmopolitan of Las Vegas)\n- `3829` (Country Inn by Carlson)\n- `3830` (Park Plaza Hotel)\n- `3831` (Waldorf)\n- `4011` (Railroads)\n- `4111` (Local and Suburban Commuter Passenger Transportation, including Ferries)\n- `4112` (Passenger Rail (train))\n- `4119` (Ambulance Services)\n- `4121` (Taxicabs and Limousines)\n- `4131` (Bus Lines, includes Charters/Tour Buses)\n- `4214` (Motor Freight Carriers and Trucking-Local and Long Distance, Moving & Storage Companies, and Local Delivery)\n- `4215` (Courier Services-Air and Ground, and Freight Forwarders)\n- `4225` (Public Warehousing-Farm products, Refrigerated Goods, Household Goods, and Storage)\n- `4411` (Steamship and Cruise Lines)\n- `4457` (Boat Rentals and Leasing)\n- `4468` (Marinas, Marine Service, and Supplies)\n- `4511` (Airlines and Air Carriers)\n- `4582` (Airports, Flying Fields, and Airport Terminals)\n- `4722` (Travel Agencies)\n- `4723` (Package Tour Operators (Germany Only))\n- `4761` (Telemarketing of Travel Related Services and Vitamins)\n- `4784` (Bridge and Road Fees, Tolls)\n- `4789` (Transportation Services-not elsewhere classified)\n- `4812` (Telecommunication Equipment and Telephone Sales)\n- `4813` (Special Telecom Merchant)\n- `4814` (Telecommunication Services, Including Local and Long Distance Calls, Credit Card Calls, Call Through Use of Magnetic-Strip-Reading Telephones, and Fax Services)\n- `4815` (Monthly Summary Telephone Charges)\n- `4816` (Computer Network/Information Services and other Online Services such as electronic bulletin board, e-mail, web site hosting services, or Internet access)\n- `4821` (Telegraph Services)\n- `4829` (Quasi Cash - Money Transfer)\n- `4899` (Cable, Satellite, and Other Pay Television and Radio Services)\n- `4900` (Utilities-Electric, Gas, Water, and Sanitary)\n- `5013` (Motor Vehicle Supplies and New Parts (Business to Business MCC))\n- `5021` (Office Furniture (Business to Business MCC))\n- `5039` (Construction Materials Not Elsewhere Classified (Business to Business MCC))\n- `5044` (Photographic, Photocopy, Microfilm Equipment and Supplies (Business to Business MCC))\n- `5045` (Computers, Computer Peripheral Equipment, and Software)\n- `5046` (Commercial Equipment Not Elsewhere Classified (Business to Business MCC))\n- `5047` (Dental/Laboratory/Medical/Ophthalmic Hospital Equipment and Supplies)\n- `5051` (Metal Service Centers and Offices (Business to Business MCC))\n- `5065` (Electrical Parts and Equipment (Business to Business MCC))\n- `5072` (Hardware, Plumbing, Heat Equipment and Supplies (Business to Business MCC))\n- `5074` (Plumbing and Heating Equipment and Supplies (Business to Business MCC))\n- `5085` (Industrial Supplies Not Elsewhere Classified (Business to Business MCC))\n- `5094` (Precious Stones, Metals, Watches and Jewelry (Business to Business MCC))\n- `5099` (Durable Goods Not Elsewhere Classified (Business to Business MCC))\n- `5111` (Stationery, Office Supplies, and Printing and Writing Paper)\n- `5122` (Drugs, Drug Proprietary's, and Druggists' Sundries)\n- `5131` (Piece Goods, Notions and Other Dry Goods (Business to Business MCC))\n- `5137` (Men's, Women's and Children's Uniforms (Business to Business MCC))\n- `5139` (Commercial Footwear (Business to Business MCC))\n- `5169` (Chemicals and Allied Products Not Elsewhere Classified (Business to Business MCC))\n- `5172` (Petroleum and Products (Business to Business MCC))\n- `5192` (Books, Periodicals and Newspapers (Business to Business MCC))\n- `5193` (Florist Suppliers, Nursery Stock & Flowers (Business to Business MCC))\n- `5198` (Paints, Varnishes and Supplies (Business to Business MCC))\n- `5199` (Non-durable Goods Not Elsewhere Classified (Business to Business MCC))\n- `5200` (Home Supply Warehouse)\n- `5211` (Lumber & Building Materials Stores)\n- `5231` (Glass, Paint, and Wallpaper Stores)\n- `5251` (Hardware Stores, Equipment Utilities Regulated)\n- `5261` (Nurseries and Lawn and Garden Supply Stores)\n- `5271` (Mobile Home Dealer)\n- `5300` (Wholesale Club with or without membership fee)\n- `5309` (Duty Free Stores)\n- `5310` (Discount Store)\n- `5311` (Department Stores)\n- `5331` (Variety Stores)\n- `5399` (Miscellaneous General Merchandise)\n- `5411` (Grocery Stores and Supermarkets)\n- `5422` (Freezer & Locker Meat Provisions)\n- `5441` (Candy, Nut, and Confectionary Stores)\n- `5451` (Dairy Product Stores)\n- `5462` (Bakeries)\n- `5499` (Miscellaneous Food Stores-Convenience Stores and Specialty Markets)\n- `5511` (Car and Truck Dealers (New and Used)- Sales, Service, Repairs, Parts, and Leasing)\n- `5521` (Car and Truck Dealers (Used)- Sales, Service, Repairs, Parts, and Leasing)\n- `5532` (Automotive Tire Stores)\n- `5531` (Auto and Home Supply Stores)\n- `5533` (Automotive Parts and Accessories Stores)\n- `5541` (Service Stations (with or without Ancillary Services))\n- `5542` (Automated Fuel Dispensers)\n- `5551` (Boat Dealers)\n- `5561` (Camper, Recreational and Utility Trailer Dealers)\n- `5571` (Motorcycle Dealers)\n- `5592` (Motor Home Dealers)\n- `5598` (Snowmobile Dealers)\n- `5599` (Miscellaneous Automotive, Aircraft, and Farm Equipment Dealers --Not Elsewhere Classified)\n- `5611` (Men's & Boys' Clothing and Accessory Stores)\n- `5621` (Women's Ready-to-Wear Stores)\n- `5631` (Women's Accessory and Specialty Stores)\n- `5641` (Children's and Infants' Wear Stores)\n- `5651` (Family Clothing Stores)\n- `5655` (Sports and Riding Apparel Stores)\n- `5661` (Shoe Stores)\n- `5681` (Furriers & Fur Shops)\n- `5691` (Men's and Women's Clothing Stores)\n- `5697` (Tailors, Seamstresses, Mending, Alterations)\n- `5698` (Wig & Toupee Shops)\n- `5699` (Miscellaneous Apparel and Accessory Stores)\n- `5712` (Furniture, Home Furnishings, and Equipment Stores, except Appliances)\n- `5713` (Floor coverings, Rugs)\n- `5714` (Drapery, Window Covering, and Upholstery Stores)\n- `5718` (Fireplaces, Fireplace Screens and Accessories Stores)\n- `5719` (Miscellaneous Home Furnishing Specialty Stores)\n- `5722` (Household Appliance Stores)\n- `5732` (Electronics Stores)\n- `5733` (Music Stores-Musical Instruments, Pianos, and Sheet Music)\n- `5734` (Computer Software Stores)\n- `5735` (Record Stores)\n- `5811` (Caterers - Prepare & Delivery)\n- `5812` (Eating Places and Restaurants)\n- `5813` (Drinking Places (Alcoholic Beverages) - Bars, Taverns, Nightclubs, Cocktail Lounges, and Discotheques)\n- `5814` (Quick Payment Service-Fast Food Restaurants)\n- `5815` (Digital Goods \u2013 Media, Books, Movies, Music)\n- `5816` (Digital Goods \u2013 Games)\n- `5817` (Digital Goods \u2013 Applications (Excludes Games))\n- `5818` (Large Digital Goods Merchant)\n- `5912` (Drug Stores and Pharmacies)\n- `5921` (Package Stores--Beer, Wine, and Liquor)\n- `5931` (Used Merchandise and Secondhand Stores)\n- `5932` (Antique Shop)\n- `5933` (Pawn Shop)\n- `5935` (Wrecking and Salvage Yards)\n- `5937` (Antique Reproduction Stores)\n- `5940` (Bicycle Shop-Sales and Services)\n- `5941` (Sporting Goods Stores)\n- `5942` (Book Stores)\n- `5943` (Stationery, Office and School Supply Stores)\n- `5944` (Jewelry, Watch, Clock, and Silverware Stores)\n- `5945` (Hobby, Toy and Game Stores)\n- `5946` (Camera and Photographic Supply Stores)\n- `5947` (Gift, Card, Novelty, and Souvenir Stores)\n- `5948` (Luggage and Leather Goods Stores)\n- `5949` (Sewing, Needlework, Fabric, and Piece Good Stores)\n- `5950` (Glassware and Crystal Stores)\n- `5960` (Direct Marketing Insurance Services)\n- `5961` (Mail Order)\n- `5962` (Direct Marketing -- Travel Related Arrangement Services)\n- `5963` (Direct Selling Establishments/Door to Door Sales)\n- `5964` (Catalog Merchant)\n- `5965` (Combined Catalog and Retail Merchant)\n- `5966` (Outbound Telemarketing Merchant)\n- `5967` (Direct Marketing -- Inbound Telemarketing Merchants)\n- `5968` (Continuity/Subscription Merchants)\n- `5969` (Direct Marketing/Direct Marketers--Not Elsewhere Classified)\n- `5970` (Artist Supply and Craft Stores)\n- `5971` (Art Dealers and Galleries)\n- `5972` (Stamp and Coin Stores)\n- `5973` (Religious Goods Stores)\n- `5975` (Hearing Aids--Sales, Service, and Supplies)\n- `5976` (Orthopedic Goods and Prosthetic Devices)\n- `5977` (Cosmetic Stores)\n- `5978` (Typewriter Stores--Sales, Service, and Rentals)\n- `5983` (Fuel Dealers--Fuel Oil, Wood, Coal, and Liquefied Petroleum)\n- `5992` (Florists)\n- `5993` (Cigar Stores & Stands)\n- `5994` (News Dealers & Newsstands)\n- `5995` (Pet Shops, Pet Food, and Supplies)\n- `5996` (Swimming Pools--Sales, Supplies, and Services)\n- `5997` (Electric Razor Stores Sales & Services)\n- `5998` (Tent and Awning Stores)\n- `5999` (Miscellaneous & Specialty Retail Stores)\n- `6010` (Financial Institutions--Manual Cash Disbursements)\n- `6011` (Financial Institutions--Automated Cash Disbursements)\n- `6012` (Quasi Cash - Financial Institution - Merchandise and Services)\n- `6050` (Quasi Cash - Member Financial Institution)\n- `6051` (MasterCard - Quasi Cash-Merchant)\n- `6211` (Securities - Brokers and Dealers)\n- `6300` (Insurance Sales and Underwriting)\n- `6381` (Insurance - Premiums)\n- `6399` (Insurance - Not Elsewhere Classified)\n- `6513` (Real Estate Agents and Managers - Rentals; Property Management)\n- `6529` (Remote Stored Value Load - Member Financial Institution)\n- `6530` (Remote Stored Value Load - Merchant)\n- `6531` (Payment Service Provider)\n- `6532` (Payment Transaction - Member)\n- `6533` (Payment Transaction - Merchant)\n- `6534` (Money Transfer - Member Financial Institution)\n- `6535` (Value Purchase - Member Financial Institution)\n- `6536` (MoneySend Intracountry)\n- `6537` (MoneySend Intercountry)\n- `6538` (MoneySend Funding)\n- `6540` (POI Funding Transactions (Excluding MoneySend))\n- `7011` (Lodging - Hotels, Motels, and Resorts)\n- `7012` (Timeshares)\n- `7032` (Sporting and Recreational Camps)\n- `7033` (Trailer Parks and Campgrounds)\n- `7210` (Laundry, Cleaning, and Garment Services)\n- `7211` (Laundry Services - Family and Commercial)\n- `7216` (Dry Cleaners)\n- `7217` (Carpet and Upholstery Cleaning)\n- `7221` (Photographic Studios)\n- `7230` (Beauty and Barber Shops)\n- `7251` (Shoe Repair Shops, Shoe Shine Parlors, and Hat Cleaning Shops)\n- `7261` (Funeral Services and Crematories)\n- `7273` (Dating Services)\n- `7276` (Tax Preparation Services)\n- `7277` (Counseling Services - Debt, Marriage, and Personal)\n- `7278` (Buying and Shopping Services and Clubs)\n- `7296` (Clothing Rental - Costumes, Uniforms and Formal Wear)\n- `7297` (Massage Parlors)\n- `7298` (Health and Beauty Spas)\n- `7299` (Miscellaneous Personal Services - Not Elsewhere Classified)\n- `7311` (Advertising Services)\n- `7321` (Consumer Credit Reporting Agencies)\n- `7332` (Blueprinting and Photocopying Services)\n- `7333` (Commercial Photography, Art, and Graphics)\n- `7338` (Quick Copy, Reproduction Service)\n- `7339` (Stenographic Service)\n- `7342` (Exterminating and Disinfecting Services)\n- `7349` (Cleaning, Maintenance & Janitorial Services)\n- `7361` (Employment Agencies and Temporary Help Services)\n- `7372` (Computer Programming, Data Processing, and Integrated Systems Design Services)\n- `7375` (Information Retrieval Services (Business to Business MCC))\n- `7379` (Computer Maintenance, Repair and Services (Business to Business MCC))\n- `7392` (Management, Consulting, and Public Relations Services)\n- `7393` (Detective Agencies, Protective Agencies, and Security Services, including Armored Cars and Guard Dogs)\n- `7394` (Equipment, Tool, Furniture, and Appliance Rental and Leasing)\n- `7395` (Photofinishing Laboratories and Photo Developing)\n- `7399` (Business Services)\n- `7511` (Truck Stops)\n- `7512` (Automobile Rental Agency)\n- `7513` (Truck and Utility Trailer Rentals)\n- `7519` (Motor Home and Recreational Vehicle Rentals)\n- `7523` (Parking Lots and Garages)\n- `7524` (Express Payment Service Mechants - Parking Lots and Garages)\n- `7531` (Automotive Top & Body Shops)\n- `7534` (Tire Retreading & Repair)\n- `7535` (Automotive Paint Shops)\n- `7538` (Automotive Service Shops (Non-Dealer))\n- `7542` (Car Washes)\n- `7549` (Towing Services)\n- `7622` (Electronic Repair Shops)\n- `7623` (Air Conditioning and Refrigeration Repair Shops)\n- `7629` (Electrical and Small Appliance Repair Shops)\n- `7631` (Watch, Clock, and Jewelry Repair Shops)\n- `7641` (Furniture - Reupholster, Repair, and Refinishing)\n- `7692` (Welding Services)\n- `7699` (Miscellaneous Repair Shops and Related Services)\n- `7778` (Citishare Cash Advance)\n- `7800` (Government-Owned Lotteries)\n- `7801` (Government-Licensed Casinos (Online Gambling))\n- `7802` (Government-Licensed Horse/Dog Racing)\n- `7829` (Motion Picture & Video Tape Production and Distribution (Business to Business MCC))\n- `7832` (Motion Picture Theater)\n- `7841` (DVD/Video Tape Rental Stores)\n- `7911` (Dance Halls, Studios & Schools)\n- `7922` (Theatrical Producers (except Motion Pictures) and Ticket Agencies)\n- `7929` (Bands, Orchestras & Misc Entertainment)\n- `7932` (Billiards & Pool Establishments)\n- `7933` (Bowling Alleys)\n- `7941` (Commercial Sports, Professional Sports Clubs, Athletic Fields, and Sports Promoters)\n- `7991` (Tourist Attractions and Exhibits)\n- `7992` (Public Golf Courses)\n- `7993` (Video Amusement Game Supply)\n- `7994` (Video Game Arcades and Establishments)\n- `7995` (Betting, including Lottery Tickets, Casino Gaming Chips, Off- Track Betting, and Wagers at Race Track)\n- `7996` (Amusement Parks, Circuses, Carnivals, and Fortune Tellers)\n- `7997` (Membership Clubs (Sports, Recreation, Athletic), Country Clubs, and Private Golf Courses)\n- `7998` (Aquarium, Seaquarium, Dolphinariums)\n- `7999` (Recreation Services - Not Elsewhere Classified)\n- `8011` (Doctors and Physicians - Not Elsewhere Classified)\n- `8021` (Dentists and Orthodontists)\n- `8031` (Osteopathic Physicians)\n- `8041` (Chiropractors)\n- `8042` (Optometrists and Ophthalmologists)\n- `8043` (Opticians, Optical Goods and Eyeglasses)\n- `8049` (Podiatrists and Chiropodists)\n- `8050` (Nursing and Personal Care Facilities)\n- `8062` (Hospitals)\n- `8071` (Medical and Dental Laboratories)\n- `8099` (Medical Services Health Practitioners - No Elsewhere Classified)\n- `8111` (Legal Services and Attorneys)\n- `8211` (Elementary and Secondary Schools)\n- `8220` (Colleges, Universities, Professional Schools, and Junior Colleges)\n- `8241` (Correspondence Schools)\n- `8244` (Business and Secretarial Schools)\n- `8249` (Trade and Vocational Schools)\n- `8299` (Schools and Educational Services - Not Elsewhere Classified)\n- `8351` (Child Care Services)\n- `8398` (Charitable and Social Service Organizations)\n- `8641` (Civic, Social, and Fraternal Associations)\n- `8651` (Political Organizations)\n- `8661` (Religious Organizations)\n- `8675` (Automobile Associations)\n- `8699` (Membership Organizations - Not Elsewhere Classified)\n- `8734` (Testing Laboratories (Not Medical) - (Business to Business MCC))\n- `8911` (Architectural, Engineering, and Surveying Services)\n- `8931` (Accounting, Auditing, and Bookkeeping Services)\n- `8999` (Professional Services - Not Elsewhere Classified)\n- `9211` (Court Costs, including Alimony and Child Support)\n- `9222` (Fines)\n- `9223` (Bail & Bond Payments)\n- `9311` (Tax Payments)\n- `9399` (Government Services - Not Elsewhere Classified)\n- `9401` (i-Purchasing)\n- `9402` (Postal Services)\n- `9405` (U.S. Fed Government Agencies)\n- `9700` (Automated Referral Service)\n- `9701` (Visa Credential Server)\n- `9702` (GCAS Emergency Services)\n- `9751` (U.K. Supermarkets, Electronic Hot File)\n- `9752` (U.K. Petrol Stations, Electronic Hot File)\n- `9753` (Consumer Electronics/Furniture Store)\n- `9754` (Quasi Cash - Gambling-Horse Racing, Dog Racing, State Lotteries)\n- `9950` (Intra-Company Purchases)", "example": "0742" } } }, "reference": { "type": "string", "description": "__Optional__. The payment reference or description. Limited to a maximum of 18 characters long." }, "amount": { "type": "number", "description": "Monetary amount." }, "currency": { "type": "string", "description": "Currency the payment amount is denoted in. Specified as a 3-letter ISO 4217 code." }, "amountDetails": { "title": "Amount Details", "required": [ "amount", "currency" ], "type": "object", "properties": { "amount": { "title": "Amount", "type": "number", "description": "__Mandatory__. The monetary value", "example": 10 }, "currency": { "title": "Currency", "type": "string", "description": "__Mandatory__. The [ISO 4217](https://www.xe.com/iso4217.php) currency code", "example": "GBP" } }, "description": "__Mandatory__. Monetary Amount." }, "createdAt": { "type": "string", "description": "Date and time of when the payment request was created.", "format": "date-time" }, "firstPaymentAmount": { "title": "Amount Details", "required": [ "amount", "currency" ], "type": "object", "properties": { "amount": { "title": "Amount", "type": "number", "description": "__Mandatory__. The monetary value", "example": 10 }, "currency": { "title": "Currency", "type": "string", "description": "__Mandatory__. The [ISO 4217](https://www.xe.com/iso4217.php) currency code", "example": "GBP" } }, "description": "__Mandatory__. Monetary Amount." }, "firstPaymentDateTime": { "type": "string", "description": "Date and time of when the first payment request is to be made.", "format": "date-time" }, "nextPaymentAmount": { "title": "Amount Details", "required": [ "amount", "currency" ], "type": "object", "properties": { "amount": { "title": "Amount", "type": "number", "description": "__Mandatory__. The monetary value", "example": 10 }, "currency": { "title": "Currency", "type": "string", "description": "__Mandatory__. The [ISO 4217](https://www.xe.com/iso4217.php) currency code", "example": "GBP" } }, "description": "__Mandatory__. Monetary Amount." }, "nextPaymentDateTime": { "type": "string", "description": "__Conditional__. Defines when the recurring payment is to be made.", "format": "date-time" }, "finalPaymentAmount": { "title": "Amount Details", "required": [ "amount", "currency" ], "type": "object", "properties": { "amount": { "title": "Amount", "type": "number", "description": "__Mandatory__. The monetary value", "example": 10 }, "currency": { "title": "Currency", "type": "string", "description": "__Mandatory__. The [ISO 4217](https://www.xe.com/iso4217.php) currency code", "example": "GBP" } }, "description": "__Mandatory__. Monetary Amount." }, "finalPaymentDateTime": { "type": "string", "description": "Date and time of when the final payment is to be made.", "format": "date-time" }, "numberOfPayments": { "type": "integer", "description": "Number of recurring payment requests to be made as part of the instructed payment schedule.", "format": "int32" }, "previousPaymentAmount": { "title": "Amount Details", "required": [ "amount", "currency" ], "type": "object", "properties": { "amount": { "title": "Amount", "type": "number", "description": "__Mandatory__. The monetary value", "example": 10 }, "currency": { "title": "Currency", "type": "string", "description": "__Mandatory__. The [ISO 4217](https://www.xe.com/iso4217.php) currency code", "example": "GBP" } }, "description": "__Mandatory__. Monetary Amount." }, "previousPaymentDateTime": { "type": "string", "description": "Date and time of when the previous payment request was posted.", "format": "date-time" }, "chargeDetails": { "type": "array", "items": { "type": "object", "description": "Details the charges that will apply to the payment.", "properties": { "chargeAmount": { "title": "Amount Details", "required": [ "amount", "currency" ], "type": "object", "properties": { "amount": { "title": "Amount", "type": "number", "description": "__Mandatory__. The monetary value", "example": 10 }, "currency": { "title": "Currency", "type": "string", "description": "__Mandatory__. The [ISO 4217](https://www.xe.com/iso4217.php) currency code", "example": "GBP" } }, "description": "__Mandatory__. Monetary Amount." }, "chargeType": { "description": "__Mandatory__. Specifies the nature of the transaction charge e.g. (Bank transfer fees).", "type": "string" }, "chargeTo": { "description": "__Mandatory__. States which party of the payment bears the charges.", "type": "string" } } } }, "scheduledPaymentType": { "type": "string", "description": "Details the execution type and the payment date between the payer and the payee." }, "scheduledPaymentDateTime": { "type": "string", "description": "Date and time of when the scheduled payment request will be made.", "format": "date-time" }, "frequency": { "type": "object", "description": "__Mandatory__. Defines the intervals at which payment should be made.", "properties": { "frequencyType": { "type": "string", "description": "__Mandatory__. See [payment frequency](/guides/payments/payment-execution/periodic-payments/#payment-frequency) for more information", "enum": [ "DAILY", "EVERY_WORKING_DAY", "CALENDAR_DAY", "WEEKLY", "EVERY_TWO_WEEKS", "MONTHLY", "EVERY_TWO_MONTHS", "QUARTERLY", "SEMIANNUAL", "ANNUAL" ] }, "intervalWeek": { "type": "integer", "description": "The weekly intervals at which a payment will be made. e.g. 1 = Every months, 2 = Every 2 months.", "format": "int32" }, "intervalMonth": { "type": "integer", "description": "The monthly intervals at which a payment will be made. e.g. 1 = Every month, 2 = Every 2 months", "format": "int32" }, "executionDay": { "type": "integer", "description": "The day on which a payment will be made, according to the weekly or monthly interval.", "format": "int32" } } }, "currencyOfTransfer": { "type": "string", "description": "__Mandatory__. The currency to be transferred to the payee. This may differ from the currency the payment is denoted in and the currency of the payer's account. Specified as a 3-letter code (ISO 4217)." }, "purpose": { "type": "string", "description": "Specifies the external purpose code for the `Institution` - IS0 20022." }, "priority": { "type": "string", "enum": [ "NORMAL", "URGENT" ] }, "exchangeRate": { "required": [ "rateType", "unitCurrency" ], "type": "object", "properties": { "unitCurrency": { "type": "string", "description": "__Mandatory__. The currency in which the rate of exchange is expressed in a currency exchange. In the example 1GBP = xxxCUR, the unit currency is `GBP`." }, "rate": { "type": "number", "description": "__Optional__. The factor used for conversion of an amount from one currency to another. This reflects the price at which one currency was bought with another currency." }, "rateType": { "type": "string", "description": "__Mandatory__. The type used to complete the currency exchange.", "enum": [ "ACTUAL", "AGREED", "INDICATIVE" ] }, "foreignExchangeContractReference": { "type": "string", "description": "__Optional__. The unique and unambiguous reference to the foreign exchange contract agreed between the initiating party/creditor and the debtor agent." }, "exchangeRateExpiryDate": { "type": "string", "format": "date-time" } } }, "refundAccount": { "type": "object", "description": "The account to which funds should be returned if the payment is to be later refunded.", "properties": { "name": { "type": "string" }, "accountIdentifications": { "uniqueItems": true, "type": "array", "items": { "title": "Account Identifications", "required": [ "type", "identification" ], "type": "object", "properties": { "type": { "title": "Account Identification Type", "type": "string", "description": "__Mandatory__. Used to describe the format of the account.\n\n See [Account Identification Combinations](/payments/payment-resources/intro-to-payment-execution#account-identifications-combinations) for more information on when to specify each type.", "example": "SORT_CODE", "enum": [ "SORT_CODE", "ACCOUNT_NUMBER", "IBAN", "BBAN", "BIC", "PAN", "MASKED_PAN", "MSISDN", "BSB", "NCC", "ABA", "ABA_WIRE", "ABA_ACH", "EMAIL", "ROLL_NUMBER", "BLZ", "IFS", "CLABE", "CTN", "BRANCH_CODE", "VIRTUAL_ACCOUNT_ID" ] }, "identification": { "title": "Account Identification", "type": "string", "description": "__Mandatory__. The value associated with the account identification type.\n\n See [Account Identification Combinations](/payments/payment-resources/intro-to-payment-execution#account-identifications-combinations) for more information on the format of the values.", "example": "401016" } } } } } }, "bulkAmountSum": { "type": "number" } } }