傳染病通報系統實作指引
0.1.0 - ci-build Taiwan, Province of China flag

傳染病通報系統實作指引, published by 衛福部疾病管制署. This guide is not an authorized publication; it is the continuous build for version 0.1.0 built by the FHIR (HL7® FHIR® Standard) CI Build. This version is based on the current content of https://github.com/fhir-nidrs/nidrs/ and changes regularly. See the Directory of published versions

: 病人資訊 - JSON Representation

Raw json | Download

{
  "resourceType" : "Patient",
  "id" : "example",
  "meta" : {
    "profile" : [
      🔗 "https://cdc.gov.tw/nidrs/StructureDefinition/Patient-NIDRS"
    ]
  },
  "text" : {
    "status" : "generated",
    "div" : "<div xmlns=\"http://www.w3.org/1999/xhtml\"><p class=\"res-header-id\"><b>Generated Narrative: 患者 example</b></p><a name=\"example\"> </a><a name=\"hcexample\"> </a><div style=\"display: inline-block; background-color: #d9e0e7; padding: 6px; margin: 4px; border: 1px solid #8da1b4; border-radius: 5px; line-height: 60%\"><p style=\"margin-bottom: 0px\"/><p style=\"margin-bottom: 0px\">Profile: <a href=\"StructureDefinition-Patient-NIDRS.html\">個案資料-Patient NIDRS</a></p></div><p style=\"border: 1px #661aff solid; background-color: #e6e6ff; padding: 10px;\">李一 Male, DoB: 1960-02-07 ( National Person Identifier where the xxx is the ISO table 3166 3-character (alphabetic) country code\u00a0(use:\u00a0official,\u00a0))</p><hr/><table class=\"grid\"><tr><td style=\"background-color: #f3f5da\" title=\"Known status of Patient\">Deceased:</td><td>false</td><td style=\"background-color: #f3f5da\" title=\"Known Marital status of Patient\">Marital Status:</td><td colspan=\"3\"><span title=\"Codes:{http://terminology.hl7.org/CodeSystem/v3-MaritalStatus M}\">Married</span></td></tr><tr><td style=\"background-color: #f3f5da\" title=\"Ways to contact the Patient\">Contact Detail</td><td colspan=\"3\"><ul><li>ph: 0918123123</li><li>0918123123</li><li>新北市新店區寶安街2樓</li></ul></td></tr><tr><td style=\"background-color: #f3f5da\" title=\"人口密集機構\">null:</td><td colspan=\"3\"><ul><li>hasOrg: false</li></ul></td></tr></table></div>"
  },
  "extension" : [
    {
      "extension" : [
        {
          "url" : "hasOrg",
          "valueBoolean" : false
        }
      ],
      "url" : "https://cdc.gov.tw/nidrs/StructureDefinition/extension-org"
    }
  ],
  "identifier" : [
    {
      "use" : "official",
      "type" : {
        "coding" : [
          {
            "system" : "http://terminology.hl7.org/CodeSystem/v2-0203",
            "code" : "NNxxx"
          }
        ]
      },
      "system" : "http://www.moi.gov.tw",
      "value" : "A123456789"
    }
  ],
  "name" : [
    {
      "use" : "usual",
      "text" : "李一"
    }
  ],
  "telecom" : [
    {
      "system" : "phone",
      "value" : "0918123123"
    },
    {
      "system" : "sms",
      "value" : "0918123123"
    }
  ],
  "gender" : "male",
  "birthDate" : "1960-02-07",
  "deceasedBoolean" : false,
  "address" : [
    {
      "text" : "新北市新店區寶安街2樓",
      "city" : "65000060",
      "district" : "65000"
    }
  ],
  "maritalStatus" : {
    "coding" : [
      {
        "system" : "http://terminology.hl7.org/CodeSystem/v3-MaritalStatus",
        "code" : "M"
      }
    ]
  }
}