"code":
"actual":
"name":
"characteristic":
"member":
"identifier":
"type":
"quantity":
{
"resourceType" : "Group",
// from Resource: id, meta, implicitRules, and language
// from DomainResource: text, contained, extension, and modifierExtension
"identifier" : [{ Identifier }], // Unique id
"type" : "<code>", // R! person | animal | practitioner | device | medication | substance
"actual" : <boolean>, // C? R! Descriptive or actual
"code" : { CodeableConcept }, // Kind of Group members
"name" : "<string>", // Label for Group
"quantity" : "<unsignedInt>", // Number of members
"characteristic" : [{ // Trait of group members
"code" : { CodeableConcept }, // R! Kind of characteristic
// value[x]: Value held by characteristic. One of these 4:
"valueCodeableConcept" : { CodeableConcept },
"valueBoolean" : <boolean>,
"valueQuantity" : { Quantity },
"valueRange" : { Range },
"exclude" : <boolean>, // R! Group includes or excludes
"period" : { Period } // Period over which characteristic is tested
}],
"member" : [{ // C? Who or what is in group
"entity" : { Reference(Patient|Practitioner|Device|Medication|Substance) }, // R! Reference to the group member
"period" : { Period }, // Period member belonged to the group
"inactive" : <boolean> // If member is no longer in group
}]
}
The following search parameters can be used to query Group resources. Just submit them like so:
https://api.1up.health/fhir/dstu2/Group?query-param=queryvalue
Search Parameter | Field Type | Resource Fields Searched |
---|---|---|
actual | text | actual |
characteristic | text | characteristic.code |
characteristic-value | composite |
|
code | text | code |
exclude | text | characteristic.exclude |
identifier | text | identifier |
member | reference | member.entity |
type | text | type |
value | text | characteristic.value[x] |