@prefix fhir: .
@prefix loinc: .
@prefix owl: .
@prefix rdfs: .
@prefix xsd: .
# - resource -------------------------------------------------------------------
a fhir:CareTeam;
fhir:nodeRole fhir:treeRoot;
fhir:Resource.id [ fhir:value "example"];
fhir:DomainResource.text [
fhir:Narrative.status [ fhir:value "generated" ];
fhir:Narrative.div "Care Team
"
];
fhir:DomainResource.contained [
a fhir:Practitioner;
fhir:index 0;
fhir:Resource.id [ fhir:value "pr1" ];
fhir:Practitioner.name [
fhir:index 0;
fhir:HumanName.family [ fhir:value "Dietician" ];
fhir:HumanName.given [
fhir:value "Dorothy";
fhir:index 0
]
]
];
fhir:CareTeam.identifier [
fhir:index 0;
fhir:Identifier.value [ fhir:value "12345" ]
];
fhir:CareTeam.status [ fhir:value "active"];
fhir:CareTeam.category [
fhir:index 0;
fhir:CodeableConcept.coding [
fhir:index 0;
a loinc:LA27976-2;
fhir:Coding.system [ fhir:value "http://loinc.org" ];
fhir:Coding.code [ fhir:value "LA27976-2" ];
fhir:Coding.display [ fhir:value "Encounter-focused care team" ]
]
];
fhir:CareTeam.name [ fhir:value "Peter James Charlmers Care Plan for Inpatient Encounter"];
fhir:CareTeam.subject [
fhir:link ;
fhir:Reference.reference [ fhir:value "Patient/example" ];
fhir:Reference.display [ fhir:value "Peter James Chalmers" ]
];
fhir:CareTeam.encounter [
fhir:link ;
fhir:Reference.reference [ fhir:value "Encounter/example" ]
];
fhir:CareTeam.period [
fhir:Period.end [ fhir:value "2013-01-01"^^xsd:date ]
];
fhir:CareTeam.participant [
fhir:index 0;
fhir:CareTeam.participant.role [
fhir:index 0;
fhir:CodeableConcept.text [ fhir:value "responsiblePerson" ]
];
fhir:CareTeam.participant.member [
fhir:link ;
fhir:Reference.reference [ fhir:value "Patient/example" ];
fhir:Reference.display [ fhir:value "Peter James Chalmers" ]
]
], [
fhir:index 1;
fhir:CareTeam.participant.role [
fhir:index 0;
fhir:CodeableConcept.text [ fhir:value "adviser" ]
];
fhir:CareTeam.participant.member [
fhir:Reference.reference [ fhir:value "#pr1" ];
fhir:Reference.display [ fhir:value "Dorothy Dietition" ]
];
fhir:CareTeam.participant.onBehalfOf [
fhir:link ;
fhir:Reference.reference [ fhir:value "Organization/f001" ]
];
fhir:CareTeam.participant.period [
fhir:Period.end [ fhir:value "2013-01-01"^^xsd:date ]
]
];
fhir:CareTeam.managingOrganization [
fhir:index 0;
fhir:link ;
fhir:Reference.reference [ fhir:value "Organization/f001" ]
] .
a fhir:Patient .
a fhir:Encounter .
a fhir:Organization .
# - ontology header ------------------------------------------------------------
a owl:Ontology;
owl:imports fhir:fhir.ttl;
owl:versionIRI .
# -------------------------------------------------------------------------------------