Resource Specifications

Covered by this topic

Supported Resources

AllergyIntolerance
CarePlan
CareTeam
Condition
Device
DiagnosticReport
DocumentReference
Encounter
Goal
Immunization
Location
Medication
MedicationRequest
Observation
Organization
Patient
Practitioner
PractitionerRole
Procedure
Provenance

AllergyIntolerance

Description

The AllergyIntolerance resource returns data regarding an undesirable, physiological response associated with exposure to a given substance unique to a single patient.
A list of allergies for a specific patient can be returned when searching by that patient.

Standards

FHIR Version: R4 AllergyIntolerance
Data Version: USCDI v1
Supported Profiles: US Core STU3 AllergyIntolerance

Functions

FunctionHTTP MethodURL Template
AllergyIntolerance.READGET[baseURL]/AllergyIntolerance/{ID}
AllergyIntolerance.SEARCHGET[baseURL]/AllergyIntolerance?_id={ID}

Parameters

NameDescriptionData TypeRequiredSearchable
idAllergyIntolerance logical FHIR IDStringNOYes
metaMetadata about the AllergyIntoleranceMetaNoNo
clinicalStatusStatus of the AllergyIntolerance
  • active

  • resolved

CodableConceptNoNo
verificationStatusCertainty of the AllergyIntolerance
  • confirmed

  • entered-in-error

CodableConceptNoNo
typePhysiological mechanism
  • allergy

  • intolerance

CodeNoNo
codeCode identifying the AllergyIntoleranceCodableConceptYesNo
noteComments associated with the AllergyIntoleranceAnnotationNoNo
reactionAdverse events linked to exposure to the substanceBackboneElementNoNo
patientReference to the Patient resource for whom the AllergyIntolerance is recordedPatient ReferenceYesYes
recordedDateFirst date the AllergyIntolerance was recordeddateTimeNoNo

Supported Searches

Parameter(s)URL Template
id[baseURL]/AllergyIntolerance?_id={ID}
patient[baseURL]/AllergyIntolerance?patient={reference}

Request

  
https://webchartnow.com/fhirr4sandbox/webchart.cgi/fhir/AllergyIntolerance/11  
  

Response

  
{  
	"resourceType": "AllergyIntolerance",  
	"id": "11",  
	"meta": {  
		"versionId": "0",  
		"lastUpdated": "2022-08-05T18:33:45Z",  
		"profile": [  
			"http://hl7.org/fhir/us/core/StructureDefinition/us-core-allergyintolerance"  
		]  
	},  
	"clinicalStatus": {  
		"coding": [  
			{  
				"system": "http://terminology.hl7.org/CodeSystem/allergyintolerance-clinical",  
				"code": "active"  
			}  
		]  
	},  
	"verificationStatus": {  
		"coding": [  
			{  
				"system": "http://terminology.hl7.org/CodeSystem/allergyintolerance-verification",  
				"code": "confirmed"  
			}  
		]  
	},  
	"type": "allergy",  
	"code": {  
		"coding": [  
			{  
				"system": "http://snomed.info/sct",  
				"code": "387235007",  
				"display": "Penicillamine"  
			}  
		],  
		"text": "PENICILLAMINE"  
	},  
	"reaction": [  
		{  
			"manifestation": [  
				{  
					"coding": [  
						{  
							"system": "http://snomed.info/sct",  
							"code": "247472004",  
							"display": "Hives"  
						}  
					],  
					"text": "Hives"  
				}  
			]  
		}  
	],  
	"patient": {  
		"reference": "Patient/18"  
	},  
	"recordedDate": "2022-08-05T18:33:45Z"  
}  
  

  

Error Handling

HTTP CodeSeverityDescriptionExample
401ErrorUnauthorizedPermission Denied
403ErrorForbiddenAccess Denied
404ErrorWebsite Not FoundUnsupported Search Path
500ErrorInternal Server ErrorOut of Memory

Product Information

Product: WebChart EHR Version: 8.4 Release Date: September 1, 2022

CarePlan

Description

The CarePlan resource returns data related to the intention of how one or more practitioners deliver care for a unique patient or group of patients during a period of time. CarePlans may or may not be related to a specific condition or set of conditions. A list of care plans for a specific patient can be returned when searching by that patient.

Standards

FHIR Version: R4 Careplan Data Version: USCDI v1 Supported Profiles: US Core STU3 CarePlan

Functions

FunctionHTTP MethodURL Template
CarePlan.READGET[baseURL]/CarePlan/{ID}
CarePlan.SEARCHGET[baseURL]/CarePlan?_id={ID}

Parameters

NameDescriptionData TypeRequiredSearchable
idCarePlan FHIR logical IDStringNoYes
subjectReference to the Patient resource for whom the CarePlan is recordedPatient ReferenceYesYes
categoryType of CarePlan
  • assess-plan

SliceYesYes
intentLevel of authority of the CarePlan
  • order

CodeYesNo
textHuman-readable summary of the CarePlanNarrativeYesNo
statusIndication of when the CarePlan is/was actionable
  • draft

  • active

  • completed

  • entered-in-error

CodeYes=o

Supported Searches

Parameter(s)URL Template
id[baseURL]/CarePlan?_id={ID}
patient+category[baseURL]/CarePlan?patient={reference}&category=assess-plan

Request

  
  
https://webchartnow.com/fhirr4sandbox/webchart.cgi/fhir/CarePlan/11  
  
  

Response

  
  
{  
	"resourceType": "CarePlan",  
	"id": "11",  
	"subject": {  
		"reference": "Patient/18",  
		"type": "Patient",  
		"display": "William S. Hart"  
	},  
	"category": [  
		{  
			"coding": [  
				{  
					"system": "http://hl7.org/fhir/us/core/CodeSystem/careplan-category",  
					"code": "assess-plan"  
				}  
			],  
			"text": "AssessPlan"  
		}  
	],  
	"intent": "order",  
	"text": {  
		"status": "additional",  
		"div": "<div xmlns=\"http://www.w3.org/1999/xhtml\">No narrative provided for encounter 11</div>"  
	},  
	"status": "completed"  
}  
  
  

Error Handling

HTTP CodeSeverityDescriptionExample
401ErrorUnauthorizedPermission Denied
403ErrorForbiddenAccess Denied
404ErrorWebsite Not FoundUnsupported Search Path Permission Denied
500ErrorInternal Server ErrorOut of Memory

Product Information

Product: WebChart EHR Version: 8.4 Release Date: September 1, 2022

CareTeam

Description

The CareTeam resource returns data regarding everyone involved in the care of a unique patient. This team may consist of medical practitioners, friends, relatives, and organizations. A list of care teams for a specific patient can be returned when searching by that patient.

Standards

FHIR Version: R4 CareTeam Data Version: USCDI v1 Supported Profiles: US Core STU3 CareTeam

Functions

FunctionHTTP MethodURL Template
CareTeam.READGET[baseURL]/CareTeam/{ID}
CareTeam.SEARCHGET[baseURL]/CareTeam?_id={ID}

Parameters

NameDescriptionData TypeRequiredSearchable
idCareTeam logical FHIR IDStringNoYes
subjectReference to the Patient resource for whom the CareTeam is recordedPatient ReferenceYesYes
metaMetadata about the CareTeamMetaNoNo
statusCurrent state of the CareTeam
  • active

CodeNoYes
periodEffective dates of the CareTeamPeriodNoNo
participantReferences to the people and organizations involved in the CareTeamBackboneElementYesNo

Supported Searches

Parameter(s)URL Template
_id[baseURL]/CareTeam?_id={ID}
patient+status[baseURL]/CareTeam?patient={reference}&status=active

Request

  
  
https://webchartnow.com/fhirr4sandbox/webchart.cgi/fhir/CareTeam/18  
  
  

Response

  
  
{  
	"resourceType": "CareTeam",  
	"id": "18",  
	"subject": {  
		"reference": "Patient/18",  
		"type": "Patient",  
		"display": "John M. Sample, M.D."  
	},  
	"status": "active",  
	"period": {  
		"start": "2012-06-23"  
	},  
	"participant": [  
		{  
			"role": [  
				{  
					"coding": [  
						{  
							"system": "http://snomed.info/sct",  
							"code": "59058001",  
							"display": "Family Medicine"  
						}  
					]  
				}  
			],  
			"member": {  
				"reference": "Practitioner/88",  
				"display": "John M. Sample, M.D."  
			},  
			"period": {  
				"start": "2010-03-23"  
			}  
		},  
		{  
			"role": [  
				{  
					"coding": [  
						{  
							"system": "http://snomed.info/sct",  
							"code": "67822003",  
							"display": "Child"  
						}  
					]  
				}  
			],  
			"member": {  
				"reference": "Patient/27",  
				"display": "William S. Hart"  
			},  
			"period": {  
				"start": "2010-03-23"  
			}  
		}  
	]  
}  
  
  

