KR Core Implementation Guide
2.0.0-ballot-final - STU 2
This page is part of the KR Core Implementation Guide (v2.0.0-ballot-final: STU 2 Ballot 3) based on FHIR (HL7® FHIR® Standard) R4. This version is a pre-release. The current official version is 1.0.2. For a full list of available versions, see the Directory of published versions
| Page standards status: Informative |
@prefix fhir: <http://hl7.org/fhir/> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix sct: <http://snomed.info/id/> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
# - resource -------------------------------------------------------------------
a fhir:PractitionerRole ;
fhir:nodeRole fhir:treeRoot ;
fhir:id [ fhir:v "krcore-paramedicrole-example-01"] ; #
fhir:meta [
( fhir:profile [
fhir:v "http://www.hl7korea.or.kr/fhir/krcore/StructureDefinition/krcore-practitioner-role"^^xsd:anyURI ;
fhir:link <http://www.hl7korea.or.kr/fhir/krcore/StructureDefinition/krcore-practitioner-role> ] )
] ; #
fhir:text [
fhir:status [ fhir:v "generated" ] ;
fhir:div "<div xmlns=\"http://www.w3.org/1999/xhtml\"><p class=\"res-header-id\"><b>Generated Narrative: PractitionerRole krcore-paramedicrole-example-01</b></p><a name=\"krcore-paramedicrole-example-01\"> </a><a name=\"hckrcore-paramedicrole-example-01\"> </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-krcore-practitioner-role.html\">KR Core PractitionerRole Profile</a></p></div><p><b>identifier</b>: <code>http://www.example.co.kr/paramedic-id</code>/P-08721</p><p><b>active</b>: true</p><p><b>practitioner</b>: <a href=\"Practitioner-krcore-paramedic-example-01.html\">Practitioner 김하늘(official)</a></p><p><b>organization</b>: <a href=\"Organization-krcore-organization-example-01.html\">Organization xx시 중부 소방센터</a></p><p><b>code</b>: <span title=\"Codes:{http://snomed.info/sct 397897005}\">Paramedic (occupation)</span></p></div>"^^rdf:XMLLiteral
] ; #
fhir:identifier ( [
fhir:system [ fhir:v "http://www.example.co.kr/paramedic-id"^^xsd:anyURI ] ;
fhir:value [ fhir:v "P-08721" ]
] ) ; #
fhir:active [ fhir:v true] ; #
fhir:practitioner [
fhir:reference [ fhir:v "Practitioner/krcore-paramedic-example-01" ]
] ; #
fhir:organization [
fhir:reference [ fhir:v "Organization/krcore-organization-example-01" ]
] ; #
fhir:code ( [
( fhir:coding [
a sct:397897005 ;
fhir:system [ fhir:v "http://snomed.info/sct"^^xsd:anyURI ] ;
fhir:code [ fhir:v "397897005" ] ;
fhir:display [ fhir:v "Paramedic (occupation)" ] ] )
] ) . #