Skip to content

Commit 42b5c34

Browse files
committed
Changed namespaces to better differentiate between given DSF FHIR resources and resources provided by plugin developers
1 parent 37f1031 commit 42b5c34

1 file changed

Lines changed: 8 additions & 8 deletions

File tree

docs/src/process-development/api-v2/guides/creating-activity-definitions.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -166,7 +166,7 @@ The next slice is called `task-profile`:
166166
This section has almost the same structure as `message-name`. The only difference is the value for `value[x].type.code`. This means that instead of `valueString`, it requires using a `valueCanonical` element for `task-profile.value[x]`. Canonical values referring to [Task](../fhir/task.md) profiles in ActivityDefinitions have to conform to the rules outlined by the documentation on [URLs](../dsf/versions-placeholders-urls.md#urls). From the definition above, the following extension element is created and added to the [ActivityDefinition](../fhir/activitydefinition.md):
167167
```xml
168168
<extension url="task-profile">
169-
<valueCanonical value="http://dsf.dev/fhir/StructureDefinition/my-task|#{version}"/>
169+
<valueCanonical value="http://my.org/fhir/StructureDefinition/my-task|#{version}"/>
170170
</extension>
171171
```
172172

@@ -187,7 +187,7 @@ This section has almost the same structure as `message-name`. The only differenc
187187
<valueString value="myMessage"/>
188188
</extension>
189189
<extension url="task-profile">
190-
<valueCanonical value="http://dsf.dev/fhir/StructureDefinition/my-task|#{version}"/>
190+
<valueCanonical value="http://my.org/fhir/StructureDefinition/my-task|#{version}"/>
191191
</extension>
192192
</extension>
193193
</ActivityDefinition>
@@ -475,7 +475,7 @@ The `requester` extension is now finished and can be added it to the [ActivityDe
475475
<valueString value="myMessage"/>
476476
</extension>
477477
<extension url="task-profile">
478-
<valueCanonical value="http://dsf.dev/fhir/StructureDefinition/my-task|#{version}"/>
478+
<valueCanonical value="http://my.org/fhir/StructureDefinition/my-task|#{version}"/>
479479
</extension>
480480
<extension url="requester">
481481
<valueCoding>
@@ -555,7 +555,7 @@ The `recipient` will decide which DSF instance is allowed to process that messag
555555
<valueString value="myMessage"/>
556556
</extension>
557557
<extension url="task-profile">
558-
<valueCanonical value="http://dsf.dev/fhir/StructureDefinition/my-task|#{version}"/>
558+
<valueCanonical value="http://my.org/fhir/StructureDefinition/my-task|#{version}"/>
559559
</extension>
560560
<extension url="requester">
561561
<valueCoding>
@@ -622,7 +622,7 @@ The following elements are managed by the DSF BPE:
622622
<valueString value="myMessage"/>
623623
</extension>
624624
<extension url="task-profile">
625-
<valueCanonical value="http://dsf.dev/fhir/StructureDefinition/my-task|#{version}"/>
625+
<valueCanonical value="http://my.org/fhir/StructureDefinition/my-task|#{version}"/>
626626
</extension>
627627
<extension url="requester">
628628
<valueCoding>
@@ -696,7 +696,7 @@ All other elements can technically be omitted. Still, the following elements are
696696
<valueString value="myMessage"/>
697697
</extension>
698698
<extension url="task-profile">
699-
<valueCanonical value="http://dsf.dev/fhir/StructureDefinition/my-task|#{version}"/>
699+
<valueCanonical value="http://my.org/fhir/StructureDefinition/my-task|#{version}"/>
700700
</extension>
701701
<extension url="requester">
702702
<valueCoding>
@@ -737,7 +737,7 @@ All other elements can technically be omitted. Still, the following elements are
737737
<date value="#{date}"/>
738738
<!-- status managed by bpe -->
739739
<status value="unknown"/>
740-
<url value="http://dsf.dev/bpe/Process/myProcess"/>
740+
<url value="http://my.org/bpe/Process/myProcess"/>
741741
<kind value="Task"/>
742742
<name value="My Process"/>
743743
<title value="My Title For My Process"/>
@@ -748,7 +748,7 @@ All other elements can technically be omitted. Still, the following elements are
748748
<name value="DSF"/>
749749
<telecom>
750750
<system value="email"/>
751-
<value value="noreply@dsf.dev"/>
751+
<value value="noreply@my.org"/>
752752
</telecom>
753753
</contact>
754754
<description value="My Process processes information"/>

0 commit comments

Comments
 (0)