Campos de la estructura del mensaje de acuerdo a la especificación Swagger versión 2.0 | Observaciones |
Title | |
{ | |
"swagger": "2.0", | |
"info": { | |
"version": "v1.0.0", | La versión de la especificación de API que se documenta. |
"title": " Open data ATM API specification" | Título de la especificación de API que indica el Dato que se podrá compartir mediante esta. |
"description": "Location and services offered by ATMs" | Descripción de la funcionalidad de la API. |
}, | |
| |
Host | |
"host": " openapi.bankname.com", | Es la URI base del Proveedor de Datos |
"basePath": "/v1.0.0", | Es la ruta del recurso. Para este caso, v1' se refiere a la versión de la especificación de API |
"schemes": [ | |
"https" | Indica que el esquema de comunicación de datos es HTTPS |
] | |
| |
Produces | |
"produces": [ | |
" application/ json" | Indica cómo responderá la API. En este caso, la respuesta es una representación en formato JSON de la especificación contenida en la versión v1.0 |
| |
Tags | |
"tags": [ | |
{ | |
"name": "ATM", | |
"description": "Endpoint to request ATM data" | Es una etiqueta que indica que las respuestas de datos se relacionan a un recurso de tipo ATM. |
| |
Paths | |
"paths": { | |
"/atms": { | Es el punto de consulta (endpoint, en inglés) para acceder al recurso |
"get": { | El método de solicitud que se utiliza para acceder al recurso. |
"tags": [ | |
"ATM" | |
], | |
"description": "Gets a list of all `ATM` objects.", | Descripción de la funcionalidad del método GET |
Parameters | Se refiere a valores que pueden ser incluidos como parte de la petición de consulta que causen que el recurso responda de una manera particular. |
| |
"parameters": [ | |
{ | |
"name": "If-Modified-Since", | Nombre del parámetro. |
"type": "string", | El tipo de objeto que se espera que sea devuelto. |
"description": "Used for conditional request, to retrieve data only if modified since a given data", | Descripción de la funcionalidad del parámetro. Evita que sea devuelta una carga útil(1) completa, si el recurso que se está consultando no ha sido actualizado desde la última vez en que se accedió al mismo. |
"in": "header", | Especifica en donde se debe de devolver el valor, en este caso, en el encabezado del mensaje. |
"required": false | Indica si el valor requiere ser devuelto o no. En este caso, no es requerido. |
}, | |
{ | |
"name": "If-None-Match", | Nombre del parámetro. |
"type": "string", | El tipo de objeto que se espera que sea devuelto. |
"description": "Used for conditional request, to retrieve data only if the given Etag value does not match", | Descripción de la funcionalidad del parámetro. Evita que sea devuelta una carga útil completa, si el valor de la etiqueta Etag no coincide. |
"in": "header", | Especifica en donde se debe devolver el valor, en este caso, en el encabezado del mensaje. |
"required": false | Indica si el valor requiere ser devuelto o no. En este caso, no es requerido. |
} | |
], | |
| |
Responses | Respuestas de la API a la petición de consulta de Datos. Los códigos de respuesta que se muestran en esta especificación serán mandatorios, el detalle completo se puede consultar en la Tabla de Códigos HTTPS, misma que se describe en este documento. El Proveedor de Datos podrá incluir otros códigos de respuesta estándar, de los definidos por el protocolo HTTPS, en caso de que así lo considere. |
| |
"responses": { | |
"200": { | Es el código de respuesta estándar que devuelve el servidor después de la ejecución exitosa del método GET sobre el recurso ATM. |
"description": "Successful response with a list of `ATM` data", | |
"headers": { | |
"Strict-Transport-Security": { | |
"type": "string", | |
"description": "HTTPS strict transport security header", | |
"default": "max-age=31536000" | Especifica el tiempo en segundos (un año) en el cual el recurso puede ser accedido mediante el protocolo HTTPS. El código de tiempo de este campo puede ser diferente siempre y cuando su valor no sea menor. |
}, | |
"Etag": { | |
"type": "string", | |
"description": "A unique ID identifying whether this resource has changed" | Un identificador único que especifica si el recurso ha sido actualizado o no. |
}, | |
"Cache-Control": { | |
"type": "string", | |
"description": "Describes how long this response can be cached", | |
"default": "max-age=15552000" | Indica que la respuesta puede ser almacenada de manera confiable (cached, en inglés) cierto tiempo antes de consultar al endpoint por alguna actualización. Tratándose de datos abiertos, se definen 6 meses (expresados en segundos), el valor se puede modificar siempre y cuando este número no sea menor. |
}, | |
"X-Frame-Options": { | |
"type": "string", | |
"description": "Prevent this request from being loaded in any iframes", | |
"default": "DENY" | Previene que la respuesta sea cargada en un marco o frame. |
}, | |
"X-Content-Type-Options": { | |
"type": "string", | |
"description": "Ensures each page has a content type and prevents browsers from doing MIME type sniffing", | |
"default": "nosniff" | Evita que se devuelva otro tipo de formato que no sea JSON |
} | |
}, | |
| |
Schema y Meta Data | Es la información complementaria de la carga útil; son valores que se deben incluir en el cuerpo de dicha carga útil. |
| |
"schema": { | |
"type": "object", | Devuelve un tipo de objeto JSON con los metadatos: LastUpdated; TotalResults; Agreement; License y TermsOfUse. |
"properties": { | |
"meta": { | |
"title": "Meta data", | |
"type": "object", | |
"properties": { | |
"LastUpdated": { | |
"type": "string", | |
"format": "date-time" | Indica cuándo la carga útil del endpoint fue actualizada la última vez. |
}, | |
"TotalResults": { | |
"type": "integer" | Indica el número de registros en la carga útil |
}, | |
"Agreement": { | Hace referencia a que existe un acuerdo definido por cada Proveedor de Datos para el uso de la API con relación a los términos y condiciones que establezca dicho Proveedor de Datos. |
"type": "string", | |
"enum": [ | |
" El uso de la API y el dato que sea intercambiado a través de esta será sujeto a los términos y condiciones establecidos por el Proveedor de Datos" | |
] | |
}, | |
"License": { | El contenido de los campos License y TermsOfUse será definido por el acuerdo que cada Institución realice con el Solicitante de Datos. |
"description": "To be confirmed", | |
"type": "string", | |
"format": "uri", | |
"enum": [ | |
" To be confirmed" | |
] | |
}, | |
"TermsOfUse": { | |
"description": " To be confirmed", | |
"type": "string", | |
"format": "uri", | |
"enum": [ | |
"To be confirmed" | |
] | |
} | |
}, | |
"required": [ | |
"LastUpdated", | Indica que estos metadatos deben ser devueltos en cada respuesta. |
"TotalResults", | Indica que estos metadatos deben ser devueltos en cada respuesta. |
"Agreement", | Indica que estos metadatos deben ser devueltos en cada respuesta. |
"License", | Indica que estos metadatos deben ser devueltos en cada respuesta. |
"TermsOfUse" | Indica que estos metadatos deben ser devueltos en cada respuesta. |
], | |
"additionalProperties": false | |
Código de respuesta | Descripción en inglés | Descripción en español |
200 | Successful response with a list of `ATM` data. | Respuesta exitosa con una lista de datos del Cajero Automático |
400 | You have sent a request which could not be understood. | Usted ha enviado una solicitud de consulta que no se entiende. |
408 | Your client has failed to submit a request, and a timeout has occurred. | La solicitud de consulta ha fallado y el tiempo ha caducado. |
429 | You have requested this resource too often. | Usted ha solicitado consultar este recurso demasiadas veces. |
500 | An error occurred on the server. | Un error ha ocurrido en el servidor. |
503 | The service is temporarily unavailable. | El servicio no está disponible temporalmente. |
Elemento | Aclaración |
Categorías Mandatorios/Opcionales | Cuando la categoría es opcional, la designación de M/O de los subcampos solo aplica si esa categoría es utilizada. |
Columna K - Presence | Esta columna explica el número de veces que se podrá encontrar información en esa categoría. |
Mandatory = Mandatory . Presence = 1...many | Esto indica que la categoría es obligatoria y se espera como mínimo de 1 contenido de información hasta varios. |
Mandatory = Mandatory . Presence = 1...1 | Esto indica que el subcampo es obligatorio y se espera 1 contenido de información solamente. |
Mandatory = Optional . Presence = 0...1 | Esto indica que la categoría o subcampo es opcional y se espera 1 contenido de información si es seleccionada. |
Mandatory = Optional . Presence = 0...many | Esto indica que la categoría o subcampo es opcional y se esperan varios campos de información si es seleccionada. |
Postal Address - AddressLine con Presence = 0..7 | La razón es que, aunque hayan 6 subcategorías, se permite repetir una de ellas en caso de que la longitud del campo lo requiera. |
Consulta de Movimientos - Codigo ATTS | El código ATTS - Consulta de Movimientos, se refiere a consulta de movimientos para clientes del mismo banco. |
CATEGORIA | CAMPOS | CODE NAME SPANISH | SPANISH DEFINITION |
ATM SERVICES | | | |
| ATBA | ConsultaDeSaldo | Consulta de Saldo |
| ATBP | PagoServiciosEfectivoOnUs | Pago de Servicios en Efectivo Clientes Propios |
| ATBB | PagoServiciosEfectivoOffUs | Pago de Servicios en Efectivo Otros Clientes |
| ATBM | PagoServiciosCargoACuentaOnUs | Pago de Servicios con Cargo a Cuenta Clientes Propios |
| ATBO | PagoServiciosCargoACuentaOffUs | Pago de Servicios con Cargo a Cuenta Otros Clientes |
| ATCA | DepositosEfectivo | Depósitos de Efectivo |
| ATCD | Donativos | Donativos |
| ATCQ | DepositosCheques | Depósitos de Cheques |
| ATCT | RetiroConTarjeta | Retiro con tarjeta |
| ATST | RetiroSinTarjeta | Retiro sin tarjeta |
| ATFC | RetiroRapido | Montos predeterminados para retiro de efectivo rápido como primera opción después de autenticar al cliente |
| ATMB | RegistroBancaMovil | Registro de servicios de Banca Móvil |
| ATMP | RegistroWallets | Registro de/asociación de wallets |
| ATMM | CompraTiempoAireClienteMismoBanco | Compra tiempo aire cliente mismo banco |
| ATMO | CompraTiempoAireClienteOtrosBancos | Compra tiempo aire cliente otros bancos |
| ATOS | EnvioEstadoCuenta | Solicitud de envío de estado de cuenta |
| ATOT | Otro | Otro |
| ATPA | ActivacionTarjeta | Activación de tarjeta |
| ATPC | CambiodeNIP | Cambio de NIP |
| ATPU | DesbloqueoNIP | Desbloqueo de NIP |
| ATIC | ConsultaCLABE | Consulta de cuenta CLABE |
| ATCM | ConsultaSaldoCreditosONUS | Consulta de Saldos de Créditos que el cliente tenga con el banco: Ej. Crédito de nómina - Mismo Banco |
| ATCO | ConsultaSaldoCreditosOffUs | Consulta de Saldos de Créditos que el cliente tenga con otro banco: Ej. Crédito de nómina - Otros Bancos |
| ATTM | TransferenciaTercerosOnUs | Transferencias entre cuentas mismo banco |
| ATTO | TransferenciaTercerosOffUs | Transferencias entre cuentas de otros bancos |
| ATTC | TransferenciaCuentaPropia | Transferencias entre cuentas propias del cliente |
| ATPM | PagoTarjetaOnUs | Pago de tarjeta mismo banco |
| ATPO | PagoTarjetaOffUs | Pago de tarjeta otros bancos |
| ATTS | ConsultaMovimientos | Consulta de Movimientos |
| | | |
ATM ACCESSIBILITY | | | |
| ATAC | EntradaAudifonos | Entrada para audífonos |
| ATAD | PuertasAutomaticas | Puertas automáticas |
| ATER | RampaAccesoExterna | Rampa de acceso externa |
| ATIR | RampaAccesoInterna | Rampa de acceso interna |
| ATLA | AccesoSinEscalerasORampas | Acceso que no requiere subir/bajar escaleras o rampas |
| ATLL | AlturaSillaRuedas | Altura adecuada para usuarios con silla de ruedas |
| ATOT | OtrasUbicaciones | Otros ambientes, como por ejemplo aeropuerto, centros comerciales |
| ATPT | PantallaTouch | Equipo de autoservicio con pantalla touch |
| ATWA | AccesoSillaRuedas | Acceso para silla de ruedas |
| | | |
LOCATION CATEGORY | | | |
| ATBE | AccesoIndependienteASucursal | Con acceso independiente a la sucursal |
| ATBI | InteriorSucursal | Ubicado al interior de la sucursal, disponible durante horarios de servicio |
| ATBL | LobbySucursal | Ubicado en el lobby accesible por clientes del banco |
| ATOT | OtrasUbicaciones | Otros ambientes, como por ejemplo aeropuerto, centros comerciales |
| ATRO | UbicadoComercio | Cajero ubicado en un comercio |
| ATRU | UnidadMovil | Cajero es parte de una unidad bancaria móvil |
XPath | FieldName | CodeName Spanish | Spanish Definition | CodeName | Field/Code Description | Constraint(s) rule | Mandatory | Presence | Pattern | ISO Data Type / DataType | Comment |
openBankingATM | openBankingATM | NA | NA | | Environment of the ATM. | | | | | | |
openBankingATM/Brand | Brand | Marca | Marca del adquirente de las transacciones capturadas en el Cajero Automático | | Brand of the Acquirer of transactions captured by the ATM | | Mandatory | 1..many | | | |
openBankingATM/Brand/BrandName | BrandName | NombreMarca | Nombre o marca usada por una organización para identificar sus productos o servicios | | Brand Name that an organization uses to market its products or services to a consumer | | Mandatory | 1 | | Max140Text | |
openBankingATM/Brand/ATM | ATM | ATM | Información sobre el Cajero Automático | | ATM information. | | Mandatory | 1..many | | AutomatedTellerMachine10 | |
openBankingATM/Brand/ATM/Identification | Identification | IDCajero | ID de Cajero | | ATM terminal device identification for the acquirer and the issuer. | | Mandatory | 1..1 | | Max35Text | |
openBankingATM/Brand/ATM/SupportedLanguages | SupportedLanguages | LenguajesDisponibles | Lenguajes disponibles que contiene el ATM | | Identification of the language name according to the ISO 639-1 codes. The type is validated by the list of values coded with two alphabetic characters, defined in the standard. | | Optional | 0..many | [a-z]{2} | ISO2ALanguageCode | |
openBankingATM/Brand/ATM/ATMServices | ATMServices | ServiciosATM | Servicios ATM | | Describes the type of transaction available for a customer on an ATM. | C2:Only those CodeNames that are in the codelist can be supplied. If there is a missing code, then use 'OTHER' and fill out the CodeName and Description in the "OtherCodeType" block | Mandatory | 1..many | | ATMServiceType1Code | |
openBankingATM/Brand/ATM/ATMServices:code:ATBA | | ConsultaDeSaldo | Consulta de Saldo | Balance | Balance inquiry. | | | | | | |
openBankingATM/Brand/ATM/ATMServices:code:ATBP | | PagoServiciosEfectivoOnUs | Pago de Servicios en Efectivo Clientes Propios | BillPayments | Funds transfer to pay a third party. | | | | | | |
openBankingATM/Brand/ATM/ATMServices:code:ATBB | | PagoServiciosEfectivoOffUs | Pago de Servicios en Efectivo Otros Clientes | | | | | | | | |
openBankingATM/Brand/ATM/ATMServices:code:ATBM | | PagoServiciosCargoACuentaOnUs | Pago de Servicios con Cargo a Cuenta Clientes Propios | | | | | | | | |
openBankingATM/Brand/ATM/ATMServices:code:ATBO | | PagoServiciosCargoACuentaOffUs | Pago de Servicios con Cargo a Cuenta Otros Clientes | | | | | | | | |
openBankingATM/Brand/ATM/ATMServices:code:ATCA | | DepositosEfectivo | Depósitos de Efectivo | CashDeposits | Deposit of cash | | | | | | |
openBankingATM/Brand/ATM/ATMServices:code:ATCD | | Donativos | Donativos | CharityDonation | Funds transfer to make a charity donation | | | | | | |
openBankingATM/Brand/ATM/ATMServices:code:ATCQ | | DepositosCheques | Depósitos de Cheques | ChequeDeposits | Deposit of cheques | | | | | | |
openBankingATM/Brand/ATM/ATMServices:code:ATCT | | RetiroConTarjeta | Retiro con tarjeta | | | | | | | | |
openBankingATM/Brand/ATM/ATMServices:code:ATST | | RetiroSinTarjeta | Retiro sin tarjeta | | | | | | | | |
openBankingATM/Brand/ATM/ATMServices:code:ATFC | | RetiroRapido | Montos predeterminados para retiro de efectivo rápido como primera opción después de autenticar al cliente | FastCash | Deposit of media items verified by the ATM. | | | | | | Se acordó que la definición de este campo se aplica al uso en México, por lo cual la definición en Inglés es diferente a la acordada en Español. |
openBankingATM/Brand/ATM/ATMServices:code:ATMB | | RegistroBancaMovil | Registro de servicios de Banca Móvil | MobileBankingRegistration | The ATM is capable of registering the user for mobile banking | | | | | | |
openBankingATM/Brand/ATM/ATMServices:code:ATMP | | RegistroWallets | Registro de/asociación de wallets | MobilePaymentRegistration | The ATM is capable of registering the user for Mobile Payment Services | | | | | | |
openBankingATM/Brand/ATM/ATMServices:code:ATMM | | CompraTiempoAireClienteMismoBanco | Compra tiempo aire cliente mismo banco | | | | | | | | |
openBankingATM/Brand/ATM/ATMServices:code:ATMO | | CompraTiempoAireClienteOtrosBancos | Compra tiempo aire cliente otros bancos | | | | | | | | |
openBankingATM/Brand/ATM/ATMServices:code:ATOS | | EnvioEstadoCuenta | Solicitud de envío de estado de cuenta | OrderStatement | The ATM is capable of ordering a bank statement | | | | | | |
openBankingATM/Brand/ATM/ATMServices:code:ATOT | | Otro | Otro | Other | Fillout OtherATMService fields with code name and description of an ATM service which is not in the standard code list. | | | | | | |
openBankingATM/Brand/ATM/ATMServices:code:ATPA | | ActivacionTarjeta | Activación de tarjeta | PINActivation | The ATM is capable of activating a debit card using a PIN | | | | | | |
openBankingATM/Brand/ATM/ATMServices:code:ATPC | | CambiodeNIP | Cambio de NIP | PINChange | Modification of the card PIN value. | | | | | | |
openBankingATM/Brand/ATM/ATMServices:code:ATPU | | DesbloqueoNIP | Desbloqueo de NIP | PINUnblock | Unblock the PIN. | | | | | | |
openBankingATM/Brand/ATM/ATMServices:code:ATIC | | ConsultaCLABE | Consulta de cuenta CLABE | ConsultaCLABE | | | | | | | |
openBankingATM/Brand/ATM/ATMServices:code:ATCM | | ConsultaSaldoCreditosOnUs | Consulta de Saldos de Créditos que el cliente tenga con el banco: Ej. Crédito de nómina - Mismo Banco | ConsultaSaldoCreditosONUS | | | | | | | |
openBankingATM/Brand/ATM/ATMServices:code:ATCO | | ConsultaSaldoCreditosOffUs | Consulta de Saldos de Créditos que el cliente tenga con otro banco: Ej. Crédito de nómina - Otros Bancos | ConsultaSaldoCreditosOFFUS | | | | | | | |
openBankingATM/Brand/ATM/ATMServices:code:ATTM | | TransferenciaTercerosOnUs | Transferencias entre cuentas mismo banco | TransferenciaTercerosONUS | | | | | | | |
openBankingATM/Brand/ATM/ATMServices:code:ATTO | | TransferenciaTercerosOffUs | Transferencias entre cuentas de otros bancos | TransferenciaTercerosOFFUS | | | | | | | |
openBankingATM/Brand/ATM/ATMServices:code:ATTC | | TransferenciaCuentaPropia | Transferencias entre cuentas propias del cliente | TransferenciaCuentaPropia | Transferencias entre cuentas propias del cliente | | | | | | |
openBankingATM/Brand/ATM/ATMServices:code:ATPM | | PagoTarjetaOnUs | Pago de tarjeta mismo banco | PagoTarjetaONUS | | | | | | | |
openBankingATM/Brand/ATM/ATMServices:code:ATPO | | PagoTarjetaOffUs | Pago de tarjeta otros bancos | PagoTarjetaOFFUS | | | | | | | |
openBankingATM/Brand/ATM/ATMServices:code:ATTS | | ConsultaMovimientos | Consulta de Movimientos | | Ask for account mini statement information to a related customer account. | | | | | | |
openBankingATM/Brand/ATM/Accessibility | Accessibility | Accesibilidad | Accesibilidad. Lista de Opciones | | Indicates Types of Accessibility | C2:Only those CodeNames that are in the codelist can be supplied. If there is a missing code, then use 'OTHER' and fill out the CodeName and Description in the "OtherCodeType" block | Optional | 0...many | | PointOfInteractionCapabilities7 | |
openBankingATM/Brand/ATM/Accessibility:code:ATAC | | EntradaAudifonos | Entrada para audífonos | AudioCashMachine | The ATM has a headphone jack | | | | | | |
openBankingATM/Brand/ATM/Accessibility:code:ATAD | | PuertasAutomaticas | Puertas automáticas | AutomaticDoors | Access to the ATM is provided by automatic doors | | | | | | |
openBankingATM/Brand/ATM/Accessibility:code:ATER | | RampaAccesoExterna | Rampa de acceso externa | ExternalRamp | Access to the ATM is provided by means of an external ramp | | | | | | |
openBankingATM/Brand/ATM/Accessibility:code:ATIR | | RampaAccesoInterna | Rampa de acceso interna | InternalRamp | Access to the ATM is provided by means of an internal ramp | | | | | | |
openBankingATM/Brand/ATM/Accessibility:code:ATLA | | AccesoSinEscalerasORampas | Acceso que no requiere subir/bajar escaleras o rampas | LevelAccess | Level access to the ATM not impeded by any step or ramp | | | | | | |
openBankingATM/Brand/ATM/Accessibility:code:ATLL | | AlturaSillaRuedas | Altura adecuada para usuarios con silla de ruedas | LowerLevelCounter | Access to the ATM is at a low level suitable for wheelchair users | | | | | | |
openBankingATM/Brand/ATM/Accessibility:code:ATOT | | OtrasUbicaciones | Otros ambientes, como por ejemplo aeropuerto, centros comerciales | Other | Used to indicate that the code is not in this standard accessibility list. Note: OtherAccessibility can be used to supply the code, name and description. | | | | | | |
openBankingATM/Brand/ATM/Accessibility:code:ATPT | | PantallaTouch | Equipo de autoservicio con pantalla touch | PantallaTouch | | | | | | xs:boolean | |
openBankingATM/Brand/ATM/Accessibility:code:ATWA | | AccesoSillaRuedas | Acceso para silla de ruedas | WheelchairAccess | The ATM is accessible by wheelchair users | | | | | | |
openBankingATM/Brand/ATM/Access24HoursIndicator | Access24HoursIndicator | IndicadorAcceso24Horas | Indicador de acceso al ATM las 24 horas | | Indicates that the ATM is available for use by customers 24 hours per day | | Optional | 0..1 | | xs:boolean | |
openBankingATM/Brand/ATM/SupportedCurrencies | SupportedCurrencies | DivisasDisponibles | Divisas disponibles | | All ISO 4217 defined currency supported by the ATM. | | Mandatory | 1..many | [A-Z]{3} | ActiveCurrencyCode | |
openBankingATM/Brand/ATM/MinimumPossible Amount | MinimumPossibleAmount | MontoMinimoPermitido | Monto mínimo permitido para la transacción | | Minimum amount allowed for a transaction in the service. | | Optional | 0..1 | ^-?\\d{1,10}\\.?\\d{0,2}$ | | Este código designa monto y centavos. El signo "$" al final marca que no pueden ser otros números de dígitos o formato que no sea ese. La moneda está determinada en Supported Currencies. |
openBankingATM/Brand/ATM/Note | Note | DescripcionAdicional | Descripción adicional sobre el ATM | | Summary description of the ATM. | | Optional | 0..many | | Max2000Text | |
openBankingATM/Brand/ATM/OtherAccessibility | OtherAccessibility | OtraAccesibilidad | Código o nombre que describa cualquier otra opción de accesibilidad | | Enter a new code , name and description for any other ATM accessibility options | | Optional | 0..many | | OB_OtherCodeType1 | |
openBankingATM/Brand/ATM/OtherAccessibility/Code | Code | Codigo | La clave de cuatro letras dentro de un archivo XML para identificar a un código | | The four letter Mnemonic used within an XML file to identify a code | | Optional | 0..1 | ^\\w{0,4}$ | OB_CodeMnemonic | |
openBankingATM/Brand/ATM/OtherAccessibility/Description | Description | Descripcion | Descripción del Código | | Description to describe the purpose of the code | | Mandatory | 1..1 | | Max350Text | |
openBankingATM/Brand/ATM/OtherAccessibility/Name | Name | Nombre | El nombre asociado con el código | | Long name associated with the code | | Mandatory | 1..1 | | Max70Text | |
openBankingATM/Brand/ATM/OtherATMServices | OtherATMServices | OtrosServiciosATM | Otros servicios que el ATM pueda otorgar | | Enter a new code , name and description for any other ATM Service | | Optional | 0..many | | OB_OtherCodeType1 | |
openBankingATM/Brand/ATM/OtherATMServices/Code | Code | Codigo | La clave de cuatro letras dentro de un archivo XML para identificar a un código | | The four letter Mnemonic used within an XML file to identify a code | | Optional | 0..1 | ^\\w{0,4}$ | OB_CodeMnemonic | |
openBankingATM/Brand/ATM/OtherATMServices/Description | Description | Descripcion | Descripción del código | | Description to describe the purpose of the code | | Mandatory | 1..1 | | Max350Text | |
openBankingATM/Brand/ATM/OtherATMServices/Name | Name | Nombre | El nombre asociado con el código | | Long name associated with the code | | Mandatory | 1..1 | | Max70Text | |
openBankingATM/Brand/ATM/Branch | Branch | Sucursal | Información que ubica e identifica una sucursal o institución financiera | | Information that locates and identifies a specific branch of a financial institution. | | Optional | 0..1 | | BranchData2 | |
openBankingATM/Brand/ATM/Branch/Identification | Identification | Identificacion | ID de la sucursal | | Unique and unambiguous identification of a branch of a financial institution. | | Optional | 0..1 | | Max35Text | |
openBankingATM/Brand/ATM/Location | Location | Ubicacion | La ubicación del ATM | | Location of the ATM. | | Mandatory | 1..1 | | PostalAddress17 | |
openBankingATM/Brand/ATM/Location/Location Category | LocationCategory | CategoriaUbicacion | Categoría de Ubicación | | Indicates the environment of the ATM. | C2:Only those CodeNames that are in the codelist can be supplied. If there is a missing code, then use 'OTHER' and fill out the CodeName and Description in the "OtherCodeType" block | Optional | 0..many | | TransactionEnvironment2Code | |
openBankingATM/Brand/ATM/Location/LocationCategory:code:ATBE | | AccesoIndependienteASucursal | Con acceso independiente a la sucursal | BranchExternal | ATM is located on a bank branch external wall | | | | | | |
openBankingATM/Brand/ATM/Location/LocationCategory:code:ATBI | | InteriorSucursal | Ubicado al interior de la sucursal, disponible durante horarios de servicio | BranchInternal | ATM is located inside a bank branch and is only available during opening hours | | | | | | |
openBankingATM/Brand/ATM/Location/LocationCategory:code:ATBL | | LobbySucursal | Ubicado en el lobby accesible por clientes del banco | BranchLobby | ATM is located in a lobby which is accessible by the banks customers | | | | | | |
openBankingATM/Brand/ATM/Location/LocationCategory:code:ATOT | | OtrasUbicaciones | Otros ambientes, como por ejemplo aeropuerto, centros comerciales | Other | Other environments, for instance a mall or an airport. | | | | | | |
openBankingATM/Brand/ATM/Location/LocationCategory:code:ATRO | | UbicadoComercio | Cajero ubicado en un comercio | RetailerOutlet | ATM is located at a retailer outlet | | | | | | |
openBankingATM/Brand/ATM/Location/LocationCategory:code:ATRU | | UnidadMovil | Cajero es parte de una unidad bancaria móvil | RemoteUnit | ATM is a part of a mobile banking facility | | | | | | |
openBankingATM/Brand/ATM/Location/OtherLocationCategory | OtherLocationCategory | OtraCategoriaUbicacion | Otra categoría de ubicación. Permite registrar un nuevo código, nombre y descripción para agregar otra categoría | | Enter a new code , name and description for any other location category | | Optional | 0..many | | | |
openBankingATM/Brand/ATM/Location/OtherLocationCategory/Code | Code | Codigo | La clave de cuatro letras dentro de un archivo XML para identificar a un código | | The four letter Mnemonic used within an XML file to identify a code | | Optional | 0..1 | ^\\w{0,4}$ | Max4Text | |
openBankingATM/Brand/ATM/Location/OtherLocationCategory/Description | Description | Descripcion del codigo | Descripción del código | | Description to describe the purpose of the code | | Mandatory | 1..1 | | Max350Text | |
openBankingATM/Brand/ATM/Location/OtherLocationCategory/Name | Name | Nombre | El nombre asociado con el código | | Long name associated with the code | | Mandatory | 1..1 | | Max70Text | |
openBankingATM/Brand/ATM/Location/Site | Site | Sitio | Usado internamente para identificar la ubicación de un ATM | | Used by a Financial Institution internally to identify the location of an ATM. | | Optional | 0..1 | | OB_Site1 | |
openBankingATM/Brand/ATM/Location/Site/ Identification | Identification | Identificacion | Identificación de la ubicación de ATM otorgada por la institución financiera | | ATM site identification for the Financial Institution. | | Optional | 0..1 | | Max35Text | |
openBankingATM/Brand/ATM/Location/Site/Name | Name | Nombre | Nombre del ATM usado por la entidad financiera | | ATM site name as used by Financial Institution. | | Optional | 0..1 | | Max140Text | |
openBankingATM/Brand/ATM/Location/PostalAddress | PostalAddress | DireccionPostal | Dirección Postal | | Information that locates and identifies a specific address, as defined by postal services or in free format text. | C3:Either */GeoLocation/Latitude & */GeoLocation/Longitude must be supplied (preferred) or a combination of */PostalAddress/BuildingNumber and */PostalAddress/PostCode. Latitude & Longitude (in decimal degrees) | Mandatory | 1..1 | | PostalAddress | |
openBankingATM/Brand/ATM/Location/PostalAddress/AddressLine | AddressLine | DireccionCompleta | Dirección completa (tipo correo postal). Lugar en que se encuentra ubicado el cajero automático. | DireccionCompleta | Dirección completa (tipo correo postal). Lugar en que se encuentra ubicado el cajero automático. | | Optional | 0..7 | | Max70Text | |
openBankingATM/Brand/ATM/Location/Postal Address/BuildingNumber | BuildingNumber | NumeroExternoInterno | Corresponde al número externo e interno (cuando aplique) de la vialidad en donde se encuentra localizado el cajero automático. Número externo se refiere a los caracteres alfanuméricos y símbolos que identifican el inmueble donde se ubica el cajero en una vialidad (ejemplos: 125, 1098, 572-A, Domicilio Conocido, Manzana 15, Lote 23). Número interno se refiere a los caracteres alfanuméricos y símbolos que identifican una o más ubicaciones pertenecientes a un número exterior (Ejemplos: 2, Local C, L-5). | NumeroExternoInterno | Corresponde al número externo e interno (cuando aplique) de la vialidad en donde se encuentra localizado el cajero automático. Número externo se refiere a los caracteres alfanuméricos y símbolos que identifican el inmueble donde se ubica el cajero en una vialidad (ejemplos: 125, 1098, 572-A, Domicilio Conocido, Manzana 15, Lote 23). Número interno se refiere a los caracteres alfanuméricos y símbolos que identifican una o más ubicaciones pertenecientes a un número exterior (Ejemplos: 2, Local C, L-5). | | Optional | 0..1 | | Max350Text | |
openBankingATM/Brand/ATM/Location/PostalAddress/StreetName | StreetName | Vialidad | Corresponde al tipo y nombre de la vialidad en donde se encuentra localizado el cajero automático. Tipo de Vialidad: Clasificación que se le da a la vialidad, en función del tránsito vehicular y/o peatonal (Ej. Avenida, Boulevard, Calzada, Calle, Privada). Nombre de Vialidad: Nombre propio que identifica a la vialidad (Ej. Benito Juárez, Las Flores, Río Blanco, Tlalpan, Revolución). | | Name of a street or thoroughfare. | | Optional | 0..1 | | Max70Text | |
openBankingATM/Brand/ATM/Location/PostalAddress/TownName | TownName | Localidad/Municipio | Corresponde a la localidad, colonia y el municipio o alcaldía del domicilio donde se encuentra ubicado el cajero (Ej. Ex-Ejido De Santa Úrsula Coapa, Coyoacán / Chula Vista, Tijuana / Vallarta, Mexicali / Centro, Mérida / Colonial, Cd Juárez). | | Name of a built-up area, with defined boundaries, and a local government. | | Optional | 0..1 | | Max35Text | |
openBankingATM/Brand/ATM/Location/PostalAddress/CountrySubDivision | CountrySubDivision | Estado | Nombre propio que identifica a las Entidades Federativas (Morelos, Yucatán, Sonora, Tamaulipas, Baja California Norte, Ciudad de México). | | Identifies a subdivision of a country, for instance state, region, county. | | Optional | 0..1 | | Max35Text | |
openBankingATM/Brand/ATM/Location/PostalAddress/Country | Country | Pais | Código ISO de 2 letras designado para identificar a México y que es reconocido internacionalmente: MX | | Nation with its own government, occupying a particular territory. | | Optional | 0..1 | [A-Z]{2} | CountryCode | |
openBankingATM/Brand/ATM/Location/Postal Address/PostCode | PostCode | CP | Número que identifica al código postal, constituido por cinco dígitos, obtenido de la información oficial del Servicio Postal Mexicano. | | Identifier consisting of a group of letters and/or numbers that is added to a postal address to assist the sorting of mail. | | Optional | 0..1 | | Max16Text | |
openBankingATM/Brand/ATM/Location/PostalAddress/GeoLocation | GeoLocation | GeoLocalizacion | Geolocalización. Ubicación geográfica del cajero especificada por coordenadas geográficas o en formato UTM, Se especifica por dos números que representan la posición vertical y horizontal en la tierra. | | Geographic location of the ATM specified by geographic coordinates or UTM coordinates. | | Optional | 0..1 | | OB_GeographicLocation1Choice | |
openBankingATM/Brand/ATM/Location/PostalAddress/GeoLocation/GeographicCoordinates | GeographicCoordinates | Coordenadas Geograficas | Usando paralelos y meridianos, permiten localizar a un ATM con suma exactitud. | | Location on the earth specified by two numbers representing vertical and horizontal position. | | Mandatory | 1..1 | | GeographicCoordinates1 | |
openBankingATM/Brand/ATM/Location/PostalAddress/GeoLocation/GeographicCoordinates/Latitude | Latitude | Latitud | Ubicación geográfica por latitud. | | Latitude measured in decimal degrees. | | Mandatory | 1..1 | ^-?\\d{1,3}\\.\\d{1,8}$ | Max16Text | Formatted into DecimalDegree |
openBankingATM/Brand/ATM/Location/PostalAddress/GeoLocation/GeographicCoordinates/Longitude | Longitude | Longitud | Ubicación geográfica por longitud. | | Angular measurement of the distance of a location on the earth east or west of the Greenwich observatory. The longitude is measured in decimal degrees. | | Mandatory | 1..1 | ^-?\\d{1,3}\\.\\d{1,8}$ | Max16Text | Formatted into DecimalDegree |
openBankingATM/Brand/ATM/FeeSurcharges | FeeSurcharges | CargosComisiones | Cargos y comisiones. | | | | Optional | 0..1 | | | |
openBankingATM/Brand/ATM/FeeSurcharges/CashWithdrawalNational | CashWithdrawalNational | ComisionRetiroEfectivoNacional | Monto de comisiones de retiro de efectivo Otros Bancos (Surcharge) Nacional. | | | | Optional | 0..1 | | Monto Comisión + Código de Moneda (3 Caracteres) ^-?\\d{1,10}\\.?\\d{0,2}\\s\\w[A-Z]{3}$ | |
openBankingATM/Brand/ATM/FeeSurcharges/CashWithdrawalInternational | CashWithdrawalInternational | ComisionRetiroEfectivoInternacional | Monto de comisiones de retiro de efectivo Otros Bancos (Surcharge) Internacional. | | | | Optional | 0..1 | | Monto Comisión + Código de Moneda (3 Caracteres) ^-?\\d{1,10}\\.?\\d{0,2}\\s\\w[A-Z]{3}$ | |
openBankingATM/Brand/ATM/FeeSurcharges/BalanceInquiry | BalanceInquiry | ComisionConsultaSaldo | Monto de comisiones consulta de saldo Otros Bancos (Surcharge). | | | | Optional | 0..1 | | Monto Comisión + Código de Moneda (3 Caracteres) ^-?\\d{1,10}\\.?\\d{0,2}\\s\\w[A-Z]{3}$ | |
Categoría | Campos | XPath | FieldName | Code Name Spanish | Spanish Translation | Constraint(s) rule | Mandatory | Presence | Pattern | ISO Data Type / ataType | Comment |
Brand | | openBankingATM/Brand | Brand | Marca | Marca del adquirente de las transacciones capturadas en el Cajero Automático | | Mandatory | 1..many | | | |
| | | | | | | | | | | |
| | | | | | | | | | | |
| | | | | | | | | | | |
| Brand Name | openBankingATM/Brand/BrandName | BrandName | NombreMarca | Nombre o marca usada por una organización para identificar sus productos o servicios | | Mandatory | 1 | | Max140Text | |
Categoría | Campos | XPath | FieldName | CodeNameSpanish | Spanish Definition | Constraint(s) rule | Mandatory | Presence | Pattern | ISO Data Type / DataType | Comment |
ATM | | openBankingATM/Brand/ATM | ATM | ATM | Información sobre el Cajero Automático | | Mandatory | 1..many | | AutomatedTellerMa chine10 | |
| | | | | | | | | | | |
| | | | | | | | | | | |
| | | | | | | | | | | |
| | | | | | | | | | | |
| Identification | openBankingATM/Brand/ATM/Ident ification | Identification | IDCajero | ID de Cajero | | Mandatory | 1..1 | | Max35Text | |
| SupportedLa nguages | openBankingATM/Brand/ATM/Supp ortedLanguages | SupportedLangua ges | LenguajesDisponibles | Lenguajes disponibles que contiene el ATM | | Optional | 0..many | [a-z]{2} | ISO2ALanguageCo de | |
| ATMServices | openBankingATM/Brand/ATM/ATM Services | ATMServices | ServiciosATM | Servicios ATM | C2:Only those CodeNames that are in the codelist can be supplied. If there is a missing code, then use 'OTHER' and fill out the CodeName and Description in the "OtherCodeType" block | Mandatory | 1..many | | ATMServiceType1C ode | |
| | openBankingATM/Brand/ATM/ATM Services:code:ATBA | | ConsultaDeSaldo | Consulta de Saldo | | | | | | |
| | openBankingATM/Brand/ATM/ATM Services:code:ATBP | | PagoServiciosEfectivo OnUs | Pago de Servicios en Efectivo Clientes Propios | | | | | | |
| | openBankingATM/Brand/ATM/ATM Services:code:ATBB | | PagoServiciosEfectivo OffUs | Pago de Servicios en Efectivo Otros Clientes | | | | | | |
| | openBankingATM/Brand/ATM/ATM Services:code:ATBM | | PagoServiciosCargoA CuentaOnUs | Pago de Servicios con Cargo a Cuenta Clientes Propios | | | | | | |
| | openBankingATM/Brand/ATM/ATM Services:code:ATBO | | PagoServiciosCargoA CuentaOffUs | Pago de Servicios con Cargo a Cuenta Otros Clientes | | | | | | |
| | openBankingATM/Brand/ATM/ATM Services:code:ATCA | | DepositosEfectivo | Depósitos de Efectivo | | | | | | |
| | openBankingATM/Brand/ATM/ATM Services:code:ATCD | | Donativos | Donativos | | | | | | |
| | openBankingATM/Brand/ATM/ATM Services:code:ATCQ | | DepositosCheques | Depósitos de Cheques | | | | | | |
| | openBankingATM/Brand/ATM/ATM Services:code:ATCT | | RetiroConTarjeta | Retiro con tarjeta | | | | | | |
| | openBankingATM/Brand/ATM/ATM Services:code:ATST | | RetiroSinTarjeta | Retiro sin tarjeta | | | | | | |
| | openBankingATM/Brand/ATM/ATM Services:code:ATFC | | RetiroRapido | Montos predeterminados para retiro de efectivo rápido como primera opción después de autenticar al cliente | | | | | | |
| | openBankingATM/Brand/ATM/ATM Services:code:ATMB | | RegistroBancaMovil | Registro de servicios de Banca Móvil | | | | | | |
| | openBankingATM/Brand/ATM/ATM Services:code:ATMP | | RegistroWallets | Registro de/ asociación de wallets | | | | | | |
| | openBankingATM/Brand/ATM/ATM Services:code:ATMM | | CompraTiempoAireCli enteMismoBanco | Compra tiempo aire cliente mismo banco | | | | | | |
| | openBankingATM/Brand/ATM/ATM Services:code:ATMO | | CompraTiempoAireCli enteOtrosBancos | Compra tiempo aire cliente otros bancos | | | | | | |
| | openBankingATM/Brand/ATM/ATM Services:code:ATOS | | EnvioEstadoCuenta | Solicitud de envío de estado de cuenta | | | | | | |
| | openBankingATM/Brand/ATM/ATM Services:code:ATOT | | Otro | Otro | | | | | | |
| | openBankingATM/Brand/ATM/ATM Services:code:ATPA | | ActivacionTarjeta | Activación de tarjeta | | | | | | |
| | openBankingATM/Brand/ATM/ATM Services:code:ATPC | | CambiodeNIP | Cambio de NIP | | | | | | |
| | openBankingATM/Brand/ATM/ATM Services:code:ATPU | | DesbloqueoNIP | Desbloqueo de NIP | | | | | | |
| | openBankingATM/Brand/ATM/ATM Services:code:ATIC | | ConsultaCLABE | Consulta de cuenta CLABE | | | | | | |
| | openBankingATM/Brand/ATM/ATM Services:code:ATCM | | ConsultaSaldoCreditos ONUS | Consulta de Saldos de Créditos que el cliente tenga con el banco: Ej. Crédito de nómina - Mismo Banco | | | | | | |
| | openBankingATM/Brand/ATM/ATM Services:code:ATCO | | ConsultaSaldoCreditos OffUs | Consulta de Saldos de Créditos que el cliente tenga con otro banco: Ej. Crédito de nómina - Otros Bancos | | | | | | |
| | openBankingATM/Brand/ATM/ATM Services:code:ATTM | | TransferenciaTerceros OnUs | Transferencias entre cuentas mismo banco | | | | | | |
| | openBankingATM/Brand/ATM/ATM Services:code:ATTO | | TransferenciaTerceros OffUs | Transferencias entre cuentas de otros bancos | | | | | | |
| | openBankingATM/Brand/ATM/ATM Services:code:ATTC | | TransferenciaCuentaP ropia | Transferencias entre cuentas propias del cliente | | | | | | |
| | openBankingATM/Brand/ATM/ATM Services:code:ATPM | | PagoTarjetaOnUs | Pago de tarjeta mismo banco | | | | | | |
| | openBankingATM/Brand/ATM/ATM Services:code:ATPO | | PagoTarjetaOffUs | Pago de tarjeta otros bancos | | | | | | |
| | openBankingATM/Brand/ATM/ATM Services:code:ATTS | | ConsultaMovimientos | Consulta de Movimientos | | | | | | |
| Accessibilty | openBankingATM/Brand/ATM/Acce ssibility | Accessibility | Accesibilidad | Accesibilidad. Lista de Opciones | C2:Only those CodeNames that are in the codelist can be supplied. If there is a missing code, then use 'OTHER' and fill out the CodeName and Description in the "OtherCodeType" block | Optional | 0..many | | PointOfInteractionC apabilities7 | |
| | openBankingATM/Brand/ATM/Acce ssibility:code:ATAC | | EntradaAudifonos | Entrada para audífonos | | | | | | |
| | openBankingATM/Brand/ATM/Acce ssibility:code:ATAD | | PuertasAutomaticas | Puertas automáticas | | | | | | |
| | openBankingATM/Brand/ATM/Acce ssibility:code:ATER | | RampaAccesoExterna | Rampa de acceso externa | | | | | | |
| | openBankingATM/Brand/ATM/Acce ssibility:code:ATIR | | RampaAccesoInterna | Rampa de acceso interna | | | | | | |
| | openBankingATM/Brand/ATM/Acce ssibility:code:ATLA | | AccesoSinEscalerasO Rampas | Acceso que no requiere subir/bajar escaleras o rampas | | | | | | |
| | openBankingATM/Brand/ATM/Acce ssibility:code:ATLL | | AlturaSillaRuedas | Altura adecuada para usuarios con silla de ruedas | | | | | | |
| | openBankingATM/Brand/ATM/Acce ssibility:code:ATOT | | OtrasUbicaciones | Otros ambientes, como por ejemplo aeropuerto, centros comerciales | | | | | | |
| | openBankingATM/Brand/ATM/Acce ssibility:code:ATPT | | PantallaTouch | Equipo de autoservicio con pantalla touch | | | | | xs:boolean | |
| | openBankingATM/Brand/ATM/Acce ssibility:code:ATWA | | AccesoSillaRuedas | Acceso para silla de ruedas | | | | | | |
| Access24Ho urIndicator | openBankingATM/Brand/ATM/Acce ss24HoursIndicator | Access24HoursIn dicator | IndicadorAcceso24Hor as | Indicador de acceso al ATM las 24 horas | | Optional | 0..1 | | xs:boolean | |
| SupportedCu rrencies | openBankingATM/Brand/ATM/Supp ortedCurrencies | SupportedCurren cies | DivisasDisponibles | Divisas disponibles | | Mandatory | 1..many | [A-Z] {3} | ActiveCurrencyCod e | |
| MinimumPos sibleAmount | openBankingATM/Brand/ATM/Mini mumPossibleAmount | MinimumPossible Amount | MontoMinimoPermitido | Monto mínimo permitido para la transacción | | Optional | 0..1 | ^-?\\d{1,10} \\.?\\d{0,2}$ - ?\d{1,10}\.?\ d{0,2}$ | String/Number | Este código designa monto y centavos. El signo "$" al final marca que no pueden ser otros números de dígitos o formato que no sea ese. La moneda está determinada en Supported Currencies |
| Note | openBankingATM/Brand/ATM/Note | Note | DescripcionAdicional | Descripción adicional sobre el ATM | | Optional | 0..many | | Max2000Text | |
Categoría | Campos | XPath | FieldName | Code Name Spanish | Spanish Translation | Constraint(s) rule | Mandatory | Presence | Pattern | ISO Data Type / DataType | Comment |
OtherAccessibility | openBankingATM/Brand/ATM/ OtherAccessibility | OtherAccessibility | OtraAccesibilidad | Código o nombre que describa cualquier otra opción de accesibilidad | | Optional | 0..many | | OB_OtherCodeType1 | | |
| | | | | | | | | | | |
| | | | | | | | | | | |
| | | | | | | | | | | |
| | | | | | | | | | | |
| | | | | | | | | | | |
| Code | openBankingATM/Brand/ATM/ OtherAccessibility/Code | Code | Codigo | La clave de cuatro letras dentro de un archivo XML para identificar a un código | | Optional | 0..1 | ^\\w{0,4}$ [A-Z]{4} | OB_CodeMnemonic | |
| Description | openBankingATM/Brand/ATM/ OtherAccessibility/Description | Description | Descripcion | Descripción del código | | Mandatory | 1..1 | | Max350Text | |
| Name | openBankingATM/Brand/ATM/ OtherAccessibility/Name | Name | Nombre | El nombre asociado con el código | | Mandatory | 1..1 | | Max70Text | |
Categoría | Campos | XPath | FieldName | Code Name Spanish | Spanish Trnalsation | Constraint(s) rule | Mandatory | Presence | Pattern | ISO Data Type / DataType | Comment |
OtherATMServices | openBankingATM/Brand/AT M/OtherATMServices | OtherATMServices | OtrosServiciosATM | Otros servicios que el ATM pueda otorgar | | Optional | 0..many | | OB_OtherCodeType1 | | |
| | | | | | | | | | | |
| | | | | | | | | | | |
| | | | | | | | | | | |
| | | | | | | | | | | |
| | | | | | | | | | | |
| Code | openBankingATM/Brand/AT M/OtherATMServices/Code | Code | Codigo | La clave de cuatro letras dentro de un archivo XML para identificar a un código | | Optional | 0..1 | ^\\w{0,4}$ [A-Z]{4} | OB_CodeMnemonic | |
| Description | openBankingATM/Brand/AT M/OtherATMServices/Descri ption | Description | Descripcion | Descripción del código | | Mandatory | 1..1 | | Max350Text | |
| Name | openBankingATM/Brand/AT M/OtherATMServices/Name | Name | Nombre | El nombre asociado con el código | | Mandatory | 1..1 | | Max70Text | |
Categoria | Campos | XPath | FieldName | Code Name Spanish | Spanish Translation | Constraint(s) rule | Mandatory | Presence | Pattern | ISO Data Type / DataType | Comment |
Branch | | openBankingATM/Brand/ATM/Branch | Branch | Sucursal | Información que ubica e identifica una sucursal o institución financiera | | Optional | 0..1 | | BranchData2 | |
| | | | | | | | | | | |
| | | | | | | | | | | |
| | | | | | | | | | | |
| Identification | openBankingATM/Brand/ATM/Branch/Identifi cation | Identification | Identificacion | ID de la sucursal | | Optional | 0..1 | | Max35Text | |
Categoría | Campos | XPath | FieldName | Code Name Spanish | Spanish Translation | Constraint(s) rule | Mandatory | Presence | Pattern | ISO Data Type / DataType | Comment | ||
Location | | openBankingATM/Brand/ATM/Locati on | Location | Ubicacion | La ubicacion del ATM | | Mandatory | 1..1 | | PostalAddress17 | | ||
| | | | | | | | | | | | ||
| | | | | | | | | | | | ||
| | | | | | | | | | | |
| LocationCategory | openBankingATM/Brand/ATM/Locati on/LocationCategory | LocationCategory | CategoriaUbicacion | Categoría de Ubicación | C2:Only those CodeNames that are in the codelist can be supplied. If there is a missing code, then use 'OTHER' and fill out the CodeName and Description in the "OtherCodeType" block | Optional | 0..many | | TransactionEnvir onment2Code | | ||
| | openBankingATM/Brand/ATM/Location/LocationCategory: code:ATBE | AccesoIndependient eASucursal | Con acceso independiente a la sucursal | | | | | | | |||
| | openBankingATM/Brand/ATM/Location/LocationCategory: code:ATBI | InteriorSucursal | Ubicado al interior de la sucursal, disponible durante horarios de servicio | | | | | | | |||
| | openBankingATM/Brand/ATM/Location/LocationCategory: code:ATBL | LobbySucursal | Ubicado en el lobby accesible por clientes del banco | | | | | | | |||
| | openBankingATM/Brand/ATM/Location/LocationCategory: code:ATOT | OtrasUbicaciones | Otros ambientes, como por ejemplo aeropuerto, centros comerciales | | | | | | | |||
| | openBankingATM/Brand/ATM/Location/LocationCategory: code:ATRO | UbicadoComercio | Cajero ubicado en un comercio | | | | | | | |||
| | openBankingATM/Brand/ATM/Location/LocationCategory: code:ATRU | UnidadMovil | Cajero es parte de una unidad bancaria movil | | | | | | |
Categoría | Campos | XPath | FieldName | Code Name Spanish | Spanish Translation | Constraint(s) rule | Mandatory | Presence | Pattern | ISO Data Type / DataType | Comment |
OtherLocationC ategory | | openBankingATM/Brand/ATM/Location/ OtherLocationCategory | OtherLocationCategory | OtraCategoriaUbicacion | Otra categoría de ubicación. Permite registrar un nuevo código, nombre y descripción para agregar otra categoría | | Optional | 0..many | | | |
| | | | | | | | | | | |
| | | | | | | | | | | |
| | | | | | | | | | | |
| | | | | | | | | | | |
| | | | | | | | | | | |
| Code | openBankingATM/Brand/ATM/Location/ OtherLocationCategory/Code | Code | Codigo | La clave de cuatro letras dentro de un archivo XML para identificar a un código | | Optional | 0..1 | ^\\w{0,4}$ | Max4Text | |
| Description | openBankingATM/Brand/ATM/Location/ OtherLocationCategory/Description | Description | Descripcion | Descripción del código | | Mandatory | 1..1 | | Max350Text | |
| Name | openBankingATM/Brand/ATM/Location/ OtherLocationCategory/Name | Name | Nombre | El nombre asociado con el código | | Mandatory | 1..1 | | Max70Text | |
Categoria | Campos | XPath | FieldName | Code Name Spanish | Spanish Translation | Constraint(s) rule | Mandatory | Presence | Pattern | ISO Data Type / DataType | Comment |
Site | | openBankingATM/Brand/ATM/Location/ Site | Site | Sitio | Usado internamente para identificar la ubicación de un ATM | | Optional | 0..1 | | OB_Site1 | |
| | | | | | | | | | | |
| | | | | | | | | | | |
| | | | | | | | | | | |
| | | | | | | | | | | |
| | | | | | | | | | | |
| Identification | openBankingATM/Brand/ATM/Location/ Site/Identification | Identification | Identificacion | Identificación de la ubicación de ATM otorgada por la institución financiera | | Optional | 0..1 | | Max35Text | |
| Name | openBankingATM/Brand/ATM/Location/ Site/Name | Name | Nombre | Nombre del ATM usado por la entidad financiera | | Optional | 0..1 | | Max140Text | |
Categoria | Campos | XPath | FieldName | Code Name Spanish | Spanish Translation | Constraint(s) rule | Mandatory | Presence | Pattern | ISO Data Type / DataType | Comment |
PostalAddress | openBankingATM/Brand/AT M/Location/PostalAddress | PostalAddress | DireccionPostal | Dirección Postal | C3:Either */GeoLocation/ Latitude & */GeoLocation/ Longitude must be supplied (preferred) or a combination of */PostalAddress/ BuildingNumber and */ PostalAddress/PostCode. Latitude & Longitude (in decimal degrees) can be determined for a particular postcode at www.postcodes.io. | Mandatory | 1..1 | | PostalAddress | | |
| | | | | | | | | | | |
| | | | | | | | | | | |
| | | | | | | | | | | |
| | | | | | | | | | | |
| | | | | | | | | | | |
| AddressLine | openBankingATM/Brand/AT M/Location/PostalAddress/A ddressLine | AddressLine | DireccionCompleta | Dirección completa (tipo correo postal). Lugar en que se encuentra ubicado el cajero automático. | | Optional | 0..7 | | Max70Text | |
| BuildingNumber | openBankingATM/Brand/AT M/Location/PostalAddress/B uildingNumber | BuildingNumber | NumeroExternoInterno | Corresponde al número externo e interno (cuando aplique) de la vialidad en donde se encuentra localizado el cajero automático. Número externo se refiere a los caracteres alfanuméricos y símbolos que identifican el inmueble donde se ubica el cajero en una vialidad (ejemplos: 125, 1098, 572-A, Domicilio Conocido, Manzana 15, Lote 23). Número interno se refiere a los caracteres alfanuméricos y símbolos que identifican una o más ubicaciones pertenecientes a un número exterior (Ejemplos: 2, Local C, L-5). | | Optional | 0..1 | | Max350Text | |
Categoria | Campos | XPath | FieldName | Code Name Spanish | Spanish Translation | Constraint(s) rule | Mandatory | Presence | Pattern | ISO Data Type / DataType | Comment |
| StreetName | openBankingATM/Brand/AT M/Location/PostalAddress/St reetName | StreetName | Vialidad | Corresponde al tipo y nombre de la vialidad en donde se encuentra localizado el cajero automático. Tipo de Vialidad: Clasificación que se le da a la vialidad, en función del tránsito vehicular y/o peatonal (Ej. Avenida, Boulevard, Calzada, Calle, Privada). Nombre de Vialidad: Nombre propio que identifica a la vialidad (Ej. Benito Juárez, Las Flores, Río Blanco, Tlalpan, Revolución) | | Optional | 0..1 | | Max70Text | |
| TownName | openBankingATM/Brand/AT M/Location/PostalAddress/T ownName | TownName | Localidad/Municipio | Corresponde a la localidad, colonia y el municipio o alcaldía del domicilio donde se encuentra ubicado el cajero (Ej. Ex-Ejido De Santa Ursula Coapa, Coyoacán / Chula Vista, Tijuana / Vallarta, Mexicali / Centro, Mérida / Colonial, Cd Juarez). | | Optional | 0..1 | | Max35Text | |
| CountrySubDivi sion | openBankingATM/Brand/AT M/Location/PostalAddress/C ountrySubDivision | CountrySubDivi sion | Estado | Nombre propio que identifica a las Entidades Federativas (Morelos, Yucatán, Sonora, Tamaulipas, Baja California Norte, Ciudad de México) | | Optional | 0..1 | | Max35Text | |
| Country | openBankingATM/Brand/AT M/Location/PostalAddress/C ountry | Country | Pais | Código ISO de 2 letras designado para identificar a México y que es reconocido internacionalmente: MX | | Optional | 0..1 | [A-Z]{2} | CountryCode | |
| PostCode | openBankingATM/Brand/AT M/Location/PostalAddress/P ostCode | PostCode | CP | Número que identifica al código postal, constituido por cinco dígitos, obtenido de la información oficial del Servicio Postal Mexicano. | | Optional | 0..1 | | Max16Text | |
Categoría | Campos | XPath | FieldName | Code Name Spanish | Spanish Translation | Constraint(s) rule | Mandatory | Presence | Pattern | ISO Data Type / DataType | Comment |
GeoLocation | openBankingATM/Brand/ATM/Location /PostalAddress/GeoLocation | GeoLocation | GeoLocalizacion | Geolocalización. Ubicación geográfica del cajero especificada por coordenadas geográficas o en formato UTM, Se especifica por dos números que representan la posición vertical y horizontal en la tierra | | Optional | 0..1 | | OB_GeographicLocatio n1Choice | |
Categoría | Campos | XPath | FieldName | Code Name Spanish | Spanish Translation | Constraint(s) rule | Mandatory | Presence | Pattern | ISO Data Type / DataType | Comment |
GeographicCoor dinates | | openBankingATM/Brand/ATM/Loc ation/PostalAddress/GeoLocation/ GeographicCoordinates | GeographicCoor dinates | Coordenadas Geograficas | Usando paralelos y meridianos, permiten localizar a un ATM con suma exactitud | | Mandatory | 1..1 | | GeographicCoord inates1 | |
| | | | | | | | | | | |
| | | | | | | | | | | |
| | | | | | | | | | | |
| Latitude | openBankingATM/Brand/ATM/Loc ation/PostalAddress/GeoLocation/ GeographicCoordinates/Latitude | Latitude | Latitud | Ubicación geográfica por latitud | | Mandatory | 1..1 | ^-?\\d{1,3} \\.\\d{1,8}$ | Max16Text | |
| Longitude | openBankingATM/Brand/ATM/Loc ation/PostalAddress/GeoLocation/ GeographicCoordinates/Longitude | Longitude | Longitud | Ubicación geográfica por longitud | | Mandatory | 1..1 | ^-?\\d{1,3} \\.\\d{1,8}$ | Max16Text | Formatted into DecimalDegree |
Categoria | Campos | XPath | FieldName | Code Name Spanish | Spanish Translation | Constraint(s) rule | Mandatory | Presence | Pattern | ISO Data Type / DataType | Comment |
FeeSurcharges | openBankingATM/Brand/ATM/Fe eSurcharges | FeeSurcharges | CargosComisiones | Cargos y comisiones | | Optional | 0..1 | | | | |
| | | | | | | | | | | |
| | | | | | | | | | | |
| | | | | | | | | | | |
| | | | | | | | | | | |
| | | | | | | | | | | |
| CashWithdrawalNati onal | openBankingATM/Brand/ATM/Fe eSurcharges/CashWithdrawalNa tional | CashWithdrawal National | ComisionRetiroEfecti voNacional | Monto de comisiones de retiro de efectivo Otros Bancos (Surcharge) Nacional | | Optional | 0..1 | ^-?\d{1,10}\.? \d{0,2}\s?[A- Z]{3}$ | Monto Comisión + Código de Moneda (3 Caracteres) ^-? \\d{1,10}\\.?\\d{0,2}\\s\\ w[A-Z]{3}$ | |
| CashWithdrawalInter national | openBankingATM/Brand/ATM/Fe eSurcharges/CashWithdrawalInt ernational | CashWithdrawalI nternational | ComisionRetiroEfecti voInternacional | Monto de comisiones de retiro de efectivo Otros Bancos (Surcharge) Internacional | | Optional | 0..1 | ^-?\d{1,10}\.? \d{0,2}\s?[A- Z]{3}$ | Monto Comisión + Código de Moneda (3 Caracteres) ^-? \\d{1,10}\\.?\\d{0,2}\\s\\ w[A-Z]{3}$ | |
| BalanceInquiry | openBankingATM/Brand/ATM/Fe eSurcharges/BalanceInquiry | BalanceInquiry | ComisionConsultaSa ldo | Monto de comisiones consulta de saldo Otros Bancos (Surcharge) | | Optional | 0..1 | ^-?\d{1,10}\.? \d{0,2}\s?[A- Z]{3}$ | Monto Comisión + Código de Moneda (3 Caracteres) ^-? \\d{1,10}\\.?\\d{0,2}\\s\\ w[A-Z]{3}$ | |