Error Handling

HTTP CodeSeverityDescriptionExample
401ErrorUnauthorizedPermission Denied
403ErrorForbiddenAccess Denied
404ErrorWebsite Not FoundUnsupported Search Path Permission Denied
500ErrorInternal Server ErrorOut of Memory

Product Information

Product: WebChart EHR Version: 8.4 Release Date: September 1, 2022

Condition

Description

The Condition resource returns data regarding a clinical condition, problem, or diagnosis that has risen to clinical significance for a unique patient. A list of conditions for a specific patient can be returned when searching by that patient.

Standards

FHIR Version: R4 Condition Data Version: USCDI v1 Supported Profiles: US Core STU3 Condition

Functions

FunctionHTTP MethodURL Template
Condition.READGET[baseURL]/Condition/{ID}
Condition.SEARCHGET[baseURL]/Condition?patient={reference}

Parameters

NameDescriptionData TypeRequiredSearchable
idCondition logical FHIR IDStringNoYes
metaMetadata about the ConditionMetaNoNo
clinicalStatusClinical status of the Condition
  • active

  • recurrence

  • relapse

  • inactive

  • remission

  • resolved

CodeableConceptNoYes
verificationStatusInformation to support the clinical status
  • unconfirmed

  • provisional

  • differential

  • confirmed

  • refuted

  • entered-in-error

CodeableConceptNoNo
categoryCategory of the Condition
  • problem-list-item

  • health-concern

CodeableConceptYesYes
codeICD9, ICD10, or SNOMED concept ID identifying the ConditionCodeableConceptYesYes
subjectReference to the Patient resource with the ConditionPatient ReferenceYesYes
encounterEncounter during which the Condition was recordedEncounter ReferenceNoNo
onsetDateTimeEstimated or actual date the Condition begandateTimeNoYes
recordedDateDate the Condition was first recorded in the systemdateTimeNoNo

Supported Searches

Parameter(s)URL Template
_id[baseURL]/Condition?_id={ID}
patient[baseURL]/Condition?patient={reference}
onset-date[baseURL]/Condition?onset-date={prefix}{date}
category[baseURL]/Condition?category={token}
clinical-status[baseURL]/Condition?clinical-status={token}
code[baseURL]/Condition?code={token}

Request

  
  
https://webchartnow.com/fhirr4sandbox/webchart.cgi/fhir/Condition/26  
  
  

Response

  
  
{  
	"resourceType": "Condition",  
	"id": "26",  
	"meta": {  
		"versionId": "7",  
		"lastUpdated": "2022-08-05T18:33:45Z",  
		"profile": [  
			"http://hl7.org/fhir/us/core/StructureDefinition/us-core-condition"  
		]  
	},  
	"clinicalStatus": {  
		"coding": [  
			{  
				"system": "http://terminology.hl7.org/CodeSystem/condition-clinical",  
				"code": "active"  
			}  
		]  
	},  
	"verificationStatus": {  
		"coding": [  
			{  
				"system": "http://terminology.hl7.org/CodeSystem/condition-ver-status",  
				"code": "confirmed"  
			}  
		]  
	},  
	"category": [  
		{  
			"coding": [  
				{  
					"system": "http://terminology.hl7.org/CodeSystem/condition-category",  
					"code": "problem-list-item",  
					"display": "Problem List Item"  
				}  
			]  
		}  
	],  
	"code": {  
		"coding": [  
			{  
				"system": "http://snomed.info/sct",  
				"code": "49436004",  
				"display": "Atrial fibrillation (disorder)"  
			},  
			{  
				"system": "http://hl7.org/fhir/sid/icd-10",  
				"code": "I48.91",  
				"display": "Unspecified atrial fibrillation"  
			},  
			{  
				"system": "http://hl7.org/fhir/sid/icd-9",  
				"code": "427.31",  
				"display": "Atrial Fibrillation"  
			}  
		],  
		"text": "Atrial fibrillation"  
	},  
	"subject": {  
		"reference": "Patient/18"  
	},  
	"recordedDate": "2010-03-23T15:33:55Z"  
}  
  
  

Error Handling

HTTP CodeSeverityDescriptionExample
401ErrorUnauthorizedPermission Denied
403ErrorForbiddenAccess Denied
404ErrorWebsite Not FoundUnsupported Search Path Permission Denied
500ErrorInternal Server ErrorOut of Memory

Product Information

Product: WebChart EHR Version: 8.4 Release Date: September 1, 2022

Device

Description

The Device resource returns data regarding a medical or non-medical manufactured item that is used in but unchanged by the provision of healthcare. A list of Devices for a specific patient can be returned when searching by that patient.

Standards

FHIR Version: R4 Device Data Version: USCDI v1 Supported Profiles: US Core STU3 Implantable Device

Functions

FunctionHTTP MethodURL Template
Device.READGET[baseURL]/Device/{ID}
Device.SEARCHGET[baseURL]/Device?patient={reference}

Parameters

NameDescriptionData TypeRequiredSearchable
idDevice logical FHIR IDStringNoYes
udiCarrierUnique Device Identifier (UDI) BarcodeBackboneElementNoNo
statusDevice availability
  • active

  • inactive

  • entered-in-error

  • unknown

CodeNoNo
distinctIdentifierDistinct identification required for cell or tissue based productsStringNoNo
manufactureDateDate the Device was madedateTimeNoNo
expirationDateDate the Device expiresdateTimeNoNo
lotNumberManufacturing lot numberStringNoNo
serialNumberSerial number assigned by the manufacturerStringNoNo
deviceNameName assigned by the manufacturerBackboneElementNoNo
typeKind of type of DeviceCodeableConceptYesNo
patientReference to the Patient resource to whom the Device is affixedPatient ReferenceYesYes
noteNotes and comments regarding the DeviceAnnotationNoNo

Supported Searches

Parameter(s)URL Template
_id[baseURL]/Device?_id={ID}
patient[baseURL]/Device?patient={reference}

Request

  
  
https://webchartnow.com/fhirr4sandbox/webchart.cgi/fhir/Device/662  
  
  

Response

  
  
{  
	"resourceType": "Device",  
	"id": "662",  
	"udiCarrier": [  
		{  
			"deviceIdentifier": "09504000059118",  
			"carrierHRF": "(01)09504000059118(17)141120(10)7654321D(21)"  
		}  
	],  
	"status": "active",  
	"distinctIdentifier": "ABCDE12345",  
	"expirationDate": "2014-11-20",  
	"lotNumber": "7654321D",  
	"serialNumber": "10987654d321",  
	"deviceName": [  
		{  
			"name": "Coated femoral stem prosthesis, modular",  
			"type": "user-friendly-name"  
		}  
	],  
	"type": {  
		"coding": [  
			{  
				"system": "http://snomed.info/sct",  
				"code": "468063009",  
				"display": "Coated femoral stem prosthesis, modular"  
			}  
		],  
		"text": "Knee joint prosthesis"  
	},  
	"patient": {  
		"reference": "Patient/18"  
	},  
	"note": [  
		{  
			"text": "https://accessgudid.nlm.nih.gov/devices/09504000059118"  
		}  
	]  
}  
  
  

Error Handling

HTTP CodeSeverityDescriptionExample
401ErrorUnauthorizedPermission Denied
403ErrorForbiddenAccess Denied
404ErrorWebsite Not FoundUnsupported Search Path Permission Denied
500ErrorInternal Server ErrorOut of Memory

Product Information

Product: WebChart EHR Version: 8.4 Release Date: September 1, 2022

DiagnosticReport

Description

The DiagnosticReport resource returns data regarding the findings and interpretations of diagnostic tests. A list of DiagnosticReports for a specific patient can be returned when searching by that patient.

Standards

FHIR Version: R4 DiagnosticReport Data Version: USCDI v1 Supported Profiles: US Core STU3 DiagnosticReport Profile for Laboratory Results Reporting , US Core STU3 DiagnosticReport Profile for Report and Note exchange

Functions

FunctionHTTP MethodURL Template
DiagnosticReport.READGET[baseURL]/DiagnosticReport/{ID}
DiagnosticReport.SEARCHGET[baseURL]/DiagnosticReport?patient={reference}

