WellData Implementation Guide
0.1.0 - ci-build

WellData Implementation Guide - Local Development build (v0.1.0) built by the FHIR (HL7® FHIR® Standard) Build Tools. See the Directory of published versions

: Voorbeeld WellData-patiënt - JSON Representation

Raw json | Download

{
  "resourceType" : "Patient",
  "id" : "example-welldata-patient",
  "meta" : {
    "versionId" : "1",
    "lastUpdated" : "2025-06-10T08:30:00+02:00",
    "profile" : [
      🔗 "https://gidsopenstandaarden.github.io/welldata-implementation-guide/StructureDefinition/WellDataPatient"
    ]
  },
  "text" : {
    "status" : "generated",
    "div" : "<div xmlns=\"http://www.w3.org/1999/xhtml\"><p>John Doe — voorbeeld\u00a0patiënt voor WellData</p></div>"
  },
  "identifier" : [
    {
      "system" : "https://well-data.example.org/fhir/Patient",
      "value" : "example-patient"
    },
    {
      "system" : "https://www.ehealth.fgov.be/standards/fhir/core/NamingSystem/ssin",
      "value" : "83051812345"
    },
    {
      "system" : "http://fhir.nl/fhir/NamingSystem/bsn",
      "value" : "999991234"
    }
  ],
  "name" : [
    {
      "use" : "official",
      "family" : "Doe",
      "given" : [
        "John"
      ]
    }
  ],
  "telecom" : [
    {
      "system" : "phone",
      "value" : "+32-3-555-0101",
      "use" : "mobile"
    },
    {
      "system" : "email",
      "value" : "john.doe@example.com",
      "use" : "home"
    }
  ],
  "gender" : "male",
  "birthDate" : "1983-05-18",
  "address" : [
    {
      "use" : "home",
      "line" : [
        "Example Street 1"
      ],
      "city" : "Antwerpen",
      "postalCode" : "2000",
      "country" : "BE"
    }
  ],
  "communication" : [
    {
      "language" : {
        "coding" : [
          {
            "system" : "urn:ietf:bcp:47",
            "code" : "nl-BE"
          }
        ]
      }
    }
  ],
  "generalPractitioner" : [
    {
      "reference" : "Practitioner/prac-1"
    }
  ]
}