Basic - FHIR Resource (stu3)
This Basic Resource uses the
FHIR API standard for access and structure.
Validate an Basic FHIR Resource (stu3)
Resource Attributes
Attribute | Field is list | Type | Description |
---|
author | false | Reference | # Who created
|
code | false | CodeableConcept | # Kind of Resource
|
created | false | date | # When created
|
identifier | true | Identifier | # Business identifier
|
subject | false | Reference | # Identifies the focus of this resource
|
Basic Example
{
"modifierExtension": [
{
"url": "http://example.org/do-not-use/fhir-extensions/referral#referredForService",
"valueCodeableConcept": {
"coding": [
{
"code": "11429006",
"system": "http://snomed.info/sct",
"display": "Consultation"
}
]
}
},
{
"url": "http://example.org/do-not-use/fhir-extensions/referral#targetDate",
"valuePeriod": {
"start": "2013-04-01",
"end": "2013-04-15"
}
},
{
"url": "http://example.org/do-not-use/fhir-extensions/referral#status",
"valueCode": "complete"
}
],
"extension": [
{
"url": "http://example.org/do-not-use/fhir-extensions/referral#requestingPractitioner",
"valueReference": {
"display": "Dokter Bronsig",
"reference": "Practitioner/f201"
}
},
{
"url": "http://example.org/do-not-use/fhir-extensions/referral#notes",
"valueString": "The patient had fever peaks over the last couple of days. He is worried about these peaks."
},
{
"url": "http://example.org/do-not-use/fhir-extensions/referral#fulfillingEncounter",
"valueReference": {
"reference": "Encounter/f201"
}
}
],
"created": "2013-05-14",
"resourceType": "Basic",
"text": {
"status": "generated",
"div": "<div xmlns=\"http://www.w3.org/1999/xhtml\">\n <p><b>Patient:</b>Roel</p>\n <p><b>Requestor:</b>Dokter Bronsig</p>\n <p><b>Type:</b>Consultation</p>\n <p><b>Target Date:</b>April 1 - April 31</p>\n <p>COMPLETED</p>\n <b>The patient had fever peaks over the last couple of days. He is worried about these peaks.</b>\n </div>"
},
"author": {
"reference": "Practitioner/example"
},
"code": {
"coding": [
{
"code": "referral",
"system": "http://hl7.org/fhir/basic-resource-type"
}
]
},
"identifier": [
{
"system": "http://goodhealth.org/basic/identifiers",
"value": "19283746"
}
],
"id": "referral",
"subject": {
"display": "Roel",
"reference": "Patient/f201"
}
}
Basic Structure
{
"resourceType" : "Basic",
// from Resource: id, meta, implicitRules, and language
// from DomainResource: text, contained, extension, and modifierExtension
"identifier" : [{ Identifier }], // Business identifier
"code" : { CodeableConcept }, // R! Kind of Resource
"subject" : { Reference(Any) }, // Identifies the focus of this resource
"created" : "<date>", // When created
"author" : { Reference(Practitioner|Patient|RelatedPerson) } // Who created
}
Basic Search Parameters
The following search parameters can be used to query Basic resources. Just submit them like so:
https://api.1up.health/fhir/stu3/Basic?query-param=queryvalue
Search Parameter | Field Type | Resource Fields Searched |
---|
author | reference | author |
code | text | code |
created | date | created |
identifier | text | identifier |
patient | reference | subject |
subject | reference | subject |