Parameters

NameDescriptionData TypeRequiredSearchable
idDiagnosticReport logical FHIR IDStringNoYes
identifierBusiness identifier assigned to the DiagnosticReport by the performer or systemIdentifierNoNo
statusStatus of the DiagnosticReport
  • registered

  • partial

  • preliminary

  • final

CodeYesNo
categoryClinical discipline, department, or diagnostic service that created the DiagnosticReportSliceYesYes
codeTest, panel, or battery that was orderedCodeableConceptYesYes
subjectReference to the Patient resource who is the subject of the DiagnosticReportPatient ReferenceYesYes
encounterHealthcare event where the test was orderedEncounter ReferenceNoNo
effectiveDateTimeSpecimen collection date or perioddateTimeYesNo
performerReference to the resource who performed the diagnostic servicePractitioner or Organization ReferenceNoNo
resultsInterpreterReference to the resource that interpreted the diagnostic resultsPractitioner or Organization ReferenceNoNo
resultReference to the Observation resourcesObservation ReferenceNoNo
presentedFormEntire report as reportedAttachmentNoNo

Supported Searches

Parameter(s)URL Template
_id[baseURL]/Resource?_id={ID}
patient[baseURL]/Resource?patient={reference}
patient+code[baseURL]/Resource?patient={reference}&code={token}
patient+category[baseURL]/Resource?patient={reference}&category={token}
patient+category+date[baseURL]/Resource?patient={reference}&category={token}&date={date}

Request

  
  
https://webchartnow.com/fhirr4sandbox/webchart.cgi/fhir/DiagnosticReport/91  
  
  

Response

  
  
{  
	"resourceType": "DiagnosticReport",  
	"id": "91",  
	"identifier": [  
		{  
			"use": "usual",  
			"value": "91"  
		}  
	],  
	"status": "unknown",  
	"category": [  
		{  
			"coding": [  
				{  
					"system": "http://loinc.org",  
					"display": "Radiology",  
					"code": "LP29684-5"  
				}  
			]  
		}  
	],  
	"code": {  
		"coding": [  
			{  
				"system": "http://loinc.org",  
				"code": "30746-2",  
				"display": "Portable XR Chest Views"  
			}  
		]  
	},  
	"subject": {  
		"reference": "Patient/18"  
	},  
	"effectiveDateTime": "2009-08-20",  
	"issued": "2009-08-20T20:25:02Z",  
	"performer": [  
		{  
			"reference": "Organization/41"  
		}  
	],  
	"resultsInterpreter": [  
		{  
			"reference": "Practitioner/8"  
		}  
	],  
	"presentedForm": [  
		{  
			"contentType": "application/txt",  
			"data": "RGlhZ25vc3RpYyBJbWFnaW5nIFJlcG9ydA0KDQpFeGFtaW5hdGlvbjogIFJBRCAtIENoZXN0IEZy\nb250YWwgYW5kIExhdGVyYWwgMiBWaWV3cy4NCkRhdGUgb2YgRXhhbTogICBBdWcgMjAsIDIwMDkg\nNDowNDowMCBQTS4NCkNvbXBhcmlzb246ICBOb25lLg0KUmVsZXZhbnQgQ2xpbmljYWwgSW5mb3Jt\nYXRpb246ICAgIGNoZiwgc29iIHdpdGggZXhlcnRpb24sIGFvcnRpYw0KcmVndXJnaXRhdGlvbi4N\nCk51bWJlciBvZiBJbWFnZXM6IDINCg0KRGlzY3Vzc2lvbjogICBNaWxkIGludGVyc3RpdGlhbCBw\ncm9taW5lbmNlIG5vdGVkIG1heSByZXByZXNlbnQNCmludGVyc3RpdGlhbCBwdWxtb25hcnkgZWRl\nbWEuIFRoZXJlIGlzIHNvbWUgaGlsYXIgdmFzY3VsYXIgY29uZ2VzdGlvbg0KYWxzby4gTm8gcGxl\ndXJhbCBlZmZ1c2lvbi4gTWlsZCBjYXJkaW9tZWdhbHkuIEVjdGF0aWMgYW5kIHRvcnR1b3VzDQpk\nZXNjZW5kaW5nIHRob3JhY2ljIGFvcnRhIG5vdGVkLiBMZWZ0IHN1YmNsYXZpYW4gYXBwcm9hY2gg\nZHVhbC1sZWFkDQpwYWNlci4NCg0KSW1wcmVzc2lvbjogICBNaWxkIGludGVyc3RpdGlhbCBwdWxt\nb25hcnkgZWRlbWEuDQoNClN0ZXZlIEEgU21pdGgsIE1EDQoNClRyYW5zY3JpcHRpb24gSUQ6ICBQ\nT1dFUlNDUklCRQ0KRDogMDgvMjAvMjAwOSAxNjoyMToyNQ0KDQpKb2IgSUQ6ICAxMjM0NTYNCg0K\nICAgT1JERVJJTkc6ICBTYW1wbGUsIE1pY2hhZWwgTUQNCiAgIFBBVElFTlQ6ICBIYXJ0LCBXaWxs\naWFtIFMuDQogICBNUk46IDEwMDE5DQogICBET0I6IDExLzMwLzE5MTUNCiAgIFZJU0lUL0FETUlU\nIERBVEU6IDA4LzIwLzIwMDkNCiAgIEVYQU0gREFURTogMDgvMjAvMjAwOQ0KICAgTE9DQVRJT046\nICBEaWFnbm9zdGljIFJhZGlvbG9neQ0KICAgUEFUSUVOVCBUWVBFOiAgTw0KUkFEIC0gQ2hlc3Qg\nLSAyIFZpZXdzIC0gRnJvbnRhbC9MYXRlcmFs"  
		}  
	]  
}  
  
  

Error Handling

HTTP CodeSeverityDescriptionExample
401ErrorUnauthorizedPermission Denied
403ErrorForbiddenAccess Denied
404ErrorWebsite Not FoundUnsupported Search Path Permission Denied
500ErrorInternal Server ErrorOut of Memory

Product Information

Product: WebChart EHR Version: 8.4 Release Date: September 1, 2022

DocumentReference

Description

The DocumentReference resource returns data for any document created for any purpose. A list of documents for a specific patient can be returned when searching by that patient.

Standards

FHIR Version: R4 DocumentReference Data Version: USCDI v1 Supported Profiles: US Core STU3 DocumentReference

Functions

FunctionHTTP MethodURL Template
DocumentReference.READGET[baseURL]/DocumentReference/{ID}
DocumentReference.SEARCHGET[baseURL]/DocumentReference?_id={ID}

Parameters

NameDescriptionData TypeRequiredSearchable
idDocumentReference logical FHIR IDStringNoYes
identifierAdditional DocumentReference identifiersIdentifierNoNo
statusStatus of the DocumentReference
  • current

  • entered-in-error

CodeYesNo
typeKind of DocumentReferenceCodeableConceptYesYes
categoryClinical NoteCodeableConceptYesYes
subjectReference to the Patient resource to whom the DocumentReference pertainsPatient ReferenceYesNo
dateDate the document was createdInstantNoYes
authorReference to the Practitioner resource that created the DocumentReferencePractitioner ReferenceNoNo
custodianReference to the Organization resource that maintains the DocumentReferenceOrganization ReferenceNoNo
contentThe documentBackboneElementYesNo
contextClinical context of the DocumentReference including an Encounter reference and dateBackboneElementNoNo

Supported Searches

Parameter(s)URL Template
_id[baseURL]/DocumentReference?_id={ID}
patient[baseURL]/DocumentReference?patient={reference}
patient+type[baseURL]/DocumentReference?patient={reference}&type={token}
patient+category[baseURL]/DocumentReference?patient={reference}&category={token}
patient+category+date[baseURL]/DocumentReference?patient={reference}&category={token}&date={date}

Request

  
  
https://webchartnow.com/fhirr4sandbox/webchart.cgi/fhir/DocumentReference/91  
  
  

Response

  
  
