All posts
Engineering

How Industry-Specific Data Models Differ Across Fintech, Healthcare, and Logistics: What Your Vietnam Engineering Team Must Know Before Designing the Schema

Published on 31 Jul 2026

how-industry-specific-data-models-differ-across-fintech-healthcare-and-logistics-what-your-vietnam-engineering-team-must

Schema design is not a generic exercise. The data model you build for a payments platform will get you audited if you apply it unchanged to a healthcare record system, and a logistics tracking schema structured around GDPR-friendly erasure patterns will break the immutability requirements demanded by financial regulators.

The structural decisions made in week one of a project carry compliance, performance, and interoperability consequences that take months to unwind. This article gives engineering teams, CTOs, and technology leads a concrete, domain-by-domain breakdown of what changes and why.

TL;DR

  • Fintech, healthcare, and logistics schemas share almost no regulatory or structural DNA. Treat each domain as a separate discipline.

  • The governing standards are ISO 20022 / BIAN (fintech), HL7 FHIR (healthcare), and GS1 EPCIS (logistics). Each standard dictates field structure, not just naming conventions.

  • Compliance requirements reach into the schema layer: PCI DSS tokenization, HIPAA PHI isolation, and GDPR erasure paths are all structural decisions, not application-layer patches.

  • Data retention mandates differ sharply across domains: three to seven years for financial records, six years for HIPAA compliance documentation, and six years for pharmaceutical tracking.

  • Getting this right before migration or greenfield build saves significant rework downstream.

About the Author: 724SOFTWARE is a Vietnam-based engineering company with active delivery experience across fintech, digital healthcare, logistics, and enterprise ERP. The engineering team has built production systems including regulated capital-markets platforms, Odoo-based supply chain deployments, and HL7-adjacent data pipelines for healthcare clients across 10+ countries.

Why Does Schema Design Differ So Fundamentally Across These Three Domains?

The short answer: each domain is governed by a different regulatory regime, exchanges data with a different ecosystem of external systems, and carries different consequences for schema errors.

In fintech, a schema error can expose cardholder data and trigger PCI DSS penalties. In healthcare, storing Protected Health Information (PHI) in the wrong table joins a patient record to general metadata and creates a HIPAA violation. In logistics, failing to structure telematics fields for deletion makes GDPR compliance structurally impossible rather than just inconvenient.

These are not configuration problems. They are architecture problems, and they originate at the schema layer.

What Standards Govern Each Domain's Data Model?

Each domain has a canonical standard that experienced engineering teams treat as the ground truth for entity relationships, field naming, and message structure.

Domain

Primary Standard

What It Governs

 

Fintech

ISO 20022 + BIAN

Financial messaging formats, banking service domain taxonomy

Healthcare

HL7 FHIR

Clinical and administrative data structure and exchange

Logistics

GS1 EPCIS

Product movement events, traceability at the item and shipment level

Fintech: ISO 20022 defines the canonical message structure for payments, securities, and trade finance. BIAN (Banking Industry Architecture Network) provides the service domain model that maps onto those messages. An offshore software development team designing a payments schema without referencing ISO 20022 will almost certainly produce field names and cardinality rules that break integrations with correspondent banks and payment networks downstream.

Healthcare: HL7 FHIR is the standard that makes healthcare data portable across providers, payers, and health information exchanges. Healthcare data modeling built around FHIR resources (Patient, Encounter, Observation, Claim) rather than ad-hoc entity design is the baseline expectation for any system that needs to interoperate with hospital EHRs, insurance payers, or government health registries. Healthcare interoperability standards like FHIR are increasingly non-negotiable for digital health products entering regulated markets.

Logistics: GS1 EPCIS structures the event-based data model that tracks when and where a physical item was observed, by whom, and in what state. This matters especially in pharmaceutical supply chains, where the US Drug Supply Chain Security Act (DSCSA) mandates product traceability at the item level.

How Do Compliance Requirements Reach Into the Schema Itself?

This is the question most engineering teams underestimate. Compliance is often treated as a feature to build on top of a completed schema. In practice, several regulatory requirements can only be satisfied if the schema is structured to support them from the start.

Fintech - PCI DSS:

- Full track data from a payment card must never be stored after authorization.

- Schema-level data minimization and tokenization are required. The schema must route card numbers to a tokenization vault at write time, storing only tokens in transactional tables.

- This is a structural constraint, not an application-layer encryption decision.

Healthcare - HIPAA:

- PHI must be isolated in dedicated schema partitions, separated from general metadata.

- Audit log schemas must capture unique user IDs for every read and write operation against PHI tables. This is not optional logging; it is a schema-level requirement for access traceability.

