"status": "current"
"description": "Physical"
"masterIdentifier": {
"system": "http://example.org/documents",
"value": "23425234234-2346"
}
"type": {
"text": "History and Physical"
}
"created": "2004-12-25T23:50:50-05:00"
"related": [
{
"identifier": {
"system": "http://example.org/documents",
"value": "23425234234-9999"
},
"ref": {
"reference": "DocumentReference/example"
}
}
]
"content": [
{
"pReference": {
"reference": "DocumentReference/example"
}
}
]
"source": "urn:oid:1.3.6.1.4.1.21367.2009.1.2.1"
"author": [
{
"reference": "#a1"
}
]
"identifier": [
{
"system": "http://example.org/documents",
"value": "23425234234-2347"
}
]
"recipient": [
{
"reference": "Practitioner/xcda1"
}
]
"subject": {
"reference": "Patient/xcda"
}
{
"status": "current",
"author": [
{
"reference": "#a1"
}
],
"masterIdentifier": {
"system": "http://example.org/documents",
"value": "23425234234-2346"
},
"resourceType": "DocumentManifest",
"text": {
"status": "generated",
"div": "<div xmlns=\"http://www.w3.org/1999/xhtml\">Text</div>"
},
"description": "Physical",
"created": "2004-12-25T23:50:50-05:00",
"recipient": [
{
"reference": "Practitioner/xcda1"
}
],
"related": [
{
"identifier": {
"system": "http://example.org/documents",
"value": "23425234234-9999"
},
"ref": {
"reference": "DocumentReference/example"
}
}
],
"content": [
{
"pReference": {
"reference": "DocumentReference/example"
}
}
],
"source": "urn:oid:1.3.6.1.4.1.21367.2009.1.2.1",
"contained": [
{
"resourceType": "Practitioner",
"telecom": [
{
"system": "email",
"value": "john.doe@healthcare.example.org"
}
],
"id": "a1",
"name": [
{
"given": [
"Sherry"
],
"family": "Dopplemeyer"
}
]
}
],
"identifier": [
{
"system": "http://example.org/documents",
"value": "23425234234-2347"
}
],
"type": {
"text": "History and Physical"
},
"id": "example",
"subject": {
"reference": "Patient/xcda"
}
}
{
"resourceType" : "DocumentManifest",
// from Resource: id, meta, implicitRules, and language
// from DomainResource: text, contained, extension, and modifierExtension
"masterIdentifier" : { Identifier }, // Unique Identifier for the set of documents
"identifier" : [{ Identifier }], // Other identifiers for the manifest
"status" : "<code>", // R! current | superseded | entered-in-error
"type" : { CodeableConcept }, // Kind of document set
"subject" : { Reference(Patient|Practitioner|Group|Device) }, // The subject of the set of documents
"created" : "<dateTime>", // When this document manifest created
"author" : [{ Reference(Practitioner|Organization|Device|Patient|
RelatedPerson) }], // Who and/or what authored the manifest
"recipient" : [{ Reference(Patient|Practitioner|RelatedPerson|Organization) }], // Intended to get notified about this set of documents
"source" : "<uri>", // The source system/application/software
"description" : "<string>", // Human-readable description (title)
"content" : [{ // R! The items included
// p[x]: Contents of this set of documents. One of these 2:
"pAttachment" : { Attachment }
"pReference" : { Reference(Any) }
}],
"related" : [{ // Related things
"identifier" : { Identifier }, // Identifiers of things that are related
"ref" : { Reference(Any) } // Related Resource
}]
}
The following search parameters can be used to query DocumentManifest resources. Just submit them like so:
https://api.1up.health/fhir/stu3/DocumentManifest?query-param=queryvalue
Search Parameter | Field Type | Resource Fields Searched |
---|---|---|
author | reference | author |
content-ref | reference | content.p.as |
created | date | created |
description | text | description |
identifier | text | masterIdentifier, identifier |
patient | reference | subject |
recipient | reference | recipient |
related-id | text | related.identifier |
related-ref | reference | related.ref |
source | uri | source |
status | text | status |
subject | reference | subject |
type | text | type |