Central Cancer Registry Reporting Content IG
2.0.0-ballot - STU 2 -Ballot United States of America flag

Central Cancer Registry Reporting Content IG, published by HL7 International / Public Health. This guide is not an authorized publication; it is the continuous build for version 2.0.0-ballot built by the FHIR (HL7® FHIR® Standard) CI Build. This version is based on the current content of https://github.com/HL7/fhir-central-cancer-registry-reporting-ig/ and changes regularly. See the Directory of published versions

: Practitioner - Example - JSON Representation

Page standards status: Informative

Raw json | Download

{
  "resourceType" : "Practitioner",
  "id" : "1",
  "meta" : {
    "profile" : [
      🔗 "http://hl7.org/fhir/us/core/StructureDefinition/us-core-practitioner|6.1.0"
    ]
  },
  "text" : {
    "status" : "generated",
    "div" : "<div xmlns=\"http://www.w3.org/1999/xhtml\">\n  <p><b>Profile:</b> <a href=\"https://hl7.org/fhir/us/core/StructureDefinition-us-core-us-core-practitioner.html\">US Core Practitioner</a></p>\n  <p><b>Practitioner:</b> Dr. Joseph Nichols</p>\n  <p><b>Identifier:</b> US NPI: 1122334455</p>\n  <p><b>Address:</b> 1234 Main St., Tulsa, OK 74126, US (work)</p>\n  <p><b>Email:</b> joseph.nichols@example.com</p>\n  <p><b>Phone:</b> 800-277-1993</p>\n  </div>"
  },
  "identifier" : [
    {
      "system" : "http://hl7.org/fhir/sid/us-npi",
      "value" : "1122334455"
    }
  ],
  "name" : [
    {
      "family" : "Nichols",
      "given" : [
        "Joseph"
      ],
      "prefix" : [
        "Dr"
      ]
    }
  ],
  "telecom" : [
    {
      "system" : "email",
      "value" : "joseph.nichols@example.com",
      "use" : "work"
    },
    {
      "system" : "phone",
      "value" : "800-277-1993",
      "use" : "work"
    }
  ],
  "address" : [
    {
      "use" : "work",
      "line" : [
        "1234 Main St."
      ],
      "city" : "Tulsa",
      "state" : "OK",
      "postalCode" : "74126",
      "country" : "US"
    }
  ]
}