{  
	"resourceType": "DocumentReference",  
	"id": "91",  
	"identifier": [  
		{  
			"system": "urn:oid:1.2.840.114398.1.660376160187469368594400296994359.999.5",  
			"value": "91"  
		}  
	],  
	"status": "current",  
	"type": {  
		"coding": [  
			{  
				"system": "http://loinc.org",  
				"code": "30746-2",  
				"display": "Portable XR Chest Views"  
			}  
		],  
		"text": "Portable XR Chest Views"  
	},  
	"category": [  
		{  
			"coding": [  
				{  
					"system": "http://hl7.org/fhir/us/core/CodeSystem/us-core-documentreference-category",  
					"code": "clinical-note",  
					"display": "Clinical Note"  
				}  
			],  
			"text": "Clinical Note"  
		}  
	],  
	"subject": {  
		"reference": "Patient/18"  
	},  
	"date": "2009-08-20T04:00:00Z",  
	"author": [  
		{  
			"reference": "Practitioner/55",  
			"display": "Selenium Selenium"  
		}  
	],  
	"custodian": {  
		"reference": "Organization/43"  
	},  
	"content": [  
		{  
			"attachment": {  
				"contentType": "text/plain",  
				"data": "RGlhZ25vc3RpYyBJbWFnaW5nIFJlcG9ydA0KDQpFeGFtaW5hdGlvbjogIFJBRCAtIENoZXN0IEZy\nb250YWwgYW5kIExhdGVyYWwgMiBWaWV3cy4NCkRhdGUgb2YgRXhhbTogICBBdWcgMjAsIDIwMDkg\nNDowNDowMCBQTS4NCkNvbXBhcmlzb246ICBOb25lLg0KUmVsZXZhbnQgQ2xpbmljYWwgSW5mb3Jt\nYXRpb246ICAgIGNoZiwgc29iIHdpdGggZXhlcnRpb24sIGFvcnRpYw0KcmVndXJnaXRhdGlvbi4N\nCk51bWJlciBvZiBJbWFnZXM6IDINCg0KRGlzY3Vzc2lvbjogICBNaWxkIGludGVyc3RpdGlhbCBw\ncm9taW5lbmNlIG5vdGVkIG1heSByZXByZXNlbnQNCmludGVyc3RpdGlhbCBwdWxtb25hcnkgZWRl\nbWEuIFRoZXJlIGlzIHNvbWUgaGlsYXIgdmFzY3VsYXIgY29uZ2VzdGlvbg0KYWxzby4gTm8gcGxl\ndXJhbCBlZmZ1c2lvbi4gTWlsZCBjYXJkaW9tZWdhbHkuIEVjdGF0aWMgYW5kIHRvcnR1b3VzDQpk\nZXNjZW5kaW5nIHRob3JhY2ljIGFvcnRhIG5vdGVkLiBMZWZ0IHN1YmNsYXZpYW4gYXBwcm9hY2gg\nZHVhbC1sZWFkDQpwYWNlci4NCg0KSW1wcmVzc2lvbjogICBNaWxkIGludGVyc3RpdGlhbCBwdWxt\nb25hcnkgZWRlbWEuDQoNClN0ZXZlIEEgU21pdGgsIE1EDQoNClRyYW5zY3JpcHRpb24gSUQ6ICBQ\nT1dFUlNDUklCRQ0KRDogMDgvMjAvMjAwOSAxNjoyMToyNQ0KDQpKb2IgSUQ6ICAxMjM0NTYNCg0K\nICAgT1JERVJJTkc6ICBTYW1wbGUsIE1pY2hhZWwgTUQNCiAgIFBBVElFTlQ6ICBIYXJ0LCBXaWxs\naWFtIFMuDQogICBNUk46IDEwMDE5DQogICBET0I6IDExLzMwLzE5MTUNCiAgIFZJU0lUL0FETUlU\nIERBVEU6IDA4LzIwLzIwMDkNCiAgIEVYQU0gREFURTogMDgvMjAvMjAwOQ0KICAgTE9DQVRJT046\nICBEaWFnbm9zdGljIFJhZGlvbG9neQ0KICAgUEFUSUVOVCBUWVBFOiAgTw0KUkFEIC0gQ2hlc3Qg\nLSAyIFZpZXdzIC0gRnJvbnRhbC9MYXRlcmFs"  
			},  
			"format": {  
				"system": "urn:oid:1.3.6.1.4.1.19376.1.2.3",  
				"code": "urn:ihe:iti:xds:2017:mimeTypeSufficient",  
				"display": "mimeType Sufficient"  
			}  
		}  
	]  
}  
  
  

Error Handling

HTTP CodeSeverityDescriptionExample
401ErrorUnauthorizedPermission Denied
403ErrorForbiddenAccess Denied
404ErrorWebsite Not FoundUnsupported Search Path Permission Denied
500ErrorInternal Server ErrorOut of Memory

Product Information

Product: WebChart EHR Version: 8.4 Release Date: September 1, 2022

Encounter

Description

The Encounter resource returns data regarding a clinical interaction between a patient and one or more healthcare providers. A list of encounters for a specific patient can be returned when searching by that patient.

Standards

FHIR Version: R4 Encounter Data Version: USCDI v1 Supported Profiles: US Core STU3 Encounter

Functions

FunctionHTTP MethodURL Template
Encounter.READGET[baseURL]/Encounter/{ID}
Encounter.SEARCHGET[baseURL]/Encounter?_id={ID}

Parameters

NameDescriptionData TypeRequiredSearchable
idEncounter logical FHIR IDStringNoYes
metaMetadata about the EncounterMetaNoNo
identifierAdditional identifiers for the EncounterIdentifierNoNo
statusStatus of the Encounter
  • in-progress

  • finished

CodeYesYes
classClassification of the Encounter setting
  • ambulatory

CodingYesNo
typeType of EncounterCodeableConceptYesNo
subjectReference to the Patient resource present at the EncounterPatient ReferenceYesYes
locationList of References to Location resources where the Patient was during the EncounterBackbone ElementNoNo
periodStart and end times of the EncounterPeriodNoYes
reasonCodeCoded reason the Encounter is taking placeCodeableConceptNoNo
participantList of References to Practitioner resources that were involved in the EncounterBackboneElementNoNo
hospitalizationDetails about admission to a healthcare serviceBackboneElementNoNo

Supported Searches

Parameter(s)URL Template
_id[baseURL]/Encounter?_id={ID}
patient[baseURL]/Encounter?patient={reference}
patient+date[baseURL]/Encounter?patient={reference}&date={date}

Request

  
  
https://webchartnow.com/fhirr4sandbox/webchart.cgi/fhir/Encounter/63  
  
  

Response

  
  
{  
	"resourceType": "Encounter",  
	"id": "63",  
	"meta": {  
		"profile": [  
			"http://hl7.org/fhir/us/core/StructureDefinition/us-core-encounter"  
		]  
	},  
	"identifier": [  
		{  
			"use": "usual",  
			"system": "urn:oid:1.2.840.114398.1.660376160187469368594400296994359.999.7",  
			"value": "63"  
		}  
	],  
	"status": "finished",  
	"class": {  
		"system": "http://terminology.hl7.org/CodeSystem/v3-ActCode",  
		"code": "AMB",  
		"display": "ambulatory"  
	},  
	"type": [  
		{  
			"text": "Visit"  
		}  
	],  
	"subject": {  
		"reference": "Patient/18"  
	},  
	"location": [  
		{  
			"location": {  
				"reference": "Location/41"  
			}  
		}  
	],  
	"period": {  
		"end": "2022-08-05T18:33:50Z",  
		"start": "2014-09-10T13:52:21Z"  
	},  
	"reasonCode": [  
		{  
			"coding": [  
				{  
					"system": "http://snomed.info/sct",  
					"code": "69466000",  
					"display": "Unknown procedure"  
				}  
			],  
			"text": "Unknown procedure"  
		}  
	],  
	"participant": [  
		{  
			"type": [  
				{  
					"coding": [  
						{  
							"system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType",  
							"code": "PPRF",  
							"display": "primary performer"  
						}  
					],  
					"text": "Primary performer"  
				}  
			],  
			"period": {  
				"end": "2022-08-05T18:33:50Z",  
				"start": "2014-09-10T13:52:21Z"  
			},  
			"individual": {  
				"reference": "Practitioner/55"  
			}  
		}  
	],  
	"hospitalization": {  
		"dischargeDisposition": {  
			"coding": [  
				{  
					"system": "http://www.nubc.org/patient-discharge",  
					"code": "01",  
					"display": "Discharged to Home"  
				}  
			],  
			"text": "Discharged to Home"  
		}  
	}  
}  
  
  

Error Handling

HTTP CodeSeverityDescriptionExample
401ErrorUnauthorizedPermission Denied
403ErrorForbiddenAccess Denied
404ErrorWebsite Not FoundUnsupported Search Path Permission Denied
500ErrorInternal Server ErrorOut of Memory

