Download OpenAPI specification:Download
WRS Health offers a FHIR Server for interoperable use of our healthcare data using the open standards developed by HL7. The FHIR standard format allows for easier data processing and exchange through common off-the-shelf frameworks which support the FHIR data model and REST services.
Technical documentation regarding FHIR resources and API methods to interoperate with WRS Health FHIR platform will be found here. Default syntax is JSON, authorization is performed by using OAuth2 (under TLS 1.2), and all HTTP methods follow the REST syntax (GET, POST, PUT, DELETE; PATCH).
No additional components are required to be installed in order to configure the connection to WRS Health FHIR Server.
Default FHIR Server URL: https://api.fhir.wrs.cloud/r4/ .
Current application version: 7.0 (latest)
Developers that want to connect to WRS Health FHIR Server must send an email to fhir@wrshealth.com requesting access. WRS Health FHIR team will reply with the requested information to be fulfilled in order to create a new 3rd party app connection to WRS Health FHIR Server. Such information will require technical and non-technical data to be provided by the developer/3rd party.
Once the registration process is successfully completed, the WRS Health Operations team will proceed to create the user in the Authorization Server and send credentials to the subscriber.
Afterwards, developers can proceed to configure the 3rd party software by following the suggested steps in the "Required Configurations" section.
Once the registration process is successfully finished and all the access credentials are sent to the developers, the following configurations must be taken into account:
SMART App launch sequence
Authorization process:
Request the authorization code from the Authorization Server (see "SMART Authorization code grant" section). A series of information from the 3rd party software, as well as some information provided by WRS Health (client id and aud), must be provided to create the Authorization code. If the request is successful, this temporary code (Authorization code) will be provided to generate the Access token. Access token will be exchanged in all the following operations done with the WRS Health FHIR Server.
Once the Authorization code is retrieved from the Authorization Server an Access token and a Refresh token must be created (see "Exchange Code for Access token" section). The only external information (not related with the 3rd party software) that must be provided here is the Authorization code, which must be sent in the code query parameter. Also, the client id and client secret (both provided by the WRS Operations team) must be sent in the headers under the Authorization parameter (this must be Base64 encoded in the format client id:client secret ) .
If the request is successful, an Access token will be provided for future interactions with WRS Health FHIR platform by using it as a bearer token in the Authorization header. This code will have a TTL (Time-To-Live) of 5 minutes, and after the expiration a new Access token must be created by submitting the Refresh token created in step 2.
Set of capabilities (behaviors) this FHIR Server supports in the current implementation.
Authorization is performed in 2 steps:
This method is used both for obtaining a new token as well as refreshing an existant one. To obtain a new access token an Authorization code must be obtained first - see: SMART Authorization code grant
| code | string The authorization code returned on the Authorization code grant - see: SMART Authorization code grant |
| grant_type | string Enum: "authorization_code" "refresh_token" Use authorization_code if a new token is to be created, or refresh_token to refresh an existent one |
| redirect_uri | string Same URL used in redirect_uri for SMART Authorization code grant |
| refresh_token | string Token that will be refreshed if grant_type parameter is set to refresh_token |
| Authorization required | string Basic access authentication by providing client_id and client_secret. This information will be provided by WRS Health after finishing your application registering process. Example of Basic Auth: Authorization: Basic d3JzaXN0aGViZXN0Om15cGFzc3dvcmRydWxlcw== |
Appointment resources are used to provide information about a planned meeting that may be in the future or past. The resource only describes a single meeting, a series of repeating visits would require multiple appointment resources to be created for each instance - see: https://www.hl7.org/fhir/appointment.html
Obtains a list (FHIR Bundle) of all appointments in the EHR. Data filtering can be achieved by providing query parameters
| patient required | string WRS Health internal Patient ID |
| status | string Appointment status to filter. Allowed values: booked, cancelled. |
| _revinclude | string List of additional resources that refer to this resource - see: https://www.hl7.org/fhir/search.html#revinclude. Most frequently used: Provenance |
{- "resourceType": "Bundle",
- "type": "searchset",
- "id": "712ce94f-8747-449b-b3a0-6837adb1706d",
- "entry": [
- {
- "resource": {
- "id": "14421657",
- "resourceType": "Appointment",
- "identifier": {
- "value": "14421657"
}, - "status": "cancelled",
- "created": "2024-10-15T10:25:31-04:00",
- "start": "2024-11-01T19:00:00-04:00",
- "end": "2024-11-01T19:15:00-04:00",
- "participant": [
- {
- "actor": {
- "reference": "Patient/2683932",
- "type": "Patient",
- "identifier": "2683932"
}, - "status": "declined"
}, - {
- "actor": {
- "reference": "Practitioner/12271",
- "type": "Practitioner",
- "identifier": "12271"
}, - "status": "needs-action"
}
]
}
}, - {
- "resource": {
- "id": "14421661",
- "resourceType": "Appointment",
- "identifier": {
- "value": "14421661"
}, - "status": "booked",
- "created": "2024-10-15T12:17:24-04:00",
- "start": "2024-11-01T19:15:00-04:00",
- "end": "2024-11-01T19:30:00-04:00",
- "participant": [
- {
- "actor": {
- "reference": "Patient/2683932",
- "type": "Patient",
- "identifier": "2683932"
}, - "status": "needs-action"
}, - {
- "actor": {
- "reference": "Practitioner/12271",
- "type": "Practitioner",
- "identifier": "12271"
}, - "status": "needs-action"
}
]
}
}
]
}Returns a single appointment resource - if found - based on the provided id
| id required | string WRS Health internal Appointment ID |
{- "id": "14421657",
- "resourceType": "Appointment",
- "identifier": {
- "value": "14421657"
}, - "status": "cancelled",
- "created": "2024-10-15T10:25:31-04:00",
- "start": "2024-11-01T19:00:00-04:00",
- "end": "2024-11-01T19:15:00-04:00",
- "participant": [
- {
- "actor": {
- "reference": "Patient/2683932",
- "type": "Patient",
- "identifier": "2683932"
}, - "status": "declined"
}, - {
- "actor": {
- "reference": "Practitioner/12271",
- "type": "Practitioner",
- "identifier": "12271"
}, - "status": "needs-action"
}
]
}This Resource covers data about patients involved in health-related activities - see: https://www.hl7.org/fhir/patient.html
Profiles used: http://hl7.org/fhir/us/core/StructureDefinition/us-core-patient
Obtains a list (FHIR Bundle) of all patients available in the EHR. Data filtering can be achieved by providing query parameters.
| _id | string WRS Health internal Patient ID |
| identifier | string Patient identifier following HL7 rules. See https://build.fhir.org/datatypes.html#Identifier |
| name | string Patient name following HL7 rules. See https://build.fhir.org/datatypes.html#HumanName |
| birthdate | string Patient birthdate (format: YYYY-MM-DD) |
| gender | string Patient gender following HL7 rules. Accepted values: male , female , other , unknown |
{- "resourceType": "Bundle",
- "id": "86a737a5-d168-4dc7-8602-2d06350029fc",
- "meta": {
- "lastUpdated": "2022-08-25T16:32:11.912Z"
}, - "type": "searchset",
- "total": 1,
- "entry": [
- {
- "resource": {
- "resourceType": "Patient",
- "id": "500",
- "text": {
- "status": "generated",
- "div": "<div xmlns=\"http://www.w3.org/1999/xhtml\">Success!</div>"
}, - "name": [
- {
- "use": "usual",
- "text": "Filiberto White",
- "family": "White",
- "given": [
- "Filiberto"
]
}, - {
- "family": "Larkin",
- "given": [
- "Maureen"
], - "use": "old"
}
], - "telecom": [
- {
- "system": "phone",
- "value": "908-834-5976",
- "use": "home"
}, - {
- "system": "phone",
- "value": "272-486-9019",
- "use": "work"
}
], - "gender": "male",
- "birthDate": "1984-08-28",
- "address": [
- {
- "use": "home",
- "type": "physical",
- "text": "641 Immanuel Course, Lindgrenburgh, Arkansas 28670-4980",
- "line": [
- "641 Immanuel Course"
], - "city": "Lindgrenburgh",
- "state": "Arkansas",
- "postalCode": "28670-4980",
- "period": {
- "start": "2004-03-05"
}
}
], - "maritalStatus": {
- "coding": [
]
}, - "contact": [
- {
- "relationship": [
], - "name": {
- "family": "Kozey",
- "given": [
- "Maryse"
], - "use": "usual"
}, - "telecom": [
- {
- "system": "phone",
- "value": "1-757-387-7952"
}
], - "address": {
- "use": "home",
- "type": "physical",
- "text": "641 Immanuel Course, Lindgrenburgh, Arkansas 28670-4980",
- "line": [
- "641 Immanuel Course"
], - "city": "Lindgrenburgh",
- "state": "Arkansas",
- "postalCode": "28670-4980"
}, - "gender": "female"
}
], - "communication": [
- {
- "language": {
- "coding": [
- {
- "system": "urn:ietf:bcp:47",
- "code": "en-US",
- "display": "English (United States)"
}
], - "text": "United States"
}, - "preferred": true
}
], - "extension": [
- {
- "extension": [
- {
- "url": "ombCategory",
- "valueCoding": {
- "system": "urn:oid:2.16.840.1.113883.6.238",
- "code": "2106-3",
- "display": "White"
}
}, - {
- "url": "text",
- "valueString": "White"
}
],
}, - {
- "extension": [
- {
- "url": "ombCategory",
- "valueCoding": {
- "system": "urn:oid:2.16.840.1.113883.6.238",
- "code": "2186-5",
- "display": "Not Hispanic or Latino"
}
}, - {
- "url": "text",
- "valueString": "Not Hispanic or Latino"
}
],
}
]
},
}
]
}Returns a single patient resource - if found - based on the provided id
| id required | string WRS Health internal Patient ID |
{- "resourceType": "Patient",
- "id": "500",
- "text": {
- "status": "generated",
- "div": "<div xmlns=\"http://www.w3.org/1999/xhtml\">Success!</div>"
}, - "name": [
- {
- "use": "usual",
- "text": "Filiberto White",
- "family": "White",
- "given": [
- "Filiberto"
]
}
], - "telecom": [
- {
- "system": "phone",
- "value": "908-834-5976",
- "use": "home"
}
], - "gender": "male",
- "birthDate": "1984-08-28",
- "address": [
- {
- "use": "home",
- "type": "physical",
- "text": "641 Immanuel Course, Lindgrenburgh, Arkansas 28670-4980",
- "line": [
- "641 Immanuel Course"
], - "city": "Lindgrenburgh",
- "state": "Arkansas",
- "postalCode": "28670-4980",
- "period": {
- "start": "2004-03-05"
}
}
], - "maritalStatus": {
- "coding": [
]
}, - "contact": [
- {
- "relationship": [
], - "name": {
- "family": "Kozey",
- "given": [
- "Maryse"
], - "use": "usual"
}, - "telecom": [
- {
- "system": "phone",
- "value": "1-757-387-7952"
}
], - "address": {
- "use": "home",
- "type": "physical",
- "text": "641 Immanuel Course, Lindgrenburgh, Arkansas 28670-4980",
- "line": [
- "641 Immanuel Course"
], - "city": "Lindgrenburgh",
- "state": "Arkansas",
- "postalCode": "28670-4980"
}, - "gender": "female"
}
], - "communication": [
- {
- "language": {
- "coding": [
- {
- "system": "urn:ietf:bcp:47",
- "code": "en-US",
- "display": "English (United States)"
}
], - "text": "United States"
}, - "preferred": true
}
], - "extension": [
- {
- "extension": [
- {
- "url": "ombCategory",
- "valueCoding": {
- "system": "urn:oid:2.16.840.1.113883.6.238",
- "code": "2106-3",
- "display": "White"
}
}, - {
- "url": "text",
- "valueString": "White"
}
],
}, - {
- "extension": [
- {
- "url": "ombCategory",
- "valueCoding": {
- "system": "urn:oid:2.16.840.1.113883.6.238",
- "code": "2186-5",
- "display": "Not Hispanic or Latino"
}
}, - {
- "url": "text",
- "valueString": "Not Hispanic or Latino"
}
],
}
]
}A record of a clinical assessment of an allergy or intolerance; a propensity, or a potential risk to an individual, to have an adverse reaction on future exposure to the specified substance, or class of substance - see: https://www.hl7.org/fhir/allergyintolerance.html
Profiles used: http://hl7.org/fhir/us/core/STU4/StructureDefinition-us-core-allergyintolerance.html
Obtains a list (FHIR Bundle) of all allergies and intolerances from all patients available in the EHR. Data filtering can be achieved by providing query parameters.
| _id | string WRS Health internal AllergyIntolerance ID |
| patient | string WRS Health internal Patient ID |
| _revinclude | string List of additional resources that refer to this resource - see: https://www.hl7.org/fhir/search.html#revinclude. Most frequently used: Provenance |
{- "resourceType": "Bundle",
- "id": "ad055d43-c05d-41ac-84c8-000919d05c94",
- "meta": {
- "lastUpdated": "2022-08-25T16:32:12.840Z"
}, - "type": "searchset",
- "total": 1,
- "link": [
], - "entry": [
- {
- "resource": {
- "resourceType": "AllergyIntolerance",
- "id": "1",
- "clinicalStatus": {
- "coding": [
- {
- "code": "active",
- "display": "Active"
}
]
}, - "verificationStatus": {
- "coding": [
- {
- "code": "confirmed",
- "display": "Confirmed"
}
]
}, - "code": {
- "coding": [
], - "text": "Allergic to fresh fish. Tolerates canned fish"
}, - "patient": {
- "reference": "Patient/500",
- "type": "Patient"
}, - "reaction": [
- {
- "substance": {
- "coding": [
- {
- "code": "1160593",
- "display": "cashew nut allergenic extract Injectable Product"
}
]
}, - "manifestation": [
], - "description": "The patient reports that the onset of urticaria was within 15 minutes of eating cashews.",
- "severity": "moderate"
}
]
},
}
]
}Returns a single allergy/intolerance resource - if found - based on the provided id
| id required | string WRS Health internal AllergyIntolerance ID |
{- "resourceType": "AllergyIntolerance",
- "id": "1",
- "clinicalStatus": {
- "coding": [
- {
- "code": "active",
- "display": "Active"
}
]
}, - "verificationStatus": {
- "coding": [
- {
- "code": "confirmed",
- "display": "Confirmed"
}
]
}, - "code": {
- "coding": [
], - "text": "Allergic to fresh fish. Tolerates canned fish"
}, - "patient": {
- "reference": "Patient/500",
- "type": "Patient"
}, - "reaction": [
- {
- "substance": {
- "coding": [
- {
- "code": "1160593",
- "display": "cashew nut allergenic extract Injectable Product"
}
]
}, - "manifestation": [
], - "description": "The patient reports that the onset of urticaria was within 15 minutes of eating cashews.",
- "severity": "moderate"
}
]
}The FHIR Bulk Data Access protocol describes a mechanism for efficiently requesting large amounts of data in a convenient format. This protocol can be used to request all data on a server, or a specific subset that is useful for a given use case - see: http://hl7.org/fhir/uv/bulkdata/export/index.html
Describes the intention of how one or more practitioners intend to deliver care for a particular patient, group or community for a period of time, possibly limited to care for a specific condition or set of conditions - see: https://www.hl7.org/fhir/careplan.html
Profiles used: http://hl7.org/fhir/us/core/STU4/StructureDefinition-us-core-careplan.html
Obtains a list (FHIR Bundle) of all care plans from all patients available in the EHR. Data filtering can be achieved by providing query parameters.
| _id | string WRS Health internal CarePlan ID |
| patient | string WRS Health internal Patient ID |
| category | string Category identifier. Must be a valid code from http://snomed.info/sct where concept is-a 734163000 (Care plan) |
| _revinclude | string List of additional resources that refer to this resource - see: https://www.hl7.org/fhir/search.html#revinclude. Most frequently used: Provenance |
{- "resourceType": "Bundle",
- "id": "0bf8fe4f-10ca-46d9-bee7-e818265bf9b2",
- "meta": {
- "lastUpdated": "2022-08-25T16:32:14.166Z"
}, - "type": "searchset",
- "total": 1,
- "link": [
- {
- "relation": "self",
}
], - "entry": [
- {
- "resource": {
- "resourceType": "CarePlan",
- "id": "1",
- "text": {
- "status": "generated",
- "div": "<div xmlns=\"http://www.w3.org/1999/xhtml\">Success!</div>"
}, - "status": "active",
- "intent": "plan",
- "category": [
- {
- "coding": [
- {
- "code": "assess-plan",
- "display": "Assessment and Plan of Treatment"
}
], - "text": "Assessment and Plan of Treatment"
}
], - "subject": {
- "reference": "Patient/500",
- "type": "Patient"
}
},
}
]
}Returns a single care plan resource - if found - based on the provided id
| id required | string WRS Health internal CarePlan ID |
{- "resourceType": "CarePlan",
- "id": "1",
- "text": {
- "status": "generated",
- "div": "<div xmlns=\"http://www.w3.org/1999/xhtml\">Success!</div>"
}, - "status": "active",
- "intent": "plan",
- "category": [
- {
- "coding": [
- {
- "code": "assess-plan",
- "display": "Assessment and Plan of Treatment"
}
], - "text": "Assessment and Plan of Treatment"
}
], - "subject": {
- "reference": "Patient/500",
- "type": "Patient"
}
}The Care Team includes all the people and organizations who plan to participate in the coordination and delivery of care for a patient - see: https://www.hl7.org/fhir/careteam.html
Profiles used: http://hl7.org/fhir/us/core/STU4/StructureDefinition-us-core-careteam.html
Obtains a list (FHIR Bundle) of all care teams from all patients available in the EHR. Data filtering can be achieved by providing query parameters.
| _id | string WRS Health internal CareTeam ID |
| patient | string WRS Health internal Patient ID |
| status | string Status identifier. Must be a valid code from https://build.fhir.org/valueset-care-team-status.html. Accepted values: proposed, active, suspended, inactive, entered-in-error |
| _revinclude | string List of additional resources that refer to this resource - see: https://www.hl7.org/fhir/search.html#revinclude. Most frequently used: Provenance |
{- "resourceType": "Bundle",
- "id": "5c53050a-4202-4e2b-bb78-f03aa87dc723",
- "meta": {
- "lastUpdated": "2022-08-25T16:32:15.033Z"
}, - "type": "searchset",
- "total": 1,
- "link": [
], - "entry": [
- {
- "resource": {
- "resourceType": "CareTeam",
- "id": "4",
- "text": {
- "status": "generated",
- "div": "<div xmlns=\"http://www.w3.org/1999/xhtml\">Success!</div>"
}, - "status": "proposed",
- "category": [
- {
- "coding": [
]
}
], - "subject": {
- "reference": "Patient/500",
- "type": "Patient"
}, - "participant": [
- {
- "role": [
], - "member": {
- "reference": "Practitioner/1",
- "type": "Practitioner"
}
}
]
},
}
]
}Returns a single care team resource - if found - based on the provided id
| id required | string WRS Health internal CareTeam ID |
{- "resourceType": "CareTeam",
- "id": "4",
- "text": {
- "status": "generated",
- "div": "<div xmlns=\"http://www.w3.org/1999/xhtml\">Success!</div>"
}, - "status": "proposed",
- "category": [
- {
- "coding": [
]
}
], - "subject": {
- "reference": "Patient/500",
- "type": "Patient"
}, - "participant": [
- {
- "role": [
], - "member": {
- "reference": "Practitioner/1",
- "type": "Practitioner"
}
}
]
}A clinical condition, problem, diagnosis, or other event, situation, issue, or clinical concept that has risen to a level of concern - see: https://www.hl7.org/fhir/condition.html
Profiles used: http://hl7.org/fhir/us/core/STU4/StructureDefinition-us-core-condition.html
Obtains a list (FHIR Bundle) of all conditions from all patients available in the EHR. Data filtering can be achieved by providing query parameters.
| _id | string WRS Health internal Condition ID |
| patient | string WRS Health internal Patient ID |
| _revinclude | string List of additional resources that refer to this resource - see: https://www.hl7.org/fhir/search.html#revinclude. Most frequently used: Provenance |
{- "resourceType": "Bundle",
- "id": "2cbcaeec-e4cd-49b3-a34b-9cee9f82ed12",
- "meta": {
- "lastUpdated": "2022-08-25T16:32:18.487Z"
}, - "type": "searchset",
- "total": 1,
- "link": [
], - "entry": [
- {
- "resource": {
- "resourceType": "Condition",
- "id": "1",
- "text": {
- "status": "generated",
- "div": "<div xmlns=\"http://www.w3.org/1999/xhtml\">Success!</div>"
}, - "clinicalStatus": {
}, - "verificationStatus": {
- "coding": [
]
}, - "category": [
- {
- "coding": [
- {
- "code": "encounter-diagnosis",
- "display": "Encounter Diagnosis"
}
]
}
], - "code": {
- "text": "Burnt Ear"
}, - "subject": {
- "reference": "Patient/500",
- "type": "Patient"
}
},
}
]
}Returns a single condition resource - if found - based on the provided id
| id required | string WRS Health internal Condition ID |
{- "resourceType": "Condition",
- "id": "1",
- "text": {
- "status": "generated",
- "div": "<div xmlns=\"http://www.w3.org/1999/xhtml\">Success!</div>"
}, - "clinicalStatus": {
}, - "verificationStatus": {
- "coding": [
]
}, - "category": [
- {
- "coding": [
- {
- "code": "encounter-diagnosis",
- "display": "Encounter Diagnosis"
}
]
}
], - "code": {
- "text": "Burnt Ear"
}, - "subject": {
- "reference": "Patient/500",
- "type": "Patient"
}
}A type of a manufactured item that is used in the provision of healthcare without being substantially changed through that activity. The device may be a medical or non-medical device - see: https://www.hl7.org/fhir/device.html
Profiles used: http://hl7.org/fhir/us/core/STU4/StructureDefinition-us-core-implantable-device.html (only for implantable devices)
Obtains a list (FHIR Bundle) of all devices from all patients available in the EHR. Data filtering can be achieved by providing query parameters.
| _id | string WRS Health internal Device ID |
| patient | string WRS Health internal Patient ID |
| _revinclude | string List of additional resources that refer to this resource - see: https://www.hl7.org/fhir/search.html#revinclude. Most frequently used: Provenance |
{- "resourceType": "Bundle",
- "id": "5decbaae-ae26-4a09-90c1-84f431db15bb",
- "meta": {
- "lastUpdated": "2022-08-25T16:32:19.260Z"
}, - "type": "searchset",
- "total": 1,
- "entry": [
- {
- "resource": {
- "resourceType": "Device",
- "id": "1",
- "text": {
- "status": "generated",
- "div": "<div xmlns=\"http://www.w3.org/1999/xhtml\">Success!</div>"
}, - "meta": {
}, - "type": {
- "coding": [
]
}, - "lotNumber": "HNEdkE@DARF'l^!\"1,X;",
- "manufactureDate": "2010-04-18T00:00:00+00:00",
- "expirationDate": "2001-11-14T00:00:00+00:00",
- "patient": {
- "reference": "Patient/500",
- "type": "Patient"
}, - "distinctIdentifier": "/4Lh|ux=mVS\"luZ'n6DV",
- "serialNumber": ":WH-sNmN0)Gm+C:=vn+k",
- "udiCarrier": [
- {
- "carrierHRF": "X/kEnl@k_bDeP.3|u_b@",
- "deviceIdentifier": "61N2585T:4d%Q5j<!0E)"
}
]
},
}
]
}Returns a single device resource - if found - based on the provided id
| id required | string WRS Health internal Device ID |
{- "resourceType": "Device",
- "id": "1",
- "text": {
- "status": "generated",
- "div": "<div xmlns=\"http://www.w3.org/1999/xhtml\">Success!</div>"
}, - "meta": {
}, - "type": {
- "coding": [
]
}, - "lotNumber": "HNEdkE@DARF'l^!\"1,X;",
- "manufactureDate": "2010-04-18T00:00:00+00:00",
- "expirationDate": "2001-11-14T00:00:00+00:00",
- "patient": {
- "reference": "Patient/500",
- "type": "Patient"
}, - "distinctIdentifier": "/4Lh|ux=mVS\"luZ'n6DV",
- "serialNumber": ":WH-sNmN0)Gm+C:=vn+k",
- "udiCarrier": [
- {
- "carrierHRF": "X/kEnl@k_bDeP.3|u_b@",
- "deviceIdentifier": "61N2585T:4d%Q5j<!0E)"
}
]
}The findings and interpretation of diagnostic tests performed on patients, groups of patients, devices, and locations, and/or specimens derived from these. The report includes clinical context such as requesting and provider information, and some mix of atomic results, images, textual and coded interpretations, and formatted representation of diagnostic reports - see: https://www.hl7.org/fhir/diagnosticreport.html
Profiles used: http://hl7.org/fhir/us/core/STU4/StructureDefinition-us-core-diagnosticreport-note.html (used for reports and exchange notes) http://hl7.org/fhir/us/core/STU4/StructureDefinition-us-core-diagnosticreport-lab.html (used for lab results reports)
Obtains a list (FHIR Bundle) of all diagnostics reports from all patients available in the EHR. Data filtering can be achieved by providing query parameters.
| _id | string WRS Health internal DiagnosticReport ID |
| patient | string WRS Health internal Patient ID |
| category | string Category identifier. Must be a valid code from https://www.hl7.org/fhir/valueset-diagnostic-service-sections.html (FHIR ValueSet) or http://hl7.org/fhir/us/core/STU5/ValueSet-us-core-diagnosticreport-category.html (LOINC codes) |
| code | string Name/Code for this diagnostic report (LOINC code). Most frequently LOINC codes used: where CLASSTYPE = 2 (for reports and notes) and where CLASSTYPE = 1 (for lab reports) |
| date | string The clinically relevant time of the report - see: https://www.hl7.org/fhir/search.html#date |
| _revinclude | string List of additional resources that refer to this resource - see: https://www.hl7.org/fhir/search.html#revinclude. Most frequently used: Provenance |
{- "resourceType": "Bundle",
- "id": "09056492-fc71-44ba-89de-a6fd824387ef",
- "meta": {
- "lastUpdated": "2022-08-25T16:32:20.647Z"
}, - "type": "searchset",
- "total": 1,
- "link": [
- {
- "relation": "self",
}
], - "entry": [
- {
- "resource": {
- "resourceType": "DiagnosticReport",
- "id": "64",
- "text": {
- "status": "generated",
- "div": "<div xmlns=\"http://www.w3.org/1999/xhtml\">Success!</div>"
}, - "status": "registered",
- "category": [
], - "code": {
- "coding": [
- {
- "code": "58410-2",
- "display": "Complete blood count (hemogram) panel - Blood by Automated count"
}
], - "text": "Complete Blood Count"
}, - "subject": {
- "reference": "Patient/500",
- "type": "Patient"
}, - "encounter": {
- "reference": "Encounter/1",
- "type": "Encounter"
}, - "effectiveDateTime": "1980-11-17T11:48:05+00:00",
- "issued": "2020-06-03T21:50:34+00:00",
- "performer": [
- {
- "reference": "Organization/1",
- "type": "Organization"
}
], - "result": [
- {
- "reference": "Observation/1",
- "type": "Observation"
}
]
},
}
]
}Returns a single diagnostic report resource - if found - based on the provided id
| id required | string WRS Health internal DiagnosticReport ID |
{- "resourceType": "DiagnosticReport",
- "id": "2",
- "text": {
- "status": "generated",
- "div": "<div xmlns=\"http://www.w3.org/1999/xhtml\">Success!</div>"
}, - "status": "registered",
- "category": [
], - "code": {
- "coding": [
- {
- "code": "58410-2",
- "display": "Complete blood count (hemogram) panel - Blood by Automated count"
}
], - "text": "Complete Blood Count"
}, - "subject": {
- "reference": "Patient/500",
- "type": "Patient"
}, - "encounter": {
- "reference": "Encounter/1",
- "type": "Encounter"
}, - "effectiveDateTime": "2018-04-22T00:42:14+00:00",
- "issued": "1973-11-05T12:55:32+00:00",
- "performer": [
- {
- "reference": "Organization/1",
- "type": "Organization"
}
],
}A reference to a document of any kind for any purpose. Provides metadata about the document so that the document can be discovered and managed. The scope of a document is any seralized object with a mime-type, so includes formal patient centric documents (CDA), cliical notes, scanned paper, and non-patient specific documents like policy text - see: https://www.hl7.org/fhir/documentreference.html
Profiles used: http://hl7.org/fhir/us/core/STU4/StructureDefinition-us-core-documentreference.html
Obtains a list (FHIR Bundle) of all documents from all patients available in the EHR. Data filtering can be achieved by providing query parameters
| _id | string WRS Health internal DocumentReference ID |
| patient | string WRS Health internal Patient ID |
| category | string Category identifier. Must be a valid code from https://www.hl7.org/fhir/valueset-doc-classcodes.html. Most frequent code used: clinical-note (US Core) |
| type | string Type identifier. Must be a valid code from http://hl7.org/fhir/us/core/STU5/ValueSet-us-core-documentreference-type.html. Accepted values: UNK (unknown) and codes from http://loinc.org where SCALE_TYP = DOC |
| date | string The date the document reference was created - see: https://www.hl7.org/fhir/search.html#date |
| _revinclude | string List of additional resources that refer to this resource - see: https://www.hl7.org/fhir/search.html#revinclude. Most frequently used: Provenance |
{- "resourceType": "Bundle",
- "id": "b4b95477-edfc-41be-89c5-b04904545b27",
- "meta": {
- "lastUpdated": "2022-08-25T16:32:26.705Z"
}, - "type": "searchset",
- "total": 6,
- "link": [
], - "entry": [
- {
- "resource": {
- "resourceType": "DocumentReference",
- "id": "1",
- "text": {
- "status": "generated",
- "div": "<div xmlns=\"http://www.w3.org/1999/xhtml\">Success!</div>"
}, - "identifier": [
- {
- "use": "usual",
- "value": "1"
}
], - "status": "current",
- "docStatus": "preliminary",
- "type": {
}, - "category": [
- {
- "coding": [
- {
- "code": "History and Physical",
- "display": "History and Physical"
}
]
}
], - "subject": {
- "reference": "Patient/500",
- "type": "Patient"
}, - "date": "2006-01-06T00:00:00+00:00",
- "author": [
- {
- "reference": "Practitioner/1"
}
], - "custodian": {
- "reference": "Organization/1"
}, - "content": [
- {
- "format": {
- "system": "urn:oid:1.3.6.1.4.1.19376.1.2.3",
- "code": "urn:ihe:pcc:handp:2008"
}
}
], - "context": {
- "encounter": [
- {
- "reference": "Encounter/1",
- "type": "Encounter"
}
], - "period": {
- "start": "2004-12-23T08:00:00+10:00",
- "end": "2004-12-23T08:01:00+10:00"
}
}
},
}, - {
- "resource": {
- "resourceType": "DocumentReference",
- "id": "22",
- "text": {
- "status": "generated",
- "div": "<div xmlns=\"http://www.w3.org/1999/xhtml\">Success!</div>"
}, - "identifier": [
- {
- "use": "usual",
- "value": "22"
}
], - "status": "current",
- "docStatus": "preliminary",
- "category": [
- {
- "coding": [
- {
- "code": "History and Physical",
- "display": "History and Physical"
}
]
}
], - "subject": {
- "reference": "Patient/500",
- "type": "Patient"
}, - "date": "1980-05-06T00:00:00+00:00",
- "author": [
- {
- "reference": "Practitioner/1"
}
], - "custodian": {
- "reference": "Organization/1"
}, - "content": [
- {
- "attachment": {
- "contentType": "text/plain"
}, - "format": {
- "system": "urn:oid:1.3.6.1.4.1.19376.1.2.3",
- "code": "urn:ihe:pcc:handp:2008"
}
}
], - "context": {
- "encounter": [
- {
- "reference": "Encounter/1",
- "type": "Encounter"
}
], - "period": {
- "start": "2004-12-23T08:00:00+10:00",
- "end": "2004-12-23T08:01:00+10:00"
}
}
},
}, - {
- "resource": {
- "resourceType": "DocumentReference",
- "id": "43",
- "text": {
- "status": "generated",
- "div": "<div xmlns=\"http://www.w3.org/1999/xhtml\">Success!</div>"
}, - "identifier": [
- {
- "use": "usual",
- "value": "43"
}
], - "status": "current",
- "docStatus": "preliminary",
- "type": {
}, - "category": [
- {
- "coding": [
- {
- "code": "History and Physical",
- "display": "History and Physical"
}
]
}
], - "subject": {
- "reference": "Patient/500",
- "type": "Patient"
}, - "date": "2010-10-06T00:00:00+00:00",
- "author": [
- {
- "reference": "Practitioner/1"
}
], - "custodian": {
- "reference": "Organization/1"
}, - "content": [
- {
- "attachment": {
- "contentType": "text/plain"
}, - "format": {
- "system": "urn:oid:1.3.6.1.4.1.19376.1.2.3",
- "code": "urn:ihe:pcc:handp:2008"
}
}
], - "context": {
- "encounter": [
- {
- "reference": "Encounter/1",
- "type": "Encounter"
}
], - "period": {
- "start": "2004-12-23T08:00:00+10:00",
- "end": "2004-12-23T08:01:00+10:00"
}
}
},
}, - {
- "resource": {
- "resourceType": "DocumentReference",
- "id": "64",
- "text": {
- "status": "generated",
- "div": "<div xmlns=\"http://www.w3.org/1999/xhtml\">Success!</div>"
}, - "identifier": [
- {
- "use": "usual",
- "value": "64"
}
], - "status": "current",
- "docStatus": "preliminary",
- "type": {
}, - "category": [
- {
- "coding": [
- {
- "code": "History and Physical",
- "display": "History and Physical"
}
]
}
], - "subject": {
- "reference": "Patient/500",
- "type": "Patient"
}, - "date": "1971-12-06T00:00:00+00:00",
- "author": [
- {
- "reference": "Practitioner/1"
}
], - "custodian": {
- "reference": "Organization/1"
}, - "content": [
- {
- "attachment": {
- "contentType": "text/plain"
}, - "format": {
- "system": "urn:oid:1.3.6.1.4.1.19376.1.2.3",
- "code": "urn:ihe:pcc:handp:2008"
}
}
], - "context": {
- "encounter": [
- {
- "reference": "Encounter/1",
- "type": "Encounter"
}
], - "period": {
- "start": "2004-12-23T08:00:00+10:00",
- "end": "2004-12-23T08:01:00+10:00"
}
}
},
}, - {
- "resource": {
- "resourceType": "DocumentReference",
- "id": "85",
- "text": {
- "status": "generated",
- "div": "<div xmlns=\"http://www.w3.org/1999/xhtml\">Success!</div>"
}, - "identifier": [
- {
- "use": "usual",
- "value": "85"
}
], - "status": "current",
- "docStatus": "preliminary",
- "category": [
- {
- "coding": [
- {
- "code": "History and Physical",
- "display": "History and Physical"
}
]
}
], - "subject": {
- "reference": "Patient/500",
- "type": "Patient"
}, - "date": "2013-08-28T00:00:00+00:00",
- "author": [
- {
- "reference": "Practitioner/1"
}
], - "custodian": {
- "reference": "Organization/1"
}, - "content": [
- {
- "attachment": {
- "contentType": "text/plain"
}, - "format": {
- "system": "urn:oid:1.3.6.1.4.1.19376.1.2.3",
- "code": "urn:ihe:pcc:handp:2008"
}
}
], - "context": {
- "encounter": [
- {
- "reference": "Encounter/1",
- "type": "Encounter"
}
], - "period": {
- "start": "2004-12-23T08:00:00+10:00",
- "end": "2004-12-23T08:01:00+10:00"
}
}
},
}, - {
- "resource": {
- "resourceType": "DocumentReference",
- "id": "106",
- "text": {
- "status": "generated",
- "div": "<div xmlns=\"http://www.w3.org/1999/xhtml\">Success!</div>"
}, - "identifier": [
- {
- "use": "usual",
- "value": "106"
}
], - "status": "current",
- "docStatus": "preliminary",
- "category": [
- {
- "coding": [
- {
- "code": "History and Physical",
- "display": "History and Physical"
}
]
}
], - "subject": {
- "reference": "Patient/500",
- "type": "Patient"
}, - "date": "2005-02-27T00:00:00+00:00",
- "author": [
- {
- "reference": "Practitioner/1"
}
], - "custodian": {
- "reference": "Organization/1"
}, - "content": [
- {
- "attachment": {
- "contentType": "text/plain"
}, - "format": {
- "system": "urn:oid:1.3.6.1.4.1.19376.1.2.3",
- "code": "urn:ihe:pcc:handp:2008"
}
}
], - "context": {
- "encounter": [
- {
- "reference": "Encounter/1",
- "type": "Encounter"
}
], - "period": {
- "start": "2004-12-23T08:00:00+10:00",
- "end": "2004-12-23T08:01:00+10:00"
}
}
},
}
]
}Returns a single document resource - if found - based on the provided id
| id required | string WRS Health internal DocumentReference ID |
{- "resourceType": "DocumentReference",
- "id": "1",
- "text": {
- "status": "generated",
- "div": "<div xmlns=\"http://www.w3.org/1999/xhtml\">Success!</div>"
}, - "identifier": [
- {
- "use": "usual",
- "value": "1"
}
], - "status": "current",
- "docStatus": "preliminary",
- "type": {
}, - "category": [
- {
- "coding": [
- {
- "code": "History and Physical",
- "display": "History and Physical"
}
]
}
], - "subject": {
- "reference": "Patient/500",
- "type": "Patient"
}, - "date": "2006-01-06T00:00:00+00:00",
- "author": [
- {
- "reference": "Practitioner/1"
}
], - "custodian": {
- "reference": "Organization/1"
}, - "content": [
- {
- "format": {
- "system": "urn:oid:1.3.6.1.4.1.19376.1.2.3",
- "code": "urn:ihe:pcc:handp:2008"
}
}
], - "context": {
- "encounter": [
- {
- "reference": "Encounter/1",
- "type": "Encounter"
}
], - "period": {
- "start": "2004-12-23T08:00:00+10:00",
- "end": "2004-12-23T08:01:00+10:00"
}
}
}An interaction between a patient and healthcare provider(s) for the purpose of providing healthcare service(s) or assessing the health status of a patient - see: https://www.hl7.org/fhir/encounter.html
Profiles used: http://hl7.org/fhir/us/core/StructureDefinition/us-core-encounter
Obtains a list (FHIR Bundle) of all encounters from all patients available in the EHR. Data filtering can be achieved by providing query parameters
| _id | string WRS Health internal Encounter ID |
| patient | string WRS Health internal Patient ID |
| date | string A date within the period the Encounter lasted - see: https://www.hl7.org/fhir/search.html#date |
| _revinclude | string List of additional resources that refer to this resource - see: https://www.hl7.org/fhir/search.html#revinclude. Most frequently used: Provenance |
{- "resourceType": "Bundle",
- "id": "aa33bff7-78af-4763-bb40-b60f9f3be07a",
- "meta": {
- "lastUpdated": "2022-08-25T16:33:03.962Z"
}, - "type": "searchset",
- "total": 1,
- "entry": [
- {
- "resourceType": "Encounter",
- "id": "1",
- "text": {
- "status": "generated",
- "div": "<div xmlns=\"http://www.w3.org/1999/xhtml\">Success!</div>"
}, - "identifier": [
], - "status": "triaged",
- "class": {
- "code": "IMP",
- "display": "inpatient encounter"
}, - "type": [
], - "subject": {
- "reference": "Patient/500",
- "type": "Patient"
}, - "participant": [
- {
- "type": [
- {
}
], - "individual": {
- "reference": "Practitioner/1",
- "type": "Practitioner"
}, - "period": {
- "start": "2022-08-17T14:19:09+00:00",
- "end": "2022-08-18T14:19:09+00:00"
}
}
], - "period": {
- "start": "2013-03-11",
- "end": "2013-03-20"
}, - "reasonCode": [
- {
- "text": "The patient seems to suffer from bilateral pneumonia and renal insufficiency, most likely due to chemotherapy."
}
], - "hospitalization": {
- "dischargeDisposition": {
}
}, - "location": [
- {
- "location": {
- "reference": "Location/1",
- "type": "Location",
- "display": "Emergency Waiting Room"
}
}
]
}
]
}Returns a single encunter resource - if found - based on the provided id
| id required | string WRS Health internal Encounter ID |
{- "resourceType": "Encounter",
- "id": "1",
- "text": {
- "status": "generated",
- "div": "<div xmlns=\"http://www.w3.org/1999/xhtml\">Success!</div>"
}, - "identifier": [
], - "status": "triaged",
- "class": {
- "code": "IMP",
- "display": "inpatient encounter"
}, - "type": [
], - "subject": {
- "reference": "Patient/500",
- "type": "Patient"
}, - "participant": [
- {
- "type": [
- {
}
], - "individual": {
- "reference": "Practitioner/1",
- "type": "Practitioner"
}, - "period": {
- "start": "2022-08-17T14:19:09+00:00",
- "end": "2022-08-18T14:19:09+00:00"
}
}
], - "period": {
- "start": "2013-03-11",
- "end": "2013-03-20"
}, - "reasonCode": [
- {
- "text": "The patient seems to suffer from bilateral pneumonia and renal insufficiency, most likely due to chemotherapy."
}
], - "hospitalization": {
- "dischargeDisposition": {
}
}, - "location": [
- {
- "location": {
- "reference": "Location/1",
- "type": "Location",
- "display": "Emergency Waiting Room"
}
}
]
}Describes the intended objective(s) for a patient, group or organization care, for example, weight loss, restoring an activity of daily living, obtaining herd immunity via immunization, meeting a process improvement objective, etc - see: http://hl7.org/fhir/goal.html
Profiles used: http://hl7.org/fhir/us/core/StructureDefinition/us-core-goal
Obtains a list (FHIR Bundle) of all goals from all patients available in the EHR. Data filtering can be achieved by providing query parameters.
| _id | string WRS Health internal Goal ID |
| patient | string WRS Health internal Patient ID |
| _revinclude | string List of additional resources that refer to this resource - see: https://www.hl7.org/fhir/search.html#revinclude. Most frequently used: Provenance |
{- "resourceType": "Bundle",
- "id": "edd5a259-9cfe-4377-981b-1a9146b675ad",
- "meta": {
- "lastUpdated": "2022-08-25T16:32:29.732Z"
}, - "type": "searchset",
- "total": 1,
- "entry": [
- {
- "resource": {
- "resourceType": "Goal",
- "id": "1",
- "text": {
- "status": "generated",
- "div": "<div xmlns=\"http://www.w3.org/1999/xhtml\">Success!</div>"
}, - "lifecycleStatus": "cancelled",
- "description": {
- "text": "Eum fugiat architecto id voluptas. Sint a quia est nulla laudantium."
}, - "subject": {
- "reference": "Patient/500",
- "type": "Patient"
}, - "startDate": "2010-01-02",
- "target": [
- {
- "dueDate": "1985-04-22"
}
]
},
}
]
}Returns a single goal resource - if found - based on the provided id
| id required | string WRS Health internal Goal ID |
{- "resourceType": "Goal",
- "id": "1",
- "text": {
- "status": "generated",
- "div": "<div xmlns=\"http://www.w3.org/1999/xhtml\">Success!</div>"
}, - "lifecycleStatus": "cancelled",
- "description": {
- "text": "Eum fugiat architecto id voluptas. Sint a quia est nulla laudantium."
}, - "subject": {
- "reference": "Patient/500",
- "type": "Patient"
}, - "startDate": "2010-01-02",
- "target": [
- {
- "dueDate": "1985-04-22"
}
]
}Describes the event of a patient being administered a vaccine or a record of an immunization as reported by a patient, a clinician or another party - see: https://www.hl7.org/fhir/immunization.html
Profiles used: http://hl7.org/fhir/us/core/STU5/StructureDefinition-us-core-immunization.html
Obtains a list (FHIR Bundle) of all immunizations from all patients available in the EHR. Data filtering can be achieved by providing query parameters
| _id | string WRS Health internal Immunization ID |
| patient | string WRS Health internal Patient ID |
| _revinclude | string List of additional resources that refer to this resource - see: https://www.hl7.org/fhir/search.html#revinclude. Most frequently used: Provenance |
{- "resourceType": "Bundle",
- "id": "0e4b47cb-1d49-42e0-a553-55185d357a98",
- "meta": {
- "lastUpdated": "2022-08-25T16:32:30.968Z"
}, - "type": "searchset",
- "total": 1,
- "link": [
], - "entry": [
- {
- "resource": {
- "resourceType": "Immunization",
- "id": "1",
- "text": {
- "status": "generated",
- "div": "<div xmlns=\"http://www.w3.org/1999/xhtml\">Success!</div>"
}, - "status": "entered-in-error",
- "statusReason": {
- "coding": [
- {
- "code": "MEDPREC",
- "display": "medical precaution"
}
]
}, - "vaccineCode": {
- "coding": [
- {
- "system": "urn:oid:1.2.36.1.2001.1005.17",
- "code": "FLUVAX"
}
], - "text": "Fluvax (Influenza)"
}, - "patient": {
- "reference": "Patient/500",
- "type": "Patient"
}, - "occurrenceDateTime": "1985-10-11T12:51:58+00:00",
- "primarySource": true
},
}
]
}Returns a single immunization resource - if found - based on the provided id
| id required | string WRS Health internal Immunization ID |
{- "resourceType": "Immunization",
- "id": "1",
- "text": {
- "status": "generated",
- "div": "<div xmlns=\"http://www.w3.org/1999/xhtml\">Success!</div>"
}, - "status": "entered-in-error",
- "statusReason": {
- "coding": [
- {
- "code": "MEDPREC",
- "display": "medical precaution"
}
]
}, - "vaccineCode": {
- "coding": [
- {
- "system": "urn:oid:1.2.36.1.2001.1005.17",
- "code": "FLUVAX"
}
], - "text": "Fluvax (Influenza)"
}, - "patient": {
- "reference": "Patient/500",
- "type": "Patient"
}, - "occurrenceDateTime": "1985-10-11T12:51:58+00:00",
- "primarySource": true
}An order or request for both supply of the medication and the instructions for administration of the medication to a patient - see: https://www.hl7.org/fhir/medicationrequest.html
Profiles used: http://hl7.org/fhir/us/core/StructureDefinition/us-core-medicationrequest
Obtains a list (FHIR Bundle) of all medication requests from all patients available in the EHR. Data filtering can be achieved by providing query parameters
| _id | string WRS Health internal MedicationRequest ID |
| patient | string WRS Health internal Patient ID |
| intent | string Intent identifier. Must be a valid code from http://hl7.org/fhir/R4/codesystem-medicationrequest-intent.html. Accepted values: proposal, plan, order, original-order, reflex-order, filler-order, instance-order, option |
| status | string A code specifying the current state of the order. Generally, this will be active or completed state. Must be a valid code from http://hl7.org/fhir/R4/codesystem-medicationrequest-status.html. Accepted values: active, on-hold, cancelled, completed, entered-in-error, stopped, draft, unknown |
| _revinclude | string List of additional resources that refer to this resource - see: https://www.hl7.org/fhir/search.html#revinclude. Most frequently used: Provenance |
| _include | string List of additional resources that this resource refers to - see: https://www.hl7.org/fhir/search.html#include. Most frequently used: Medication |
{- "resourceType": "Bundle",
- "id": "ebc48ea8-d101-48ac-988f-b7cde18889d0",
- "meta": {
- "lastUpdated": "2022-08-25T16:32:31.987Z"
}, - "type": "searchset",
- "total": 1,
- "link": [
- {
- "relation": "self",
}
], - "entry": [
- {
- "resource": {
- "resourceType": "MedicationRequest",
- "id": "1",
- "text": {
- "status": "generated",
- "div": "<div xmlns=\"http://www.w3.org/1999/xhtml\">Success!</div>"
}, - "status": "cancelled",
- "intent": "proposal",
- "reportedBoolean": true,
- "medicationReference": {
- "reference": "Medication/1",
- "type": "Medication"
}, - "subject": {
- "reference": "Patient/500",
- "type": "Patient"
}, - "encounter": {
- "reference": "Encounter/1",
- "type": "Encounter"
}, - "authoredOn": "1975-12-01T04:24:05+00:00",
- "requester": {
- "reference": "Practitioner/1",
- "type": "Practitioner"
}, - "dosageInstruction": [
- {
- "text": "Take 4 tablets daily for 7 days starting January 16, 2015"
}
]
},
}
]
}Returns a single medication request resource - if found - based on the provided id
| id required | string WRS Health internal medication request ID |
{- "resourceType": "MedicationRequest",
- "id": "1",
- "text": {
- "status": "generated",
- "div": "<div xmlns=\"http://www.w3.org/1999/xhtml\">Success!</div>"
}, - "status": "cancelled",
- "intent": "proposal",
- "reportedBoolean": true,
- "medicationReference": {
- "reference": "Medication/1",
- "type": "Medication"
}, - "subject": {
- "reference": "Patient/500",
- "type": "Patient"
}, - "encounter": {
- "reference": "Encounter/1",
- "type": "Encounter"
}, - "authoredOn": "1975-12-01T04:24:05+00:00",
- "requester": {
- "reference": "Practitioner/1",
- "type": "Practitioner"
}, - "dosageInstruction": [
- {
- "text": "Take 4 tablets daily for 7 days starting January 16, 2015"
}
]
}Measurements and simple assertions made about a patient, device or other subject - see: https://www.hl7.org/fhir/observation.html
Profiles used:
Obtains a list (FHIR Bundle) of all observation from all patients available in the EHR. Data filtering can be achieved by providing query parameters
| _id | string WRS Health internal Observation ID |
| patient | string WRS Health internal Patient ID |
| code | string Code identifier (type of observation) in LOINC code |
| category | string Category code. Must be a valid code from http://hl7.org/fhir/R4B/codesystem-observation-category.html. Accepted values: social-history, vital-signs, imaging, laboratory, procedure, survey, exam, therapy, activity |
| date | string Clinically relevant time/time-period for observation - see: https://www.hl7.org/fhir/search.html#date |
| _revinclude | string List of additional resources that refer to this resource - see: https://www.hl7.org/fhir/search.html#revinclude. Most frequently used: Provenance |
{- "resourceType": "Bundle",
- "id": "8578ecf8-8a29-4c8d-9bb6-35124caa104a",
- "meta": {
- "lastUpdated": "2022-08-25T16:32:36.866Z"
}, - "type": "searchset",
- "total": 3,
- "link": [
- {
- "relation": "self",
}
], - "entry": [
- {
- "resource": {
- "resourceType": "Observation",
- "id": "1",
- "text": {
- "status": "generated",
- "div": "<div xmlns=\"http://www.w3.org/1999/xhtml\">Success!</div>"
}, - "status": "final",
- "code": {
}, - "subject": {
- "reference": "Patient/500",
- "type": "Patient"
}, - "effectiveDateTime": "2004-09-04T00:00:00+00:00",
- "issued": "1985-10-12T09:08:13+00:00",
- "valueCodeableConcept": {
- "text": "Current some day smoker"
}
},
}, - {
- "resource": {
- "resourceType": "Observation",
- "id": "253",
- "text": {
- "status": "generated",
- "div": "<div xmlns=\"http://www.w3.org/1999/xhtml\">Success!</div>"
}, - "status": "final",
- "code": {
}, - "subject": {
- "reference": "Patient/500",
- "type": "Patient"
}, - "effectiveDateTime": "1982-02-24T00:00:00+00:00",
- "issued": "1986-05-09T14:15:13+00:00",
- "valueCodeableConcept": {
- "extension": [
]
}
},
}, - {
- "resource": {
- "resourceType": "Observation",
- "id": "254",
- "text": {
- "status": "generated",
- "div": "<div xmlns=\"http://www.w3.org/1999/xhtml\">Success!</div>"
}, - "status": "final",
- "code": {
}, - "subject": {
- "reference": "Patient/500",
- "type": "Patient"
}, - "effectiveDateTime": "2007-08-11T00:00:00+00:00",
- "issued": "1987-03-06T07:12:53+00:00",
- "valueCodeableConcept": {
- "coding": [
- {
- "code": "unknown",
- "display": "Unknown"
}
]
}
},
}
]
}Returns a single observation resource - if found - based on the provided id
| id required | string WRS Health internal Observation ID |
{- "resourceType": "Observation",
- "id": "1",
- "text": {
- "status": "generated",
- "div": "<div xmlns=\"http://www.w3.org/1999/xhtml\">Success!</div>"
}, - "status": "final",
- "code": {
}, - "subject": {
- "reference": "Patient/500",
- "type": "Patient"
}, - "effectiveDateTime": "2004-09-04T00:00:00+00:00",
- "issued": "1985-10-12T09:08:13+00:00",
- "valueCodeableConcept": {
- "text": "Current some day smoker"
}
}A formally or informally recognized grouping of people or organizations formed for the purpose of achieving some form of collective action. Includes companies, institutions, corporations, departments, community groups, healthcare practice groups, payer/insurer, etc - see: https://www.hl7.org/fhir/organization.html
Profiles used: http://hl7.org/fhir/us/core/StructureDefinition/us-core-organization
Obtains a list (FHIR Bundle) of all organization available in the EHR. Data filtering can be achieved by providing query parameters
| _id | string WRS Health internal Organization ID |
| name | string Organization identifier - see: https://www.hl7.org/fhir/datatypes.html#Identifier |
| address | string A server defined search that may match any of the string fields in the Address, including line, city, district, state, country, postalCode, and/or text - see: https://www.hl7.org/fhir/datatypes.html#Address |
| _revinclude | string List of additional resources that refer to this resource - see: https://www.hl7.org/fhir/search.html#revinclude. Most frequently used: Provenance |
{- "resourceType": "Bundle",
- "id": "aa33bff7-78af-4763-bb40-b60f9f3be07a",
- "meta": {
- "lastUpdated": "2022-08-25T16:33:03.962Z"
}, - "type": "searchset",
- "total": 1,
- "entry": [
- {
- "resourceType": "Organization",
- "id": "1",
- "text": {
- "status": "generated",
- "div": "<div xmlns=\"http://www.w3.org/1999/xhtml\">Success!</div>"
}, - "identifier": [
- {
- "system": "urn:uuid:53fefa32-fcbb-4ff8-8a92-55ee120877b7",
- "value": "1"
},
], - "active": true,
- "name": "Ankunding, Konopelski and Glover",
- "telecom": [
- {
- "system": "phone",
- "value": "606.647.3727"
}, - {
- "system": "phone",
- "value": "(321) 681-1688"
}
], - "address": [
- {
- "type": "physical",
- "text": "4323 Hackett Field, Emardmouth, Alaska 09087",
- "line": [
- "4323 Hackett Field"
], - "city": "Emardmouth",
- "state": "Alaska",
- "postalCode": "09087",
- "period": {
- "start": "2004-04-20"
}, - "country": "Romania"
}
]
}
]
}Returns a single organization resource - if found - based on the provided id
| id required | string WRS Health internal Organization ID |
{- "resourceType": "Organization",
- "id": "1",
- "text": {
- "status": "generated",
- "div": "<div xmlns=\"http://www.w3.org/1999/xhtml\">Success!</div>"
}, - "identifier": [
- {
- "system": "urn:uuid:53fefa32-fcbb-4ff8-8a92-55ee120877b7",
- "value": "1"
},
], - "active": true,
- "name": "Ankunding, Konopelski and Glover",
- "telecom": [
- {
- "system": "phone",
- "value": "606.647.3727"
}, - {
- "system": "phone",
- "value": "(321) 681-1688"
}
], - "address": [
- {
- "type": "physical",
- "text": "4323 Hackett Field, Emardmouth, Alaska 09087",
- "line": [
- "4323 Hackett Field"
], - "city": "Emardmouth",
- "state": "Alaska",
- "postalCode": "09087",
- "period": {
- "start": "2004-04-20"
}, - "country": "Romania"
}
]
}Practitioner covers all individuals who are engaged in the healthcare process and healthcare-related services as part of their formal responsibilities - see: https://www.hl7.org/fhir/practitioner.html
Profiles used: http://hl7.org/fhir/us/core/StructureDefinition/us-core-practitioner
Obtains a list (FHIR Bundle) of all practitioner in the EHR. Data filtering can be achieved by providing query parameters
| _id | string WRS Health internal Practitioner ID |
| name | string A server defined search that may match any of the string fields in the HumanName, including family, give, prefix, suffix, suffix, and/or text - see: https://www.hl7.org/fhir/datatypes.html#HumanName |
| identifier | string Practitioner identifier - see: https://www.hl7.org/fhir/datatypes.html#Identifier |
| _revinclude | string List of additional resources that refer to this resource - see: https://www.hl7.org/fhir/search.html#revinclude. Most frequently used: Provenance |
{- "resourceType": "Bundle",
- "id": "aa33bff7-78af-4763-bb40-b60f9f3be07a",
- "meta": {
- "lastUpdated": "2022-08-25T16:33:03.962Z"
}, - "type": "searchset",
- "total": 1,
- "entry": [
- {
- "resourceType": "Practitioner",
- "id": "1",
- "text": {
- "status": "generated",
- "div": "<div xmlns=\"http://www.w3.org/1999/xhtml\">Success!</div>"
}, - "identifier": [
], - "name": [
- {
- "use": "usual",
- "text": "Jolie Lockman",
- "family": "Lockman",
- "given": [
- "Jolie"
]
}
], - "telecom": [
- {
- "system": "phone",
- "value": "+1 (605) 331-8691",
- "use": "home"
}, - {
- "system": "phone",
- "value": "+1-541-257-8714",
- "use": "work"
}
], - "address": [
- {
- "use": "home",
- "type": "physical",
- "text": "94762 Eichmann Isle, Kihnfort, South Carolina 36284-2632",
- "line": [
- "94762 Eichmann Isle"
], - "city": "Kihnfort",
- "state": "South Carolina",
- "postalCode": "36284-2632",
- "period": {
- "start": "1980-11-26"
}
}
], - "gender": "female",
- "birthDate": "1972-08-12",
- "communication": [
- {
- "coding": [
- {
- "system": "urn:ietf:bcp:47",
- "code": "en-US",
- "display": "English (United States)"
}
]
}
]
}
]
}Returns a single practitioner resource - if found - based on the provided id
| id required | string WRS Health internal Practitioner ID |
{- "resourceType": "Practitioner",
- "id": "1",
- "text": {
- "status": "generated",
- "div": "<div xmlns=\"http://www.w3.org/1999/xhtml\">Success!</div>"
}, - "identifier": [
], - "name": [
- {
- "use": "usual",
- "text": "Jolie Lockman",
- "family": "Lockman",
- "given": [
- "Jolie"
]
}
], - "telecom": [
- {
- "system": "phone",
- "value": "+1 (605) 331-8691",
- "use": "home"
}, - {
- "system": "phone",
- "value": "+1-541-257-8714",
- "use": "work"
}
], - "address": [
- {
- "use": "home",
- "type": "physical",
- "text": "94762 Eichmann Isle, Kihnfort, South Carolina 36284-2632",
- "line": [
- "94762 Eichmann Isle"
], - "city": "Kihnfort",
- "state": "South Carolina",
- "postalCode": "36284-2632",
- "period": {
- "start": "1980-11-26"
}
}
], - "gender": "female",
- "birthDate": "1972-08-12",
- "communication": [
- {
- "coding": [
- {
- "system": "urn:ietf:bcp:47",
- "code": "en-US",
- "display": "English (United States)"
}
]
}
]
}An action that is or was performed on or for a patient. This can be a physical intervention like an operation, or less invasive like long term services, counseling, or hypnotherapy - see: https://www.hl7.org/fhir/procedure.html
Profiles used: http://hl7.org/fhir/us/core/StructureDefinition/us-core-procedure
Obtains a list (FHIR Bundle) of all procedure from all patients available in the EHR. Data filtering can be achieved by providing query parameters
| _id | string WRS Health internal Procedure ID |
| patient | string WRS Health internal Patient ID |
| date | string When the procedure was performed - see: https://www.hl7.org/fhir/search.html#date |
| _revinclude | string List of additional resources that refer to this resource - see: https://www.hl7.org/fhir/search.html#revinclude. Most frequently used: Provenance |
{- "resourceType": "Bundle",
- "id": "aa33bff7-78af-4763-bb40-b60f9f3be07a",
- "meta": {
- "lastUpdated": "2022-08-25T16:33:03.962Z"
}, - "type": "searchset",
- "total": 1,
- "link": [
], - "entry": [
- {
- "resource": {
- "resourceType": "Procedure",
- "id": "1",
- "text": {
- "status": "generated",
- "div": "<div xmlns=\"http://www.w3.org/1999/xhtml\">Success!</div>"
}, - "status": "unknown",
- "code": {
- "coding": [
- {
- "code": "HZ30ZZZ",
- "display": "Individual Counseling for Substance Abuse Treatment, Cognitive"
}
], - "text": "Alcohol rehabilitation"
}, - "subject": {
- "reference": "Patient/500",
- "type": "Patient"
}, - "performedDateTime": "2014-12-20T00:00:00+00:00"
},
}
]
}Returns a single procedure resource - if found - based on the provided id
| id required | string WRS Health internal Procedure ID |
{- "resourceType": "Procedure",
- "id": "1",
- "text": {
- "status": "generated",
- "div": "<div xmlns=\"http://www.w3.org/1999/xhtml\">Success!</div>"
}, - "status": "unknown",
- "code": {
- "coding": [
- {
- "code": "HZ30ZZZ",
- "display": "Individual Counseling for Substance Abuse Treatment, Cognitive"
}
], - "text": "Alcohol rehabilitation"
}, - "subject": {
- "reference": "Patient/500",
- "type": "Patient"
}, - "performedDateTime": "2014-12-20T00:00:00+00:00"
}Provenance of a resource is a record that describes entities and processes involved in producing and delivering or otherwise influencing that resource. Provenance provides a critical foundation for assessing authenticity, enabling trust, and allowing reproducibility. Provenance assertions are a form of contextual metadata and can themselves become important records with their own provenance. Provenance statement indicates clinical significance in terms of confidence in authenticity, reliability, and trustworthiness, integrity, and stage in lifecycle (e.g. Document Completion - has the artifact been legally authenticated), all of which may impact security, privacy, and trust policies - see: https://www.hl7.org/fhir/provenance.html
Profiles used: http://hl7.org/fhir/us/core/StructureDefinition/us-core-provenance
Obtains a list (FHIR Bundle) of all provenance in the EHR. Data filtering can be achieved by providing query parameters
| _id | string WRS Health internal Provenance ID |
{- "resourceType": "Bundle",
- "id": "aa33bff7-78af-4763-bb40-b60f9f3be07a",
- "meta": {
- "lastUpdated": "2022-08-25T16:33:03.962Z"
}, - "type": "searchset",
- "total": 1,
- "entry": [
- {
- "resourceType": "Provenance",
- "id": "3",
- "target": [
- {
- "reference": "CarePlan/1",
- "type": "CarePlan"
}
], - "recorded": "1991-06-20T06:41:10+00:00",
- "agent": [
- {
- "onBehalfOf": {
- "reference": "Organization/1",
- "type": "Organization"
}, - "type": {
}, - "who": {
- "reference": "Practitioner/1",
- "type": "Practitioner"
}
}, - {
- "type": {
- "coding": [
- {
- "code": "transmitter",
- "display": "Transmitter"
}
]
}, - "who": {
- "reference": "Organization/1"
}
}, - {
- "type": {
- "coding": [
- {
- "code": "author",
- "display": "Author"
}
]
}, - "who": {
- "reference": "Organization/1"
}
}
]
}
]
}Returns a single provenance resource - if found - based on the provided id
| id required | string WRS Health internal Provenance ID |
{- "resourceType": "Provenance",
- "id": "3",
- "target": [
- {
- "reference": "CarePlan/1",
- "type": "CarePlan"
}
], - "recorded": "1991-06-20T06:41:10+00:00",
- "agent": [
- {
- "onBehalfOf": {
- "reference": "Organization/1",
- "type": "Organization"
}, - "type": {
}, - "who": {
- "reference": "Practitioner/1",
- "type": "Practitioner"
}
}, - {
- "type": {
- "coding": [
- {
- "code": "transmitter",
- "display": "Transmitter"
}
]
}, - "who": {
- "reference": "Organization/1"
}
}, - {
- "type": {
- "coding": [
- {
- "code": "author",
- "display": "Author"
}
]
}, - "who": {
- "reference": "Organization/1"
}
}
]
}Questionnaire is an organized collection of questions intended to solicit information from patients, providers or other individuals involved in the healthcare domain - see: https://www.hl7.org/fhir/questionnaire.html
Obtains a list (FHIR Bundle) of all questionnaires available in the EHR. Data filtering can be achieved by providing query parameters
| patient | string WRS Health internal Patient ID |
| _revinclude | string List of additional resources that refer to this resource - see: https://www.hl7.org/fhir/search.html#revinclude. Most frequently used: Provenance |
{- "resourceType": "Bundle",
- "type": "searchset",
- "id": "a63e9ced-f570-47af-b3f2-554f5667330b",
- "entry": [
- {
- "resource": {
- "code": [
- {
- "code": "44249-1",
- "display": "PHQ-9 quick depression assessment panel [Reported.PHQ]",
}
], - "copyright": "Copyright © Pfizer Inc. All rights reserved. Developed by Drs. Robert L. Spitzer, Janet B.W. Williams, Kurt Kroenke and colleagues, with an educational grant from Pfizer Inc. No permission required to reproduce, translate, display or distribute.",
- "item": [
- {
- "answerOption": [
- {
- "extension": [
],
}, - {
- "extension": [
],
}, - {
- "extension": [
], - "valueCoding": {
- "code": "LA6570-1",
- "display": "More than half the days",
}
}, - {
- "extension": [
],
}
], - "code": [
- {
- "code": "44250-9",
- "display": "Little interest or pleasure in doing things",
}
], - "extension": [
- {
- "valueCodeableConcept": {
- "coding": [
- {
- "code": "drop-down",
- "display": "Drop down",
}
], - "text": "Drop down"
}
}
], - "linkId": "/44250-9",
- "required": true,
- "text": "Little interest or pleasure in doing things",
- "type": "choice"
}, - {
- "answerOption": [
- {
- "extension": [
],
}, - {
- "extension": [
],
}, - {
- "extension": [
], - "valueCoding": {
- "code": "LA6570-1",
- "display": "More than half the days",
}
}, - {
- "extension": [
],
}
], - "code": [
], - "extension": [
- {
- "valueCodeableConcept": {
- "coding": [
- {
- "code": "drop-down",
- "display": "Drop down",
}
], - "text": "Drop down"
}
}
], - "linkId": "/44255-8",
- "required": true,
- "text": "Feeling down, depressed, or hopeless",
- "type": "choice"
}, - {
- "answerOption": [
- {
- "extension": [
],
}, - {
- "extension": [
],
}, - {
- "extension": [
], - "valueCoding": {
- "code": "LA6570-1",
- "display": "More than half the days",
}
}, - {
- "extension": [
],
}
], - "code": [
- {
- "code": "44259-0",
- "display": "Trouble falling or staying asleep, or sleeping too much",
}
], - "extension": [
- {
- "valueCodeableConcept": {
- "coding": [
- {
- "code": "drop-down",
- "display": "Drop down",
}
], - "text": "Drop down"
}
}
], - "linkId": "/44259-0",
- "required": true,
- "text": "Trouble falling or staying asleep, or sleeping too much",
- "type": "choice"
}, - {
- "answerOption": [
- {
- "extension": [
],
}, - {
- "extension": [
],
}, - {
- "extension": [
], - "valueCoding": {
- "code": "LA6570-1",
- "display": "More than half the days",
}
}, - {
- "extension": [
],
}
], - "code": [
], - "extension": [
- {
- "valueCodeableConcept": {
- "coding": [
- {
- "code": "drop-down",
- "display": "Drop down",
}
], - "text": "Drop down"
}
}
], - "linkId": "/44254-1",
- "required": true,
- "text": "Feeling tired or having little energy",
- "type": "choice"
}, - {
- "answerOption": [
- {
- "extension": [
],
}, - {
- "extension": [
],
}, - {
- "extension": [
], - "valueCoding": {
- "code": "LA6570-1",
- "display": "More than half the days",
}
}, - {
- "extension": [
],
}
], - "code": [
], - "extension": [
- {
- "valueCodeableConcept": {
- "coding": [
- {
- "code": "drop-down",
- "display": "Drop down",
}
], - "text": "Drop down"
}
}
], - "linkId": "/44251-7",
- "required": true,
- "text": "Poor appetite or overeating",
- "type": "choice"
}, - {
- "answerOption": [
- {
- "extension": [
],
}, - {
- "extension": [
],
}, - {
- "extension": [
], - "valueCoding": {
- "code": "LA6570-1",
- "display": "More than half the days",
}
}, - {
- "extension": [
],
}
], - "code": [
- {
- "code": "44258-2",
- "display": "Feeling bad about yourself-or that you are a failure or have let yourself or your family down",
}
], - "extension": [
- {
- "valueCodeableConcept": {
- "coding": [
- {
- "code": "drop-down",
- "display": "Drop down",
}
], - "text": "Drop down"
}
}
], - "linkId": "/44258-2",
- "required": true,
- "text": "Feeling bad about yourself-or that you are a failure or have let yourself or your family down",
- "type": "choice"
}, - {
- "answerOption": [
- {
- "extension": [
],
}, - {
- "extension": [
],
}, - {
- "extension": [
], - "valueCoding": {
- "code": "LA6570-1",
- "display": "More than half the days",
}
}, - {
- "extension": [
],
}
], - "code": [
- {
- "code": "44252-5",
- "display": "Trouble concentrating on things, such as reading the newspaper or watching television",
}
], - "extension": [
- {
- "valueCodeableConcept": {
- "coding": [
- {
- "code": "drop-down",
- "display": "Drop down",
}
], - "text": "Drop down"
}
}
], - "linkId": "/44252-5",
- "required": true,
- "text": "Trouble concentrating on things, such as reading the newspaper or watching television",
- "type": "choice"
}, - {
- "answerOption": [
- {
- "extension": [
],
}, - {
- "extension": [
],
}, - {
- "extension": [
], - "valueCoding": {
- "code": "LA6570-1",
- "display": "More than half the days",
}
}, - {
- "extension": [
],
}
], - "code": [
- {
- "code": "44253-3",
- "display": "Moving or speaking so slowly that other people could have noticed. Or the opposite-being so fidgety or restless that you have been moving around a lot more than usual",
}
], - "extension": [
- {
- "valueCodeableConcept": {
- "coding": [
- {
- "code": "drop-down",
- "display": "Drop down",
}
], - "text": "Drop down"
}
}
], - "linkId": "/44253-3",
- "required": true,
- "text": "Moving or speaking so slowly that other people could have noticed. Or the opposite-being so fidgety or restless that you have been moving around a lot more than usual",
- "type": "choice"
}, - {
- "answerOption": [
- {
- "extension": [
],
}, - {
- "extension": [
],
}, - {
- "extension": [
], - "valueCoding": {
- "code": "LA6570-1",
- "display": "More than half the days",
}
}, - {
- "extension": [
],
}
], - "code": [
- {
- "code": "44260-8",
- "display": "Thoughts that you would be better off dead, or of hurting yourself in some way",
}
], - "extension": [
- {
- "valueCodeableConcept": {
- "coding": [
- {
- "code": "drop-down",
- "display": "Drop down",
}
], - "text": "Drop down"
}
}
], - "linkId": "/44260-8",
- "required": true,
- "text": "Thoughts that you would be better off dead, or of hurting yourself in some way",
- "type": "choice"
}, - {
- "answerOption": [
- {
},
], - "code": [
- {
- "code": "69722-7",
- "display": "How difficult have these problems made it for you to do your work, take care of things at home, or get along with other people?",
}
], - "extension": [
- {
- "valueCodeableConcept": {
- "coding": [
- {
- "code": "drop-down",
- "display": "Drop down",
}
], - "text": "Drop down"
}
}
], - "item": [
- {
- "extension": [
- {
- "valueCodeableConcept": {
- "coding": [
- {
- "code": "help",
- "display": "Help-Button",
}
], - "text": "Help-Button"
}
}
], - "linkId": "/69722-7-help",
- "text": "If you checked off any problems on this questionnaire",
- "type": "display"
}
], - "linkId": "/69722-7",
- "required": true,
- "text": "How difficult have these problems made it for you to do your work, take care of things at home, or get along with other people?",
- "type": "choice"
}, - {
- "code": [
- {
- "code": "Modified_44261-6",
- "display": "Patient health questionnaire 9 item total score",
}, - {
- "code": "44261-6",
- "display": "Patient health questionnaire 9 item total score",
}
], - "extension": [
- {
- "valueCoding": {
- "display": "{score}"
}
}
], - "item": [
- {
- "extension": [
- {
- "valueCodeableConcept": {
- "coding": [
- {
- "code": "help",
- "display": "Help-Button",
}
], - "text": "Help-Button"
}
}
], - "linkId": "/44261-6-help",
- "text": "The PHQ-9 is the standard (and most commonly used) depression measure, and it ranges from 0-27 Scoring: Add up all checked boxes on PHQ-9. For every check: Not at all = 0; Several days = 1; More than half the days = 2; Nearly every day = 3 (the scores are the codes that appear in the answer list for each of the PHQ-9 problem panel terms). Interpretation: 1-4 = Minimal depression; 5-9 = Mild depression; 10-14 = Moderate depression; 15-19 = Moderately severe depression; 20-27 = Severed depression.",
- "type": "display"
}
], - "linkId": "/44261-6",
- "required": false,
- "text": "Patient health questionnaire 9 item total score",
- "type": "decimal"
}
], - "meta": {
- "tag": [
- {
- "code": "lformsVersion: 29.2.1"
}
]
}, - "resourceType": "Questionnaire",
- "status": "active",
- "title": "Patient Health Questionnaire (PHQ-9)"
}
}
]
}Returns a single questionnaire resource - if found - based on the provided id
| id required | string WRS Health internal Questionnaire ID |
{- "code": [
- {
- "code": "44249-1",
- "display": "PHQ-9 quick depression assessment panel [Reported.PHQ]",
}
], - "copyright": "Copyright © Pfizer Inc. All rights reserved. Developed by Drs. Robert L. Spitzer, Janet B.W. Williams, Kurt Kroenke and colleagues, with an educational grant from Pfizer Inc. No permission required to reproduce, translate, display or distribute.",
- "item": [
- {
- "answerOption": [
- {
- "extension": [
],
}, - {
- "extension": [
],
}, - {
- "extension": [
], - "valueCoding": {
- "code": "LA6570-1",
- "display": "More than half the days",
}
}, - {
- "extension": [
],
}
], - "code": [
- {
- "code": "44250-9",
- "display": "Little interest or pleasure in doing things",
}
], - "extension": [
- {
- "valueCodeableConcept": {
- "coding": [
- {
- "code": "drop-down",
- "display": "Drop down",
}
], - "text": "Drop down"
}
}
], - "linkId": "/44250-9",
- "required": true,
- "text": "Little interest or pleasure in doing things",
- "type": "choice"
}, - {
- "answerOption": [
- {
- "extension": [
],
}, - {
- "extension": [
],
}, - {
- "extension": [
], - "valueCoding": {
- "code": "LA6570-1",
- "display": "More than half the days",
}
}, - {
- "extension": [
],
}
], - "code": [
], - "extension": [
- {
- "valueCodeableConcept": {
- "coding": [
- {
- "code": "drop-down",
- "display": "Drop down",
}
], - "text": "Drop down"
}
}
], - "linkId": "/44255-8",
- "required": true,
- "text": "Feeling down, depressed, or hopeless",
- "type": "choice"
}, - {
- "answerOption": [
- {
- "extension": [
],
}, - {
- "extension": [
],
}, - {
- "extension": [
], - "valueCoding": {
- "code": "LA6570-1",
- "display": "More than half the days",
}
}, - {
- "extension": [
],
}
], - "code": [
- {
- "code": "44259-0",
- "display": "Trouble falling or staying asleep, or sleeping too much",
}
], - "extension": [
- {
- "valueCodeableConcept": {
- "coding": [
- {
- "code": "drop-down",
- "display": "Drop down",
}
], - "text": "Drop down"
}
}
], - "linkId": "/44259-0",
- "required": true,
- "text": "Trouble falling or staying asleep, or sleeping too much",
- "type": "choice"
}, - {
- "answerOption": [
- {
- "extension": [
],
}, - {
- "extension": [
],
}, - {
- "extension": [
], - "valueCoding": {
- "code": "LA6570-1",
- "display": "More than half the days",
}
}, - {
- "extension": [
],
}
], - "code": [
], - "extension": [
- {
- "valueCodeableConcept": {
- "coding": [
- {
- "code": "drop-down",
- "display": "Drop down",
}
], - "text": "Drop down"
}
}
], - "linkId": "/44254-1",
- "required": true,
- "text": "Feeling tired or having little energy",
- "type": "choice"
}, - {
- "answerOption": [
- {
- "extension": [
],
}, - {
- "extension": [
],
}, - {
- "extension": [
], - "valueCoding": {
- "code": "LA6570-1",
- "display": "More than half the days",
}
}, - {
- "extension": [
],
}
], - "code": [
], - "extension": [
- {
- "valueCodeableConcept": {
- "coding": [
- {
- "code": "drop-down",
- "display": "Drop down",
}
], - "text": "Drop down"
}
}
], - "linkId": "/44251-7",
- "required": true,
- "text": "Poor appetite or overeating",
- "type": "choice"
}, - {
- "answerOption": [
- {
- "extension": [
],
}, - {
- "extension": [
],
}, - {
- "extension": [
], - "valueCoding": {
- "code": "LA6570-1",
- "display": "More than half the days",
}
}, - {
- "extension": [
],
}
], - "code": [
- {
- "code": "44258-2",
- "display": "Feeling bad about yourself-or that you are a failure or have let yourself or your family down",
}
], - "extension": [
- {
- "valueCodeableConcept": {
- "coding": [
- {
- "code": "drop-down",
- "display": "Drop down",
}
], - "text": "Drop down"
}
}
], - "linkId": "/44258-2",
- "required": true,
- "text": "Feeling bad about yourself-or that you are a failure or have let yourself or your family down",
- "type": "choice"
}, - {
- "answerOption": [
- {
- "extension": [
],
}, - {
- "extension": [
],
}, - {
- "extension": [
], - "valueCoding": {
- "code": "LA6570-1",
- "display": "More than half the days",
}
}, - {
- "extension": [
],
}
], - "code": [
- {
- "code": "44252-5",
- "display": "Trouble concentrating on things, such as reading the newspaper or watching television",
}
], - "extension": [
- {
- "valueCodeableConcept": {
- "coding": [
- {
- "code": "drop-down",
- "display": "Drop down",
}
], - "text": "Drop down"
}
}
], - "linkId": "/44252-5",
- "required": true,
- "text": "Trouble concentrating on things, such as reading the newspaper or watching television",
- "type": "choice"
}, - {
- "answerOption": [
- {
- "extension": [
],
}, - {
- "extension": [
],
}, - {
- "extension": [
], - "valueCoding": {
- "code": "LA6570-1",
- "display": "More than half the days",
}
}, - {
- "extension": [
],
}
], - "code": [
- {
- "code": "44253-3",
- "display": "Moving or speaking so slowly that other people could have noticed. Or the opposite-being so fidgety or restless that you have been moving around a lot more than usual",
}
], - "extension": [
- {
- "valueCodeableConcept": {
- "coding": [
- {
- "code": "drop-down",
- "display": "Drop down",
}
], - "text": "Drop down"
}
}
], - "linkId": "/44253-3",
- "required": true,
- "text": "Moving or speaking so slowly that other people could have noticed. Or the opposite-being so fidgety or restless that you have been moving around a lot more than usual",
- "type": "choice"
}, - {
- "answerOption": [
- {
- "extension": [
],
}, - {
- "extension": [
],
}, - {
- "extension": [
], - "valueCoding": {
- "code": "LA6570-1",
- "display": "More than half the days",
}
}, - {
- "extension": [
],
}
], - "code": [
- {
- "code": "44260-8",
- "display": "Thoughts that you would be better off dead, or of hurting yourself in some way",
}
], - "extension": [
- {
- "valueCodeableConcept": {
- "coding": [
- {
- "code": "drop-down",
- "display": "Drop down",
}
], - "text": "Drop down"
}
}
], - "linkId": "/44260-8",
- "required": true,
- "text": "Thoughts that you would be better off dead, or of hurting yourself in some way",
- "type": "choice"
}, - {
- "answerOption": [
- {
},
], - "code": [
- {
- "code": "69722-7",
- "display": "How difficult have these problems made it for you to do your work, take care of things at home, or get along with other people?",
}
], - "extension": [
- {
- "valueCodeableConcept": {
- "coding": [
- {
- "code": "drop-down",
- "display": "Drop down",
}
], - "text": "Drop down"
}
}
], - "item": [
- {
- "extension": [
- {
- "valueCodeableConcept": {
- "coding": [
- {
- "code": "help",
- "display": "Help-Button",
}
], - "text": "Help-Button"
}
}
], - "linkId": "/69722-7-help",
- "text": "If you checked off any problems on this questionnaire",
- "type": "display"
}
], - "linkId": "/69722-7",
- "required": true,
- "text": "How difficult have these problems made it for you to do your work, take care of things at home, or get along with other people?",
- "type": "choice"
}, - {
- "code": [
- {
- "code": "Modified_44261-6",
- "display": "Patient health questionnaire 9 item total score",
}, - {
- "code": "44261-6",
- "display": "Patient health questionnaire 9 item total score",
}
], - "extension": [
- {
- "valueCoding": {
- "display": "{score}"
}
}
], - "item": [
- {
- "extension": [
- {
- "valueCodeableConcept": {
- "coding": [
- {
- "code": "help",
- "display": "Help-Button",
}
], - "text": "Help-Button"
}
}
], - "linkId": "/44261-6-help",
- "text": "The PHQ-9 is the standard (and most commonly used) depression measure, and it ranges from 0-27 Scoring: Add up all checked boxes on PHQ-9. For every check: Not at all = 0; Several days = 1; More than half the days = 2; Nearly every day = 3 (the scores are the codes that appear in the answer list for each of the PHQ-9 problem panel terms). Interpretation: 1-4 = Minimal depression; 5-9 = Mild depression; 10-14 = Moderate depression; 15-19 = Moderately severe depression; 20-27 = Severed depression.",
- "type": "display"
}
], - "linkId": "/44261-6",
- "required": false,
- "text": "Patient health questionnaire 9 item total score",
- "type": "decimal"
}
], - "meta": {
- "tag": [
- {
- "code": "lformsVersion: 29.2.1"
}
]
}, - "resourceType": "Questionnaire",
- "status": "active",
- "title": "Patient Health Questionnaire (PHQ-9)"
}QuestionnaireResponse provides a complete or partial list of answers to a set of questions filled when responding to a questionnaire. The questions may be included directly or by reference to a Questionnaire resource that defines the questions as well as the constraints on the allowed answers - see: https://www.hl7.org/fhir/questionnaireResponse.html
Profiles used: https://hl7.org/fhir/us/core/STU7/StructureDefinition-us-core-questionnaireresponse.html
Obtains a list (FHIR Bundle) of all questionnaire responses available in the EHR. Data filtering can be achieved by providing query parameters
| patient | string WRS Health internal Patient ID |
| _revinclude | string List of additional resources that refer to this resource - see: https://www.hl7.org/fhir/search.html#revinclude. Most frequently used: Provenance |
{- "resourceType": "Bundle",
- "type": "searchset",
- "id": "e2dd1c46-6db9-49f5-96c8-0e0ac1f824e1",
- "entry": [
- {
- "resource": {
- "authored": "2024-03-22T14:13:13.975Z",
- "item": [
- {
- "answer": [
], - "linkId": "/44250-9",
- "text": "Little interest or pleasure in doing things"
}, - {
- "answer": [
], - "linkId": "/44255-8",
- "text": "Feeling down, depressed, or hopeless"
}, - {
- "answer": [
], - "linkId": "/44259-0",
- "text": "Trouble falling or staying asleep, or sleeping too much"
}, - {
- "answer": [
], - "linkId": "/44254-1",
- "text": "Feeling tired or having little energy"
}
], - "meta": {
- "tag": [
- {
- "code": "lformsVersion: 35.0.3"
}
]
}, - "resourceType": "QuestionnaireResponse",
- "status": "completed",
- "subject": {
- "identifier": "2682047",
- "type": "Patient"
}
}
}
]
}Returns a single questionnaire response resource - if found - based on the provided id
| id required | string WRS Health internal QuestionnaireResponse ID |
{- "authored": "2024-03-22T14:13:13.975Z",
- "item": [
- {
- "answer": [
], - "linkId": "/44250-9",
- "text": "Little interest or pleasure in doing things"
}, - {
- "answer": [
], - "linkId": "/44255-8",
- "text": "Feeling down, depressed, or hopeless"
}, - {
- "answer": [
], - "linkId": "/44259-0",
- "text": "Trouble falling or staying asleep, or sleeping too much"
}, - {
- "answer": [
], - "linkId": "/44254-1",
- "text": "Feeling tired or having little energy"
}
], - "meta": {
- "tag": [
- {
- "code": "lformsVersion: 35.0.3"
}
]
}, - "resourceType": "QuestionnaireResponse",
- "status": "completed",
- "subject": {
- "identifier": "2682047",
- "type": "Patient"
}
}