This page is part of the FHIR Specification (v0.0.82: DSTU 1). The current version which supercedes this version is 5.0.0. For a full list of available versions, see the Directory of published versions . Page versions: R4B R4 R3 R2

6.5.4 Resource DocumentManifest - Examples

Example Index:

Example of documentmanifestXMLJSON

6.5.4.1 General

XML

Example of documentmanifest (id = "example")

Raw XML

<DocumentManifest xmlns="http://hl7.org/fhir">
  <text>
    <status value="generated"/>
    <div xmlns="http://www.w3.org/1999/xhtml">Text</div>
  </text>

  <contained>
    <!--   Many XDS systems do not trak any id for the author. When systems don't do this, 
    the only option is for the author information to be contained in the Document Reference
       -->
    <Practitioner id="a1">    
        <name>
          <family value="Dopplemeyer"/>
          <given value="Sherry"/>
        </name>
        <telecom>
          <system value="email"/>
          <value value="john.doe@healthcare.example.org"/>
        </telecom>
      
      <organization>
        <display value="Cleveland Clinic"/>
      </organization>
<!--  
      &lt;organization&gt;
        &lt;display value=&quot;Berea Community&quot;/&gt;
      &lt;/organization&gt;      
  -->
      <role><text value="Primary Surgon"/></role>
      <specialty><text value="Orthopedic"/></specialty>
    </Practitioner>
  </contained>

  <masterIdentifier>
    <system value="http://example.org/documents"/>
    <value value="23425234234-2346"/>
  </masterIdentifier>
  <subject>
    <reference value="Patient/xcda"/>
  </subject>
  <type>
    <text value="History and Physical"/>
  </type>
  <author>
    <reference value="#a1"/>
  </author>
  <created value="2004-12-25T23:50:50"/>
  <source value="urn:oid:1.3.6.1.4.1.21367.2009.1.2.1"/>
  <status value="current"/>
  <description value="Physical"/>
  <content>
    <reference value="DocumentReference/example"/>
  </content>
</DocumentManifest>

JSON

Example of documentmanifest

{
  "resourceType": "DocumentManifest",
  "text": {
    "status": "generated",
    "div": "<div>Text</div>"
  },
  "contained": [
    {
      "resourceType": "Practitioner",
      "id": "a1",
      "name": {
        "family": [
          "Dopplemeyer"
        ],
        "given": [
          "Sherry"
        ]
      },
      "telecom": [
        {
          "system": "email",
          "value": "john.doe@healthcare.example.org"
        }
      ],
      "organization": {
        "display": "Cleveland Clinic"
      },
      "role": [
        {
          "text": "Primary Surgon"
        }
      ],
      "specialty": [
        {
          "text": "Orthopedic"
        }
      ]
    }
  ],
  "masterIdentifier": {
    "system": "http://example.org/documents",
    "value": "23425234234-2346"
  },
  "subject": [
    {
      "reference": "Patient/xcda"
    }
  ],
  "type": {
    "text": "History and Physical"
  },
  "author": [
    {
      "reference": "#a1"
    }
  ],
  "created": "2004-12-25T23:50:50",
  "source": "urn:oid:1.3.6.1.4.1.21367.2009.1.2.1",
  "status": "current",
  "description": "Physical",
  "content": [
    {
      "reference": "DocumentReference/example"
    }
  ]
}

comments powered by Disqus