Product Information

Product: WebChart EHR Version: 8.4 Release Date: September 1, 2022

Goal

Description

The Goal resource returns data describing one or more, short or long term healthcare objectives for a unique patient. A list of goals for a specific patient can be returned when searching by that patient.

Standards

FHIR Version: R4 Goal Data Version: USCDI v1 Supported Profiles: US Core STU3 Goal

Functions

FunctionHTTP MethodURL Template
Goal.READGET[baseURL]/Goal/{ID}
Goal.SEARCHGET[baseURL]/Goal?patient={reference}

Parameters

NameDescriptionData TypeRequiredSearchable
idGoal logical FHIR IDStringNoYes
metaMetadata about the GoalMetaNoNo
lifecycleStatusState of the Goal
  • active

  • on-hold

  • accepted

CodeYesNo
descriptionHuman readable or coded description of the desired outcome of careCodeableConceptYesNo
subjectReference to the Patient resource for whom the goal is establishedPatient ReferenceYesYes
targetIndication of what should be done by whenBackboneElementNoNo

Supported Searches

Parameter(s)URL Template
_id[baseURL]/Goal?_id={ID}
patient[baseURL]/Goal?patient={reference}

Request

  
  
https://webchartnow.com/fhirr4sandbox/webchart.cgi/fhir/Goal/1  
  
  

Response

  
  
{  
	"resourceType": "Goal",  
	"id": "1",  
	"meta": {  
		"profile": [  
			"http://hl7.org/fhir/us/core/StructureDefinition/us-core-goal"  
		]  
	},  
	"lifecycleStatus": "accepted",  
	"description": {  
		"text": "Blood Pressure:120/80",  
		"coding": [  
			{  
				"system": "http://loinc.org",  
				"code": "18684-1"  
			}  
		]  
	},  
	"subject": {  
		"reference": "Patient/18",  
		"display": "Hart, William S."  
	},  
	"target": [  
		{  
			"dueDate": "2022-07-29"  
		}  
	]  
}  
  
  

Error Handling

HTTP CodeSeverityDescriptionExample
401ErrorUnauthorizedPermission Denied
403ErrorForbiddenAccess Denied
404ErrorWebsite Not FoundUnsupported Search Path Permission Denied
500ErrorInternal Server ErrorOut of Memory

Product Information

Product: WebChart EHR Version: 8.4 Release Date: September 1, 2022

Immunization

Description

The Immunization resource returns data describing the event of a vaccine administration or a reported record of immunization for a unique patient. A list of immunizations for a specific patient can be returned when searching by that patient.

Standards

FHIR Version: R4 Immunization Data Version: USCDI v1 Supported Profiles: US Core STU3 Immunization

Functions

FunctionHTTP MethodURL Template
Immunization.READGET[baseURL]/Immunization/{ID}
Immunization.SEARCHGET[baseURL]/Immunization?patient={reference}

Parameters

NameDescriptionData TypeRequiredSearchable
idImmunization logical FHIR IDStringNoYes
metaMetadata about the ImmunizationMetaNoNo
vaccineCodeThe vaccine that was administeredCodeableConceptYesNo
lotNumberLot number of the vaccine productStringNoNo
expirationDateDate the vaccine batch expiresDateNoNo
doseQuantityQuantity of vaccine that was administeredSimpleQuantityNoNo
statusCurrent status of the Immunization event
  • Completed

  • entered-in-error

  • not-done

CodeYesYes
statusReasonReason a vaccine was not-doneCodeableConceptNoNo
patientReference to the Patient resource to whom the vaccine was administeredPatient ReferenceYesYes
recordedDate the Immunization was first recorded in the chartdateTimeNoNo
occurrenceDateTimeDate the vaccine was administereddateTimeYesNo
primarySourceIndication of if the content of the Immunization record was reported by the person who administered the vaccineBooleanYesNo

Supported Searches

Parameter(s)URL Template
_id[baseURL]/Immunization?_id={ID}
patient[baseURL]/Immunization?patient={reference}
status[baseURL]/Immunization?status={token}

Request

  
  
https://webchartnow.com/fhirr4sandbox/webchart.cgi/fhir/Immunization/9  
  
  

Response

  
  
{  
	"resourceType": "Immunization",  
	"id": "9",  
	"meta": {  
		"profile": [  
			"http://hl7.org/fhir/StructureDefinition/Immunization"  
		]  
	},  
	"vaccineCode": {  
		"coding": [  
			{  
				"system": "http://hl7.org/fhir/sid/cvx",  
				"code": "09"  
			}  
		]  
	},  
	"lotNumber": "4598",  
	"expirationDate": "1999-06-01",  
	"status": "completed",  
	"patient": {  
		"reference": "Patient/18"  
	},  
	"recorded": "2010-03-23T16:09:10Z",  
	"occurrenceDateTime": "1999-04-28T17:07:00Z",  
	"primarySource": true  
}  
  
  

Error Handling

HTTP CodeSeverityDescriptionExample
401ErrorUnauthorizedPermission Denied
403ErrorForbiddenAccess Denied
404ErrorWebsite Not FoundUnsupported Search Path Permission Denied
500ErrorInternal Server ErrorOut of Memory

Product Information

Product: WebChart EHR Version: 8.4 Release Date: September 1, 2022

Location

Description

The Location resource returns data for a physical place where services are provided or where resources and participants may be found. A list of locations can be returned when searching by name or address.

Standards

FHIR Version: R4 Location Data Version: USCDI v1 Supported Profiles: US Core STU3 Location

Functions

FunctionHTTP MethodURL Template
Location.READGET[baseURL]/Location/{ID}
Location.SEARCHGET[baseURL]/Location?name={token}

Parameters

NameDescriptionData TypeRequiredSearchable
idLocation logical FHIR IDStringNoNo
statusGeneral availability of the Location
  • active

  • inactive

CodeNoNo
nameNon-unique human-given nameStringYesYes
telecomContact details of communication devices at the LocationContactPointNoNo
addressPhysical placeAddressNoYes
managingOrganizationReference to the Organization resource responsible for provisioning the LocationOrganization ReferenceNoNo

Supported Searches

Parameter(s)URL Template
name[baseURL]/Location?name={token}
address[baseURL]/Location?address={token}

Request

  
  
https://webchartnow.com/fhirr4sandbox/webchart.cgi/fhir/Location/41  
  
  

Response

  
  
	"resourceType": "Location",  
	"id": "41",  
	"status": "active",  
	"name": "Better Corp",  
	"telecom": [  
		{  
			"system": "phone",  
			"value": "6504596270"  
		}  
	],  
	"address": {  
		"line": [  
			"1700 Amphitheatre Parkway"  
		],  
		"city": "Mountain View",  
		"state": "CA",  
		"postalCode": "94043",  
		"country": "US"  
	}  
}  
  
  

Error Handling

HTTP CodeSeverityDescriptionExample
401ErrorUnauthorizedPermission Denied
403ErrorForbiddenAccess Denied
404ErrorWebsite Not FoundUnsupported Search Path Permission Denied
500ErrorInternal Server ErrorOut of Memory

Product Information

Product: WebChart EHR Version: 8.4 Release Date: September 1, 2022

Medication

Description

The Medication resource returns data used for the identification and definition of a medication. This resource can be used as reference in a MedicationRequest resource to define the medication being prescribed to a unique patient.

Standards

FHIR Version: R4 Medication Data Version: USCDI v1 Supported Profiles: US Core STU3 Medication

Functions

FunctionHTTP MethodURL Template
Medication.READGET[baseURL]/Medication/{ID}

Parameters

NameDescriptionData TypeRequiredSearchable
idMedication logical FHIR IDStringNoNo
codeRxNorm code that specifies the MedicationCodeableConceptYesNo

Supported Searches

Parameter(s)URL Template

Request

  
  
https://webchartnow.com/fhirr4sandbox/webchart.cgi/fhir/Medication/670934  
  
  

Response

  
  
{  
	"resourceType": "Medication",  
	"id": "670934",  
	"code": {  
		"coding": [  
			{  
				"system": "http://www.nlm.nih.gov/research/umls/rxnorm",  
				"code": "966247",  
				"display": "SYNTHROID 50 MCG Oral Tablet"  
			}  
		],  
		"text": "Levothyroxine Sodium 0.05 MG Oral Tablet [Synthroid]"  
	}  
}  
  
  

Error Handling

HTTP CodeSeverityDescriptionExample
401ErrorUnauthorizedPermission Denied
403ErrorForbiddenAccess Denied
404ErrorWebsite Not FoundUnsupported Search Path Permission Denied
500ErrorInternal Server ErrorOut of Memory

