Stream: Sweden on FHIR
Topic: Code for swedish social security number
Lauri Karppinen (Feb 18 2019 at 14:09):
Hi to all in #Sweden on FHIR . What would be to right code to use if I want to present Swedish social security number in identifier?
Oskar Thunman (Feb 18 2019 at 21:22):
Do you mean something like the type code or are you talking about how to display it?
Lauri Karppinen (Feb 19 2019 at 06:41):
Yes. Something to present it's swedish id. I would use it in patient.identifier.
Oskar Thunman (Feb 19 2019 at 08:44):
There is a good page on it here: https://skatteverket.se/servicelankar/otherlanguages/inenglish/individualsandemployees/livinginsweden/personalidentitynumberandcoordinationnumber.4.2cf1b5cd163796a5c8b4295.html
Lauri Karppinen (Feb 21 2019 at 06:49):
Thanks for the link. I didn't find anything to present in FHIR that it's Swedish ID.
"identifier": [
{
"type": {
"coding": [
{
"system": "?",
"code": "?"
}
]
},
"system": "?",
"value": "19811218-9876"
}
],
I would need to figure out some system to use and/or type.coding that would tell that it's Swedish ID.
Oskar Thunman (Feb 21 2019 at 08:34):
We have been using this oid nationally for quite some time: 1.2.752.129.2.1.3.1. So it would probably be:
"identifier": [
"system": "urn:oid:1.2.752.129.2.1.3.1",
"value": “YYYYMMDDNNNN”
}
],
Lauri Karppinen (Feb 21 2019 at 08:52):
Thanks a lot @Oskar Thunman ! I will use the same system in our implementation.
Last updated: Apr 12 2022 at 19:14 UTC