FHIR:Vissue-MM-2759 Search result examples: verschil tussen versies

Uit informatiestandaarden
Naar navigatie springen Naar zoeken springen
(New page for issue MM-2759)
 
Regel 1: Regel 1:
 
{{IssuePaginaWaarschuwing|MM-2759|FHIR:V1.0_Search_result_examples}}
 
{{IssuePaginaWaarschuwing|MM-2759|FHIR:V1.0_Search_result_examples}}
 
__NOINDEX__
 
__NOINDEX__
 +
 +
<syntaxhighlight lang="xml" highlight="" style="max-height:400px; overflow: auto;">
 +
<Bundle xmlns="http://hl7.org/fhir" >
 +
    <id value="example-id"/> <!-- Bundle.id is not different than any other Resource.id -->
 +
    <type value="searchset"/> <!-- Bundle.type should be set to 'searchset' -->
 +
    <total value="1"/> <!-- Bundle.total is set to the number of matches for the request -->
 +
    <link>
 +
      <relation value="self"/>
 +
      <url value="https://example-server.nl/fhir/Observation?code=http://loinc.org|85354-9"/> <!-- The "self link" reflects the search as it was understood by the server -->
 +
    </link>
 +
    <entry>
 +
      <fullUrl value="https://example-server.nl/fhir/Observation/observation-123"/>
 +
      <resource>
 +
        <Observation>
 +
          <id value="observation-123" />
 +
          ...
 +
        </Observation>
 +
      </resource>
 +
      <search>
 +
        <mode value="match"/> <!-- Resources that match the search request have mode set to 'match' ->
 +
      </search>
 +
    </entry>
 +
</syntaxhighlight>

Versie van 13 mei 2022 15:00


<Bundle xmlns="http://hl7.org/fhir" >
    <id value="example-id"/> <!-- Bundle.id is not different than any other Resource.id -->
    <type value="searchset"/> <!-- Bundle.type should be set to 'searchset' -->
    <total value="1"/> <!-- Bundle.total is set to the number of matches for the request -->
    <link>
      <relation value="self"/>
      <url value="https://example-server.nl/fhir/Observation?code=http://loinc.org|85354-9"/> <!-- The "self link" reflects the search as it was understood by the server -->
    </link>
    <entry>
      <fullUrl value="https://example-server.nl/fhir/Observation/observation-123"/>
      <resource>
        <Observation>
          <id value="observation-123" />
          ...
        </Observation>
      </resource>
      <search>
        <mode value="match"/> <!-- Resources that match the search request have mode set to 'match' ->
      </search>
    </entry>