Skip to content

Commit

Permalink
Update TelematikID.mapping.json (arvato)
Browse files Browse the repository at this point in the history
Änderungen:

Ergänzung des Attributs specializationRequired bei den relevanten Pattern

Entfernung von dem Pattern "^10-67.*" da dies doppeldeutig ist. (Überschneidung u.a. mit "^10-67.236.*" ...)

Korrektur des Pattern "^3-.*" für Apotheker auf "^3-...3.*" 

Umbenennung von Physiotherapeut auf Psychotherapeut (Pattern "^4-.*")

Entfernung von dem Pattern "^9-2.*" da dies doppeldeutig ist. (Überschneidung u.a. mit "^9-2.245.* ...)
  • Loading branch information
gem-uhe authored Aug 28, 2024
1 parent a871f53 commit 2b0e5f2
Showing 1 changed file with 33 additions and 30 deletions.
63 changes: 33 additions & 30 deletions src/mappings/TelematikID.mapping.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,29 +2,33 @@
"mapping": [
{
"pattern": "^1-1.*",
"fhirResourceType": "Practitioner",
"fhirResourceType": "Practitioner",
"code": "Arzt",
"displayShort": "Arzt"
"displayShort": "Arzt",
"specializationRequired": "true"
},
{
"pattern": "^1-20.*",
"fhirResourceType": "Organization",
"code": "Arztpaxis",
"displayShort": "Arztpaxis",
"fhirIdentifierProfile": "http://fhir.de/StructureDefinition/identifier-bsnr"
"fhirIdentifierProfile": "http://fhir.de/StructureDefinition/identifier-bsnr",
"specializationRequired": "true"
},
{
"pattern": "^2-0?1.*",
"fhirResourceType": "Practitioner",
"code": "Zahnarzt",
"displayShort": "Zahnarzt"
"displayShort": "Zahnarzt",
"specializationRequired": "true"
},
{
"pattern": "^2-2.*",
"fhirResourceType": "Organization",
"code": "Zahnarztpraxis",
"displayShort": "Zahnarztpraxis",
"fhirIdentifierProfile": "http://fhir.de/StructureDefinition/identifier-kzva"
"fhirIdentifierProfile": "http://fhir.de/StructureDefinition/identifier-kzva",
"specializationRequired": "true"
},
{
"pattern": "^3-...2.*",
Expand All @@ -33,7 +37,7 @@
"displayShort": "Apotheke"
},
{
"pattern": "^3-.*",
"pattern": "^3-...3.*",
"fhirResourceType": "Practitioner",
"code": "Apotheker",
"displayShort": "Apotheker"
Expand All @@ -42,14 +46,16 @@
"pattern": "^4-.*",
"fhirResourceType": "Practitioner",
"code": "Psychotherapeut",
"displayShort": "Psychotherapeut"
"displayShort": "Psychotherapeut",
"specializationRequired": "true"
},
{
"pattern": "^5-.*",
"fhirResourceType": "Organization",
"code": "Krankenhaus",
"displayShort": "Krankenhaus",
"fhirIdentifierProfile": "http://fhir.de/StructureDefinition/identifier-iknr"
"fhirIdentifierProfile": "http://fhir.de/StructureDefinition/identifier-iknr",
"specializationRequired": "true"
},
{
"pattern": "^8-01.*",
Expand Down Expand Up @@ -98,7 +104,8 @@
"pattern": "^9-2.34.*",
"fhirResourceType": "Organization",
"code": "Private_Psychotherapeutenpraxis",
"displayShort": "Private Psychotherapeutenpraxis"
"displayShort": "Private Psychotherapeutenpraxis",
"specializationRequired": "true"
},
{
"pattern": "^9-2.54.*",
Expand Down Expand Up @@ -149,71 +156,67 @@
"code": "Pflege",
"displayShort": "Pflege"
},
{
"pattern": "^9-2.*",
"fhirResourceType": "Organization",
"code": "Organisation",
"displayShort": "Organisation"
},
{
"pattern": "^10-67.245.*",
"fhirResourceType": "Organization",
"code": "Pflege",
"displayShort": "Pflege"
"displayShort": "Pflege",
"specializationRequired": "true"
},
{
"pattern": "^10-67.246.*",
"fhirResourceType": "Organization",
"code": "Geburtshilfe",
"displayShort": "Geburtshilfe"
"displayShort": "Geburtshilfe",
"specializationRequired": "true"
},
{
"pattern": "^10-67.247.*",
"fhirResourceType": "Organization",
"code": "Physiotherapie",
"displayShort": "Physiotherapie"
"displayShort": "Physiotherapie",
"specializationRequired": "true"
},
{
"pattern": "^10-67.232.*",
"fhirResourceType": "Practitioner",
"code": "Krankenpfleger",
"displayShort": "Krankenpfleger"
"displayShort": "Krankenpfleger",
"specializationRequired": "true"
},
{
"pattern": "^10-67.233.*",
"fhirResourceType": "Practitioner",
"code": "Altenpfleger",
"displayShort": "Altenpfleger"
"displayShort": "Altenpfleger",
"specializationRequired": "true"
},
{
"pattern": "^10-67.234.*",
"fhirResourceType": "Practitioner",
"code": "Pfleger",
"displayShort": "Pfleger"
"displayShort": "Pfleger",
"specializationRequired": "true"
},
{
"pattern": "^10-67.235.*",
"fhirResourceType": "Practitioner",
"code": "Hebamme",
"displayShort": "Hebamme"
"displayShort": "Hebamme",
"specializationRequired": "true"
},
{
"pattern": "^10-67.236.*",
"fhirResourceType": "Practitioner",
"code": "Physiotherapeut",
"displayShort": "Physiotherapeut"
},
{
"pattern": "^10-67.*",
"fhirResourceType": "Practitioner",
"code": "Gesundheitsberuf",
"displayShort": "Gesundheitsberuf"
"displayShort": "Physiotherapeut",
"specializationRequired": "true"
},
{
"pattern": "(?s)^.*$",
"fhirResourceType": "Organization",
"code": "Weitere",
"displayShort": "Weitere"
}
]
]
}

0 comments on commit 2b0e5f2

Please sign in to comment.