onaio / fhir-tooling

A command line utility to support FHIR Core content authoring
Other
1 stars 1 forks source link

Add a type property on the Keycloak User Id Identifier #173

Closed dubdabasoduba closed 3 months ago

dubdabasoduba commented 3 months ago

Issue Context?

Issue Implementation details?

Issue Acceptance criteria?

Relevant Information

Sample Practitioner resource

{
  "resourceType": "Practitioner",
  "id": "c6d854b5-74d6-400f-b4db-9f236b878d71",
  "meta": {
    "versionId"  : "1"                            ,
    "lastUpdated": "2024-02-05T09:15:47.036+00:00",
    "source"     : "#dc94afa49663f94a"
  },
  "identifier": [
    {"use": "official", "value": "c6d854b5-74d6-400f-b4db-9f236b878d71"},
    {
      "use": "secondary",
      "type": {
        "coding": [
          {
            "system" : "http://hl7.org/fhir/identifier-type",
            "code"   : "KUID"                               ,
            "display": "Keycloak user ID"
          }
        ],
        "text": "Keycloak user ID"
      },
      "value": "bdd5affc-e807-425e-b9bd-dd1a2ef9071c"
    }
  ],
  "active": true,
  "name": [
    {
      "use": "official",
      "family": "Demo User",
      "given": ["EUSM"]
    }
  ],
  "telecom": [
    {"system": "email"}
  ]
}