Merge pull request #62 from FHIR/2024-04-gg-actor-example

set up example of actor URL mapping
This commit is contained in:
Lloyd McKenzie 2024-04-04 07:11:20 -07:00 committed by GitHub
commit 64fc0557d5
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
3 changed files with 21 additions and 0 deletions

View File

@ -11,6 +11,9 @@ test comment for display
<profile value="http://somewhere.org/fhir/uv/myig/StructureDefinition/myObservation"/> <profile value="http://somewhere.org/fhir/uv/myig/StructureDefinition/myObservation"/>
</meta> </meta>
<status value="final"/> <status value="final"/>
<subject>
<reference value="http://somewhere.else.org/pas/server/Patient/example"/>
</subject>
<code> <code>
<coding> <coding>
<system value="http://somewhere.org/fhir/uv/myig/CodeSystem/cs-fake"/> <system value="http://somewhere.org/fhir/uv/myig/CodeSystem/cs-fake"/>

View File

@ -83,6 +83,9 @@
</reference> </reference>
</resource> --> </resource> -->
<resource> <resource>
<extension url="http://hl7.org/fhir/tools/StructureDefinition/ig-example-actor">
<valueCanonical value="http://somewhere.org/fhir/uv/myig/ActorDefinition/example"/>
</extension>
<reference> <reference>
<reference value="Patient/example"/> <reference value="Patient/example"/>
</reference> </reference>

View File

@ -0,0 +1,15 @@
{
"resourceType" : "ActorDefinition",
"id" : "example",
"extension" : [{
"url" : "http://hl7.org/fhir/tools/StructureDefinition/ig-actor-example-url",
"valueUrl" : "http://somewhere.else.org/pas/server"
}],
"url" : "http://somewhere.org/fhir/uv/myig/ActorDefinition/example",
"name" : "ExampleServer",
"title" : "Example Server",
"status" : "active",
"date" : "2021-11-02T14:31:30.239Z",
"description" : "Client Actor",
"type" : "system"
}