- Healthcare data modeling that co-locates PHI with analytics or reporting tables creates audit surface area that is difficult to contain.

Logistics - GDPR:

- Driver telematics, location history, and personal delivery data must be structurally erasable. Physical database isolation for multi-tenant systems is the recommended approach.

- A schema that stores personal location data in shared aggregate tables cannot satisfy a GDPR erasure request without corrupting the aggregate. The erasure path must be designed in.

What Data Retention Rules Shape the Archival Schema?

Retention requirements translate directly into archival table design, partition strategies, and the presence or absence of immutable write-once storage layers.

  • Fintech: SEC Rule 17a-4 and the Sarbanes-Oxley Act mandate retaining transaction records and audit reports for three to seven years. Immutable audit tables, write-once storage, and tamper-evident log structures are schema-level responses to these rules.

  • Healthcare: HIPAA requires compliance documentation retention for six years. Individual state laws govern medical record retention periods separately, which means multi-state healthcare products may need jurisdiction-aware archival partitioning.

  • Logistics: Under 49 CFR Part 379, operational records must be retained for three years. Pharmaceutical supply chains under DSCSA require six-year retention for tracking audit trails. A schema that treats all logistics records identically will either over-retain lower-value operational data or under-retain high-value pharmaceutical provenance data.

What Are the Practical Schema Design Best Practices for Each Domain?

Building on the compliance and standards constraints above, the following schema design best practices translate directly into architectural decisions:

Fintech:

- Model entities against BIAN service domains before writing any DDL.

- Separate tokenized payment data from transaction metadata at the table level, not the column level.

- Build append-only audit tables for all financial state changes from day one.

Healthcare:

- Map your core entities to FHIR resources before designing custom tables. FHIR-aligned schemas enable data exchange with EHRs and payers without custom ETL.

- Implement schema-level PHI isolation with row-level security enforced in the database, not only in the application.

- Design audit log tables as first-class schema objects with their own retention and access policies.

Logistics:

- Structure event data around GS1 EPCIS's What-When-Where-Why-How model.

- Separate personally identifiable telematics fields into isolated tables with explicit deletion procedures.

- Design partition keys around retention tiers: pharmaceutical, operational, and general freight each carry different archival obligations.

Frequently Asked Questions

Q: Can a single schema support fintech and healthcare data in the same database?

Technically possible; practically inadvisable. The PHI isolation requirements of HIPAA and the immutability requirements of PCI DSS are structurally different. Co-mingling them creates audit complexity that regulators do not accept as a defense.

Q: Is FHIR relevant for healthcare startups that don't yet integrate with hospitals?

Yes. Healthcare interoperability standards like FHIR determine whether your product can integrate with payer systems, government registries, and future EHR partners. Retrofitting a non-FHIR schema costs significantly more than building FHIR-aligned from the start.

Q: How does a Vietnam IT company handle domain-specific schema work for regulated industries?

Through dedicated engineers with prior production experience in the specific regulatory context. 724SOFTWARE's fintech and healthcare teams have built systems under PCI DSS, HIPAA-adjacent frameworks, and GDPR-governed data architectures, backed by ISO 27001:2022 and SOC 2 Type II certification.

Q: What is the biggest mistake offshore software development teams make on schema design?

Treating compliance as a feature sprint rather than a structural constraint. Schema decisions made before compliance requirements are mapped are very expensive to reverse.

Q: How long does it take to ramp a domain-specialist engineering team?

At 724SOFTWARE, pre-vetted engineers with domain-relevant experience can be placed into a dedicated team of 1 to 50+ engineers within two to four weeks.

About 724SOFTWARE

724SOFTWARE is a Vietnam-based technology company with 200+ professionals, 58% of whom are senior-level engineers, delivering software across fintech, digital healthcare, logistics, and enterprise ERP for clients in Singapore, Australia, the US, the UK, and across the APAC region.

The company holds ISO 9001, ISO 27001:2022, SOC 2 Type II, and GDPR compliance certifications, and operates as an official partner with Claude (Anthropic) and Cursor to apply practical AI tooling across the software delivery lifecycle. With a 95% client retention rate and delivery experience across 10+ countries, 724SOFTWARE works with clients as a long-term technology partner, not a project vendor.

If your team is designing a schema for a regulated fintech, healthcare, or logistics product and you want engineers who have already navigated these domain constraints in production, visit 724SOFTWARE to start the conversation.

Share this article

Engineering

Shrimpie Tran

AI Engineer

Keep Reading

Explore more from our experts.

View all

Stay ahead with our insights.

Get the latest on software design, strategy, and what's working in the field.

We respect your inbox. Unsubscribe anytime from any email.