Product Information

Product: WebChart EHR Version: 8.4 Release Date: September 1, 2022

MedicationRequest

Description

The MedicationRequest resource returns data regarding an order or request for the supply of medication and instructions for its administration. A list of MedicationRequests for a specific patient can be returned when searching by that patient.

Standards

FHIR Version: R4 MedicationRequest Data Version: USCDI v1 Supported Profiles: US Core STU3 MedicationRequest

Functions

FunctionHTTP MethodURL Template
MedicationRequest.READGET[baseURL]/MedicationRequest/{ID}
MedicationRequest.SEARCHGET[baseURL]/MedicationRequest?patient={reference}

Parameters

NameDescriptionData TypeRequiredSearchable
idMedicationRequest logical FHIR IDStringNoYes
statusState of the order
  • active

  • stopped

  • entered-in-error

CodeYesYes
intentType of order
  • order

CodeYesYes
containedInline ResourcesResourceNoNo
medicationReferenceReference to the Medication resource being administeredMedication ReferenceYesNo
medicationCodeableConceptCode identifying the the requested medicationCodeable ConceptYesNo
reportedBooleanIndicates if the record was captured by another sourceBooleanNoNo
subjectReference to the Patient resource to whom the medication will be givenPatient ReferenceYesYes
authoredOnDate the MedicationRequestwas initially madedateTimeYesYes
requesterReference to the Practitioner or Organization resource that made the requestPractitioner or OrganizationReferenceYesNo
encounterReference to the Encounter resource during which the request was madeEncounter ReferenceNoNo
dosageInstructionHow the medication should be takenDosageNoNo

Supported Searches

Parameter(s)URL Template
patient[baseURL]/MedicationRequest?patient={reference}
patient+intent[baseURL]/MedicationRequest?patient={reference}&intent=order
patient+intent+status[baseURL]/MedicationRequest?patient={reference}&intent=order&status={token}

Request

  
  
https://webchartnow.com/fhirr4sandbox/webchart.cgi/fhir/MedicationRequest/23  
  
  

Response

  
  
{  
	"resourceType": "MedicationRequest",  
	"id": "23",  
	"status": "stopped",  
	"intent": "order",  
	"contained": [  
		{  
			"resourceType": "Medication",  
			"id": "289532",  
			"code": {  
				"coding": [  
					{  
						"system": "http://www.nlm.nih.gov/research/umls/rxnorm",  
						"code": "284215",  
						"display": "clindamycin HCl 300 MG Oral Capsule"  
					}  
				],  
				"text": "Clindamycin 300 MG Oral Capsule"  
			}  
		}  
	],  
	"medicationReference": {  
		"reference": "#289532",  
		"display": "clindamycin HCl 300 MG Oral Capsule"  
	},  
	"reportedBoolean": false,  
	"subject": {  
		"reference": "Patient/18",  
		"display": "William Hart",  
		"type": "Patient"  
	},  
	"authoredOn": "2004-03-15",  
	"requester": {  
		"reference": "Practitioner/55",  
		"display": "Selenium Selenium",  
		"type": "Practitioner"  
	},  
	"dosageInstruction": [  
		{  
			"text": "1 capsules prn"  
		}  
	]  
}  
  
  

Error Handling

HTTP CodeSeverityDescriptionExample
401ErrorUnauthorizedPermission Denied
403ErrorForbiddenAccess Denied
404ErrorWebsite Not FoundUnsupported Search Path Permission Denied
500ErrorInternal Server ErrorOut of Memory

Product Information

Product: WebChart EHR Version: 8.4 Release Date: September 1, 2022

Observation

Description

The Observation resource returns measurements and simple assertions made about a unique patient, device, or subject. A list of Observations for a specific patient can be returned when searching by that patient.

Standards

FHIR Version: R4 Observation Data Version: USCDI v1 Supported Profiles: US Core STU3 Laboratory Result Observation , US Core STU3 Pediatric BMI for Age Observation , US Core STU3 Pediatric Head Occipital-frontal Circumference Percentile Observation , US Core STU3 Pediatric Weight for Height Observation Observation , US Core STU3 Pulse Oximetry Observation , US Core STU3 Smoking Status Observation

Functions

FunctionHTTP MethodURL Template
Observation.READGET[baseURL]/Observation/{ID}
Observation.SEARCHGET[baseURL]/Observation?patient={reference}

Parameters

NameDescriptionData TypeRequiredSearchable
idObservation logical FHIR IDStringNoNo
metaMetadata about the ObservationMetadataNoNo
codeTest or measurement nameCodeableConceptYesYes
categoryClassification of the ObservationSliceYesYes
referenceRangeGuide for interpretation of the resultBackboneElementNoNo
subjectReference to the Patient Resource who the observation is aboutPatient ReferenceYesYes
effectiveDateTimeClinically relevant date for the ObservationdateTimeNoYes
issuedDate and time the Observation was made availableInstantNoNo
interpretationIndication of "normalcy" of the resultCodeableConceptNoNo
valueQuantityResult and units for the test or measurementQuantityNoNo
statusStatus of the result value
  • final

  • entered-in-error

CodeYesNo
componentUsed when reporting multi-part ObservationsSliceNoNo
noteComments about the ObservationAnnotationNoNo

Supported Searches

Parameter(s)URL Template
patient[baseURL]/Observation?patient={reference}
patient+code[baseURL]/Observation?patient={reference}&code={token}
patient+category[baseURL]/Observation?patient={reference}&category={token}
patient+category+date[baseURL]/Observation?patient={reference}&category={token}&date={date}

Request

  
  
https://webchartnow.com/fhirr4sandbox/webchart.cgi/fhir/Observation/175  
  
  

Response

  
  
{  
	"resourceType": "Observation",  
	"id": "179",  
	"meta": {  
		"profile": [  
			"http://hl7.org/fhir/us/core/StructureDefinition/us-core-observation-lab"  
		]  
	},  
	"code": {  
		"coding": [  
			{  
				"system": "http://loinc.org",  
				"code": "29463-7",  
				"display": "BODY WEIGHT"  
			}  
		],  
		"text": "BODY WEIGHT"  
	},  
	"category": [  
		{  
			"coding": [  
				{  
					"system": "http://terminology.hl7.org/CodeSystem/observation-category",  
					"code": "vital-signs",  
					"display": "Vital Signs"  
				}  
			],  
			"text": "Vital Signs"  
		},  
		{  
			"coding": [  
				{  
					"system": "http://terminology.hl7.org/CodeSystem/observation-category",  
					"code": "laboratory",  
					"display": "Laboratory"  
				}  
			],  
			"text": "Laboratory"  
		}  
	],  
	"subject": {  
		"reference": "Patient/18",  
		"display": "William Hart"  
	},  
	"effectiveDateTime": "2009-07-06T19:11:00Z",  
	"issued": "2009-07-06T19:11:00Z",  
	"interpretation": [  
		{  
			"coding": [  
				{  
					"system": "http://terminology.hl7.org/CodeSystem/v3-ObservationInterpretation",  
					"code": "N",  
					"display": "Normal"  
				}  
			],  
			"text": "Normal"  
		}  
	],  
	"valueQuantity": {  
		"value": 180,  
		"unit": "[lb_av]",  
		"system": "http://unitsofmeasure.org",  
		"code": "[lb_av]"  
	},  
	"status": "final"  
}  
  
  

Error Handling

HTTP CodeSeverityDescriptionExample
401ErrorUnauthorizedPermission Denied
403ErrorForbiddenAccess Denied
404ErrorWebsite Not FoundUnsupported Search Path Permission Denied
500ErrorInternal Server ErrorOut of Memory

Product Information

Product: WebChart EHR Version: 8.4 Release Date: September 1, 2022

Organization

Description

The Organization resource returns data regarding a recognized group formed for the purpose of achieving a collective action, such as companies, institutions, departments, healthcare practices, and payers. A list of Organizations can be returned when searching by name or address.

Standards

FHIR Version: R4 Organization Data Version: USCDI v1 Supported Profiles: US Core STU3 Organization

Functions

FunctionHTTP MethodURL Template
Organization.READGET[baseURL]/Organization/{ID}
Organization.SEARCHGET[baseURL]/Organization?name={token}

Parameters

