HL7 FHIR Implementation Guide: DK Core
3.0.0 - release Denmark flag

This page is part of the HL7 FHIR Implementation Guide: DK Core (v3.0.0: Release) based on FHIR (HL7® FHIR® Standard) R4. This is the current published version in its permanent home (it will always be available at this URL). For a full list of available versions, see the Directory of published versions

Data Type Profile: GLNIdentifier - Detailed Descriptions

Active as of 2023-12-01

Definitions for the dk-core-gln-identifier data type profile.

Guidance on how to interpret the contents of this table can be found here

0. Identifier
2. Identifier.use
Fixed Valueofficial
4. Identifier.system
Control1..?
Fixed Valuehttps://www.gs1.org/gln
6. Identifier.value
Control1..?
Invariantsgln-length: GLN must be exactly 13 characters long (matches('^[0-9]{13}$'))
gln-modulus-10: GLN must pass the modulus 10 check - https://www.gs1.org/services/how-calculate-check-digit-manually ((( (10-((substring(0,1).toInteger()*1)+ (substring(1,1).toInteger()*3)+ (substring(2,1).toInteger()*1)+ (substring(3,1).toInteger()*3)+ (substring(4,1).toInteger()*1) +(substring(5,1).toInteger()*3) +(substring(6,1).toInteger()*1) +(substring(7,1).toInteger()*3) +(substring(8,1).toInteger()*1) +(substring(9,1).toInteger()*3) +(substring(10,1).toInteger()*1) +(substring(11,1).toInteger()*3))mod(10))mod(10))=substring(12,1).toInteger()))