put https://fhir-api.zapehr.com/r4b/ResearchSubject/
ResearchSubject on the FHIR specification website.
A physical entity which is the primary unit of operational and/or administrative interest in a study.
The body should be a valid FHIR object for ResearchSubject.
Here is an example:
{
"resourceType": "ResearchSubject",
"id": "example",
"text": {
"status": "generated",
"div": "<div xmlns=\"http://www.w3.org/1999/xhtml\">[Put rendering here]</div>"
},
"identifier": [
{
"type": {
"text": "Subject id"
},
"system": "http://example.org/studysubjectids",
"value": "123"
}
],
"status": "candidate",
"study": {
"reference": "ResearchStudy/example"
},
"individual": {
"reference": "Patient/example"
}
}
You can reference the FHIR documentation to determine the format for ResearchSubject
.