EnrollmentRequest - FHIR Resource (stu3)
This EnrollmentRequest Resource uses the
FHIR API standard for access and structure.
Validate an EnrollmentRequest FHIR Resource (stu3)
Resource Attributes
Attribute | Field is list | Type | Description |
---|
coverage | false | Reference | # Insurance information
|
created | false | dateTime | # Creation date
|
identifier | true | Identifier | # Business Identifier
|
insurer | false | Reference | # Target
|
organization | false | Reference | # Responsible organization
|
provider | false | Reference | # Responsible practitioner
|
status | false | code | # active | cancelled | draft | entered-in-error
|
subject | false | Reference | # The subject of the Products and Services
|
EnrollmentRequest Example
{
"status": "active",
"created": "2014-08-16",
"resourceType": "EnrollmentRequest",
"text": {
"status": "generated",
"div": "<div xmlns=\"http://www.w3.org/1999/xhtml\">A human-readable rendering of the EnrollmentRequest.</div>"
},
"coverage": {
"reference": "Coverage/9876B1"
},
"organization": {
"reference": "Organization/1"
},
"identifier": [
{
"system": "http://happyvalley.com/enrollmentrequest",
"value": "EN22345"
}
],
"id": "22345",
"subject": {
"reference": "Patient/1"
}
}
EnrollmentRequest Structure
{
"resourceType" : "EnrollmentRequest",
// from Resource: id, meta, implicitRules, and language
// from DomainResource: text, contained, extension, and modifierExtension
"identifier" : [{ Identifier }], // Business Identifier
"status" : "<code>", // active | cancelled | draft | entered-in-error
"created" : "<dateTime>", // Creation date
"insurer" : { Reference(Organization) }, // Target
"provider" : { Reference(Practitioner) }, // Responsible practitioner
"organization" : { Reference(Organization) }, // Responsible organization
"subject" : { Reference(Patient) }, // The subject of the Products and Services
"coverage" : { Reference(Coverage) } // Insurance information
}
EnrollmentRequest Search Parameters
The following search parameters can be used to query EnrollmentRequest resources. Just submit them like so:
https://api.1up.health/fhir/stu3/EnrollmentRequest?query-param=queryvalue
Search Parameter | Field Type | Resource Fields Searched |
---|
identifier | text | identifier |
organization | reference | organization |
patient | reference | subject |
subject | reference | subject |