NameDescriptionData TypeRequiredSearchable
idOrganization logical FHIR IDStringNoNo
identifierNPI for the OrganizationSliceNoYes
activeWhether the Organization is still in active useBooleanYesNo
nameName associated with the OrganizationStringYesYes
telcomContact details for the OrganizationContactPointNoNo
addressPhysical location of the OrganizationAddressNoYes
partOfReference to an Organization resource to which the Organization belongsOrganization ReferenceNoNo

Supported Searches

Parameter(s)URL Template
name[baseURL]/Organization?name={token}
address[baseURL]/Organization?address={token}
npi[baseURL]/Organization?npi={token}

Request

  
  
https://webchartnow.com/fhirr4sandbox/webchart.cgi/fhir/Organization/41  
  
  

Response

  
  
{  
	"resourceType": "Organization",  
	"id": "41",  
	"identifier": [  
		{  
			"system": "http://hl7.org/fhir/sid/us-npi",  
			"value": "1111111112"  
		}  
	],  
	"active": true,  
	"name": "Better Corp",  
	"telecom": [  
		{  
			"system": "phone",  
			"value": "6504596270"  
		}  
	],  
	"address": [  
		{  
			"line": [  
				"1700 Amphitheatre Parkway"  
			],  
			"city": "Mountain View",  
			"state": "CA",  
			"postalCode": "94043",  
			"country": "US"  
		}  
	]  
}  
  
  

Error Handling

HTTP CodeSeverityDescriptionExample
401ErrorUnauthorizedPermission Denied
403ErrorForbiddenAccess Denied
404ErrorWebsite Not FoundUnsupported Search Path Permission Denied
500ErrorInternal Server ErrorOut of Memory

Product Information

Product: WebChart EHR Version: 8.4 Release Date: September 1, 2022

Patient

Description

The Patient resource returns demographic and other administrative information about an individual receiving health-related services. A list of patients can be returned when searching by demographic information.

Standards

FHIR Version: R4 Patient Data Version: USCDI v1 Supported Profiles: US Core STU3 Patient

Functions

FunctionHTTP MethodURL Template
Patient.READGET[baseURL]/Patient/{ID}
Patient.SEARCHGET[baseURL]/Patient?_id={ID}

Parameters

NameDescriptionData TypeRequiredSearchable
idPatient logical FHIR IDStringNoYes
identifierAdditional business identifier for the PatientIdentifierYesYes
nameName associated with the PatientHumanNameYesYes
telcomContact details for the PatientContactPointNoNo
addressAddress for the PatientAddressNoNo
genderAdministrative gender
  • male

  • female

  • unknown

  • other

CodeYesYes
birthDateDate of birthDateNoYes
deceasedDateTimeDeath date of the PatientdateTimeNoNo
deceasedBooleanIndicator if the Patient is deceasedBooleanNoNo
maritalStatusMost recent civil marital statusCodeableConceptNoNo
extensionRace, ethnicity, and/or birth sex of the PatientComplexNoNo
communicationPreferred language to be used when communicating with the PatientBackboneElementNoNo
generalPractitionerReference to the Practitioner or Organization resource acting as the primary care providerPractitioner or Organization ReferenceNoNo

Supported Searches

Parameter(s)URL Template
_id[baseURL]/Patient?_id={ID}
identifier[baseURL]/Patient?identifier={token}
name[baseURL]/Patient?name={token}
name+birthdate[baseURL]/Patient?name={token}&birthdate={date}
name+gender[baseURL]/Patient?name={token}&gender={token}

Request

  
  
https://webchartnow.com/fhirr4sandbox/webchart.cgi/fhir/Patient/18  
  
  

Response

  
  
{  
	"resourceType": "Patient",  
	"id": "18",  
	"identifier": [  
		{  
			"use": "usual",  
			"type": {  
				"coding": [  
					{  
						"system": "http://terminology.hl7.org/CodeSystem/v2-0203",  
						"code": "MR"  
					}  
				],  
				"text": "MR"  
			},  
			"system": "urn:oid:1.2.840.114398.1.660376160187469368594400296994359.1.2",  
			"value": "10019"  
		}  
	],  
	"name": [  
		{  
			"use": "official",  
			"family": "Hart",  
			"given": [  
				"William",  
				"S."  
			]  
		}  
	],  
	"telecom": [  
		{  
			"system": "phone",  
			"value": "2604440099",  
			"use": "home"  
		},  
		{  
			"system": "phone",  
			"value": "2604370001",  
			"use": "mobile"  
		},  
		{  
			"system": "email",  
			"value": "nrichardson@mieweb.com"  
		}  
	],  
	"address": [  
		{  
			"use": "home",  
			"line": [  
				"2300 Commonwealth Avenue"  
			],  
			"city": "Fort Wayne",  
			"district": "Allen",  
			"state": "IN",  
			"postalCode": "46804",  
			"country": "US",  
			"period": {  
				"start": "2022-08-05"  
			}  
		},  
		{  
			"use": "work",  
			"district": "Allen",  
			"state": "IN",  
			"country": "US",  
			"period": {  
				"start": "2022-08-05"  
			}  
		}  
	],  
	"gender": "male",  
	"birthDate": "1954-11-30",  
	"deceasedBoolean": false,  
	"maritalStatus": {  
		"coding": [  
			{  
				"system": "http://terminology.hl7.org/CodeSystem/v3-MaritalStatus",  
				"code": "M"  
			}  
		]  
	},  
	"extension": [  
		{  
			"url": "http://hl7.org/fhir/us/core/StructureDefinition/us-core-race",  
			"extension": [  
				{  
					"url": "ombCategory",  
					"valueCoding": {  
						"system": "urn:oid:2.16.840.1.113883.6.238",  
						"code": "2028-9",  
						"display": "Asian"  
					}  
				},  
				{  
					"url": "ombCategory",  
					"valueCoding": {  
						"system": "urn:oid:2.16.840.1.113883.6.238",  
						"code": "2106-3",  
						"display": "White"  
					}  
				},  
				{  
					"url": "text",  
					"valueString": "mixed"  
				}  
			]  
		},  
		{  
			"url": "http://hl7.org/fhir/us/core/StructureDefinition/us-core-ethnicity",  
			"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"  
				}  
			]  
		},  
		{  
			"url": "http://hl7.org/fhir/us/core/StructureDefinition/us-core-birthsex",  
			"valueCode": "M"  
		},  
		{  
			"url": "http://hl7.org/fhir/us/core/StructureDefinition/us-core-genderIdentity",  
			"valueCodeableConcept": {  
				"coding": [  
					{  
						"system": "urn:oid:2.16.840.1.113762.1.4.1021.32",  
						"code": "",  
						"display": "Identifies as Female"  
					}  
				]  
			}  
		}  
	],  
	"communication": [  
		{  
			"language": {  
				"coding": [  
					{  
						"system": "urn:ietf:bcp:47",  
						"code": "en",  
						"display": "English"  
					}  
				],  
				"text": "English"  
			}  
		}  
	],  
	"generalPractitioner": [  
		{  
			"reference": "Practitioner/9"  
		}  
	],  
	"active": true  
}  
  
  

Error Handling

HTTP CodeSeverityDescriptionExample
401ErrorUnauthorizedPermission Denied
403ErrorForbiddenAccess Denied
404ErrorWebsite Not FoundUnsupported Search Path Permission Denied
500ErrorInternal Server ErrorOut of Memory

Product Information

Product: WebChart EHR Version: 8.4 Release Date: September 1, 2022

Practitioner

Description

The Practitioner resource returns data regarding a person who is direct or indirectly involved in the provisioning of healthcare. A list of Practitioners can be returned when searching by name or identifier.

Standards

FHIR Version: R4 Practitioner Data Version: USCDI v1 Supported Profiles: US Core STU3 Practitioner

Functions

FunctionHTTP MethodURL Template
Practitioner.READGET[baseURL]/Practitioner/{ID}
Practitioner.SEARCHGET[baseURL]/Practitioner?name={token}

Parameters

NameDescriptionData TypeRequiredSearchable
idPractitioner logical FHIR IDStringNoYes
identifierNPIIdentifierYesYes
nameName associated with the PractitionerHumanNameYesYes
telcomContact details for the PractitionerContactPointNoNo
addressAddress for the PractitionerAddressNoNo
genderAdministrative gender
  • male

  • female

  • unknown

  • other

CodeNoYes
communicationLanguages the Practitioner can use in patient communicationCodeableConceptNoNo
activeIndicator of if the Practitioner is in active useBooleanNoNo

Supported Searches

Parameter(s)URL Template
name[baseURL]/Practitioner?name={token}
identifier[baseURL]/Practitioner?identifier={token}

