FHIR Chat · Code for swedish social security number · Sweden on FHIR

Stream: Sweden on FHIR

Topic: Code for swedish social security number


view this post on Zulip 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?

view this post on Zulip 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?

view this post on Zulip Lauri Karppinen (Feb 19 2019 at 06:41):

Yes. Something to present it's swedish id. I would use it in patient.identifier.

view this post on Zulip 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

view this post on Zulip 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.

view this post on Zulip 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”
}
],

view this post on Zulip 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