HL7 FHIR Implementation Guide: DK Core
1.1.0 - release
This page is part of the HL7 FHIR Implementation Guide: DK Core (v1.1.0: Release) based on FHIR R4. The current version which supercedes this version is 2.0.0. For a full list of available versions, see the Directory of published versions
Defining URL: | http://hl7.dk/fhir/core/StructureDefinition/dk-core-gln-identifier |
Version: | 1.1.0 |
Name: | GLNIdentifier |
Title: | GLN Identifier |
Status: | Draft as of 12/18/21, 11:15 PM |
Definition: | Identifier holding a 13 digit GLN |
Publisher: | HL7 Denmark |
Source Resource: | XML / JSON / Turtle |
The official URL for this profile is:
http://hl7.dk/fhir/core/StructureDefinition/dk-core-gln-identifier
Description of Profiles, Differentials, Snapshots and how the different presentations work.
Other representations of profile: CSV, Excel, Schematron
Path | Conformance | ValueSet / Code |
Identifier.use | required | Fixed Value: official |
Identifier.type | extensible | Identifier Type Codes |
Id | Grade | Path | Details | Requirements |
gln-length | error | Identifier.value | GLN must be exactly 13 characters long : value.matches('^[0-9]{13}$') | |
gln-modulus-10 | error | Identifier.value | GLN must pass the modulus 10 check - https://www.gs1.org/services/how-calculate-check-digit-manually : (( (value.substring(0,1).toInteger()*1)+ (value.substring(1,1).toInteger()*3)+ (value.substring(2,1).toInteger()*1)+ (value.substring(3,1).toInteger()*3)+ (value.substring(4,1).toInteger()*1)+ (value.substring(5,1).toInteger()*3)+ (value.substring(6,1).toInteger()*1)+ (value.substring(7,1).toInteger()*3)+ (value.substring(8,1).toInteger()*1)+ (value.substring(9,1).toInteger()*3)+ (value.substring(10,1).toInteger()*1)+ (value.substring(11,1).toInteger()*3) ) mod(10)+value.substring(12,1).toInteger()=10) |