Composition - FHIR Resource (dstu2)
This Composition Resource uses the
FHIR API standard for access and structure.
Validate an Composition FHIR Resource (dstu2)
Resource Attributes
Attribute | Field is list | Type | Description |
---|
attester | true | Data Type | # Attests to accuracy of composition
|
author | true | Reference | # Who and/or what authored the composition
|
class | false | CodeableConcept | # Categorization of Composition
|
confidentiality | false | code | # As defined by affinity domain
|
custodian | false | Reference | # Organization which maintains the composition
|
date | false | dateTime | # Composition editing time
|
encounter | false | Reference | # Context of the Composition
|
event | true | Data Type | # The clinical service(s) being documented
|
identifier | false | Identifier | # Logical identifier of composition (version-independent)
|
section | true | Data Type | # Composition is broken into sections
|
status | false | code | # preliminary | final | amended | entered-in-error
|
subject | false | Reference | # Who and/or what the composition is about
|
title | false | string | # Human Readable name/title
|
type | false | CodeableConcept | # Kind of composition (LOINC if possible)
|
Composition Structure
{
"resourceType" : "Composition",
// from Resource: id, meta, implicitRules, and language
// from DomainResource: text, contained, extension, and modifierExtension
"identifier" : { Identifier }, // Logical identifier of composition (version-independent)
"date" : "<dateTime>", // R! Composition editing time
"type" : { CodeableConcept }, // R! Kind of composition (LOINC if possible)
"class" : { CodeableConcept }, // Categorization of Composition
"title" : "<string>", // R! Human Readable name/title
"status" : "<code>", // R! preliminary | final | amended | entered-in-error
"confidentiality" : "<code>", // As defined by affinity domain
"subject" : { Reference(Any) }, // R! Who and/or what the composition is about
"author" : [{ Reference(Practitioner|Device|Patient|RelatedPerson) }], // R! Who and/or what authored the composition
"attester" : [{ // Attests to accuracy of composition
"mode" : ["<code>"], // R! personal | professional | legal | official
"time" : "<dateTime>", // When composition attested
"party" : { Reference(Patient|Practitioner|Organization) } // Who attested the composition
}],
"custodian" : { Reference(Organization) }, // Organization which maintains the composition
"event" : [{ // The clinical service(s) being documented
"code" : [{ CodeableConcept }], // Code(s) that apply to the event being documented
"period" : { Period }, // The period covered by the documentation
"detail" : [{ Reference(Any) }] // The event(s) being documented
}],
"encounter" : { Reference(Encounter) }, // Context of the Composition
"section" : [{ // Composition is broken into sections
"title" : "<string>", // Label for section (e.g. for ToC)
"code" : { CodeableConcept }, // Classification of section (recommended)
"text" : { Narrative }, // C? Text summary of the section, for human interpretation
"mode" : "<code>", // working | snapshot | changes
"orderedBy" : { CodeableConcept }, // Order of section entries
"entry" : [{ Reference(Any) }], // C? A reference to data that supports this section
"emptyReason" : { CodeableConcept }, // C? Why the section is empty
"section" : [{ Content as for Composition.section }] // C? Nested Section
}]
}
Composition Search Parameters
The following search parameters can be used to query Composition resources. Just submit them like so:
https://api.1up.health/fhir/dstu2/Composition?query-param=queryvalue
Search Parameter | Field Type | Resource Fields Searched |
---|
attester | reference | attester.party |
author | reference | author |
class | text | class |
confidentiality | text | confidentiality |
context | text | event.code |
date | date | date |
encounter | reference | encounter |
entry | reference | section.entry |
identifier | text | identifier |
patient | reference | subject |
period | date | event.period |
section | text | section.code |
status | text | status |
subject | reference | subject |
title | text | title |
type | text | type |