ICD-10-SE

(Pro feature)

First, create the ICD-10-SE Code System:

POST /codesystems
{
  "id": "ICD10SE",
  "url": "http://hl7.org/fhir/sid/icd-10-se",
  "title": "ICD-10-SE",
  "language": "se",
  "description": "# Internationell statistisk klassifikation av sjukdomar och relaterade hälsoproblem (ICD-10-SE)",
  "status": "active",
  "owner": "ownerUserId",
  "copyright": "",
  "contact": "https://www.socialstyrelsen.se/statistik-och-data/klassifikationer-och-koder/kodtextfiler/",
  "oid": "1.2.752.116.1.1.1",
  "toolingId": "icd10",
  "settings": {
    "publisher": "Socialstyrelsen",
    "isPublic": true
  }
}

Then, import the classification content from a ClaML file (generated by B2i Healthcare, request it here):

POST /icd10/ICD10SE/classes/import -F "file=@ICD-10-SE_2024_generated.xml"

And last, create a new version to mark the content:

POST /versions
{
  "resource": "codesystems/ICD10SE",
  "version": "2024-01-01",
  "description": "2024-01-01 release",
  "effectiveTime": "2024-01-01"
}

Last updated