Request

  
  
https://webchartnow.com/fhirr4sandbox/webchart.cgi/fhir/Practitioner/88  
  
  

Response

  
  
{  
	"resourceType": "Practitioner",  
	"id": "88",  
	"identifier": [  
		{  
			"use": "usual",  
			"system": "urn:oid:1.2.840.114398.1.660376160187469368594400296994359.999.31",  
			"value": "88"  
		}  
	],  
	"name": [  
		{  
			"use": "official",  
			"family": "Sample",  
			"given": [  
				"John",  
				"M."  
			]  
		}  
	],  
	"telecom": [  
		{  
			"system": "phone",  
			"value": "2604596270",  
			"use": "work"  
		},  
		{  
			"system": "fax",  
			"value": "2604596271"  
		},  
		{  
			"system": "email",  
			"value": "nrichardson@mieweb.com"  
		}  
	],  
	"address": [  
		{  
			"use": "home",  
			"country": "US",  
			"period": {  
				"start": "2022-08-05"  
			}  
		},  
		{  
			"use": "work",  
			"line": [  
				"6302 Constitution Drive"  
			],  
			"city": "Fort Wayne",  
			"state": "IN",  
			"postalCode": "46804",  
			"country": "US",  
			"period": {  
				"start": "2022-08-05"  
			}  
		}  
	],  
	"gender": "unknown",  
	"active": true  
}  
  
  

Error Handling

HTTP CodeSeverityDescriptionExample
401ErrorUnauthorizedPermission Denied
403ErrorForbiddenAccess Denied
404ErrorWebsite Not FoundUnsupported Search Path Permission Denied
500ErrorInternal Server ErrorOut of Memory

Product Information

Product: WebChart EHR Version: 8.4 Release Date: September 1, 2022

PractitionerRole

Description

The PractitionerRole resource returns data regarding a set of roles, locations, specialties, and/or services that a practitioner may perform at a designated organization.

Standards

FHIR Version: R4 PractitionerRole Data Version: USCDI v1 Supported Profiles: US Core STU3 PractitionerRole

Functions

FunctionHTTP MethodURL Template
PractitionerRole.READGET[baseURL]/PractitionerRole/{ID}

Parameters

NameDescriptionData TypeRequiredSearchable
idPractitionerRole logical FHIR IDStringNoNo
practitionerReference to the Practitioner resource that is able to provide the defined services for the OrganizationPractitioner ReferenceYesNo
organizationReference to the Organization resource where roles are availableOrganization ReferenceYesNo
codeRoles this practitioner may performCodeableConceptNoNo
specialtySpecific specialty of the practitionerCodeableConceptNoNo
locationReference to the Location reference where the practitioner provides careLocation ReferenceNoNo
telecomContact details specific to the role/location/serviceContactPointYesNo
endpointReference to the Endpoint resources describing the technical endpoints providing access to servicesEndpoint ReferenceNoNo

Supported Searches

Parameter(s)URL Template

Request

  
  
https://webchartnow.com/fhirr4sandbox/webchart.cgi/fhir/PractitionerRole/1  
  
  

Response

  
  
{  
	"resourceType": "PractitionerRole",  
	"id": "1",  
	"active": true,  
	"practitioner": {  
		"reference": "Practitioner/88",  
		"display": "John M. Sample"  
	},  
	"code": [  
		{  
			"coding": [  
				{  
					"system": "urn:oid:1.2.840.114350.1.13.861.1.7.10.836982.1040",  
					"code": "1",  
					"display": "Physician"  
				}  
			],  
			"text": "Physician"  
		}  
	],  
	"specialty": [  
		{  
			"coding": [  
				{  
					"system": "urn:oid:1.2.840.114350.1.72.1.7.7.10.688867.4160",  
					"code": "19",  
					"display": "Family Practice"  
				}  
			],  
			"text": "Family Practice"  
		}  
	]  
}  
  
  

Error Handling

HTTP CodeSeverityDescriptionExample
401ErrorUnauthorizedPermission Denied
403ErrorForbiddenAccess Denied
404ErrorWebsite Not FoundUnsupported Search Path Permission Denied
500ErrorInternal Server ErrorOut of Memory

Product Information

Product: WebChart EHR Version: 8.4 Release Date: September 1, 2022

Procedure

Description

The Procedure resource returns data regarding a physical or non-physical action that was performed on or for a patient. A list of procedures can be returned for a specific patient when searching by that patient.

Standards

FHIR Version: R4 Procedure Data Version: USCDI v1 Supported Profiles: US Core STU3 Procedure

Functions

FunctionHTTP MethodURL Template
Procedure.READGET[baseURL]/Procedure/{ID}
Procedure.SEARCHGET[baseURL]/Procedure?patient={reference}

Parameters

NameDescriptionData TypeRequiredSearchable
idProvider logical FHIR IDStringNoYes
statusState of the Procedure
  • completed

  • entered

CodeYesNo
codeIdentification of the specific Procedure performedCodeableConceptYesNo
subjectReference to the Patient resource who the Procedure was performed onPatient ReferenceYesYes
performedDateTimeDate the Procedure was performeddateTimeYesYes

Supported Searches

Parameter(s)URL Template
_id[baseURL]/Procedure?_id={ID}
patient[baseURL]/Procedure?patient={reference}
patient+date[baseURL]/Procedure?patient={reference}&date={date}

Request

  
  
https://webchartnow.com/fhirr4sandbox/webchart.cgi/fhir/Procedure/77  
  
  

Response

  
  
{  
	"resourceType": "Procedure",  
	"id": "77",  
	"status": "completed",  
	"code": {  
		"coding": [  
			{  
				"system": "http://snomed.info/sct",  
				"code": "408754009"  
			}  
		],  
		"text": "CT scan of head"  
	},  
	"subject": {  
		"reference": "Patient/18"  
	},  
	"performedDateTime": "2013-01-03"  
}  
  
  

Error Handling

HTTP CodeSeverityDescriptionExample
401ErrorUnauthorizedPermission Denied
403ErrorForbiddenAccess Denied
404ErrorWebsite Not FoundUnsupported Search Path Permission Denied
500ErrorInternal Server ErrorOut of Memory

Product Information

Product: WebChart EHR Version: 8.4 Release Date: September 1, 2022

Provenance

Description

The Provenance resource contains information for assessing authenticity, enabling trust, and allowing reproducibility by describing the entities and processes involved in producing, delivering, or influencing another resource.

Standards

FHIR Version: R4 Provenance Data Version: USCDI v1 Supported Profiles: US Core STU3 Provenance

Functions

FunctionHTTP MethodURL Template
Provenance.READGET[baseURL]/Provenance?_id={ID}
Provenance.SEARCHGET[baseURL]/[Resource]?_id={ID}&_revinclude=Provenance:target

Parameters

NameDescriptionData TypeRequiredSearchable
idProvenance logical FHIR IDStringNoYes
targetReference to the Resource the Provenance record supportsReferenceYesNo
recordedTimestamp when the Resource was recordedInstantYesNo
agentActor involved in recording the ResourceSliceYesNo

Supported Searches

Parameter(s)URL Template

Request

  
  
https://webchartnow.com/fhirr4sandbox/webchart.cgi/fhir/Provenance/Patient-18  
  
  

Response

  
  
{  
	"resourceType": "Provenance",  
	"id": "Patient-18",  
	"target": [  
		{  
			"reference": "Patient/18"  
		}  
	],  
	"recorded": "2022-08-05T18:33:42Z",  
	"agent": [  
		{  
			"type": {  
				"coding": [  
					{  
						"system": "http://terminology.hl7.org/CodeSystem/provenance-participant-type",  
						"code": "author",  
						"display": "Author"  
					}  
				]  
			},  
			"who": {  
				"reference": "Organization/41"  
			},  
			"onBehalfOf": {  
				"reference": "Organization/41"  
			}  
		}  
	]  
}  
  
  

Error Handling

HTTP CodeSeverityDescriptionExample
401ErrorUnauthorizedPermission Denied
403ErrorForbiddenAccess Denied
404ErrorWebsite Not FoundUnsupported Search Path Permission Denied
500ErrorInternal Server ErrorOut of Memory

Product Information

Product: WebChart EHR Version: 8.4 Release Date: September 1, 2022


Enterprise Health Documentation

Last Updated:

Last Build: Sun, 12 Nov 2023 11:20:14 UTC
WikiGDrive Version: 74f4d1b504045661a4a97b0e3aea1d65b95f37ab