POST request to /patient/matches to the Bowhead Navigator API, the Bundle is validated. If there are errors, it responds with an OperationOutcome.https://bw.navigator.api
POST /patients/matches
application/json or application/xml are supported.json and xml. The default format is json.{
"resourceType": "Bundle",
"type": "collection",
"entry": [
{
"resource": {
"resourceType": "Bundle",
"type": "collection",
"entry": [
{
"fullUrl": "urn:uuid:patient1",
"resource": {
"resourceType": "Patient",
"id": "patient1",
"identifier": [
{
"system": "http://example.org/fhir/patient",
"value": "12345"
}
],
"name": [
{
"family": "Doe",
"given": [
"John"
]
}
],
"birthDate": "1970-01-01",
"gender": "male"
}
},
{
"fullUrl": "urn:uuid:obs1",
"resource": {
"resourceType": "Observation",
"id": "obs1",
"status": "final",
"code": {
"coding": [
{
"system": "http://loinc.org",
"code": "29463-7",
"display": "Body weight"
}
],
"text": "Body weight"
},
"subject": {
"reference": "Patient/patient1"
},
"effectiveDateTime": "2024-06-13T12:00:00Z",
"valueQuantity": {
"value": 68,
"unit": "kg",
"system": "http://unitsofmeasure.org",
"code": "kg"
}
}
},
{
"fullUrl": "urn:uuid:cond1",
"resource": {
"resourceType": "Condition",
"id": "cond1",
"code": {
"coding": [
{
"system": "http://snomed.info/sct",
"code": "254637007",
"display": "Malignant tumor of breast"
}
],
"text": "Breast Cancer"
},
"subject": {
"reference": "Patient/patient1"
},
"verificationStatus": {
"coding": [
{
"system": "http://terminology.hl7.org/CodeSystem/condition-ver-status",
"code": "confirmed",
"display": "Confirmed"
}
]
}
}
}
]
}
},
],
"meta": {
"extension": [
{
"url": "https://bowheadhealth.com/fhir/extensions/callbackurl",
"valueUrl": "https://yourapi.com/matches"
}
]
}
}
{
"resourceType": "OperationOutcome",
"issue": [
{
"severity": "error",
"code": "invalid",
"details": {
"text": "Match could not be processed or failed basic FHIR validation rules."
},
"diagnostics": "Error in match parameters."
}
]
}
{
"resourceType": "OperationOutcome",
"issue": [
{
"severity": "error",
"code": "forbidden",
"details": {
"text": "Authorization is required for the interaction that was attempted."
},
"diagnostics": "No authorization token provided."
}
]
}
Result objects.Result represents a patient's potential match with one or more clinical trials.Result includes a patient identifier and a list of Match objects.Match object represents a specific clinical trial and includes a list of inclusion and exclusion criteria, defined as Criterion objects.Result, Match, and Criterion objects:| Property | Description |
|---|---|
| patientId | The unique identifier for the patient. |
| matches | A list of Match objects representing potential matches to clinical trials for the patient. |
| Property | Description |
|---|---|
| NCTId | The unique identifier for the clinical trial (NCT number). |
| investigatorFullName | The full name of the lead investigator for the clinical trial. |
| leadSponsor | The lead sponsor of the clinical trial. |
| location | A list of locations where the clinical trial is being conducted, each with city, country, facility, geoPoint (latitude and longitude), state, and zip code information. |
| criteriasList | An object containing lists of inclusion and exclusion criteria (Criterion objects). |
| match | A boolean indicating if the patient matches the clinical trial. |
| matchPercentage | The percentage of criteria that the patient meets for the clinical trial. |
| phase | The phase of the clinical trial. |
| startStudyTime | The start date of the clinical trial. |
| status | The current status of the clinical trial (e.g., RECRUITING). |
| studyTime | The estimated completion date of the clinical trial. |
| studyType | The type of clinical trial (e.g., INTERVENTIONAL). |
| summary | A brief summary of the clinical trial. |
| title | The title of the clinical trial. |
| url | The URL to the clinical trial's detailed information page. |
| Property | Description |
|---|---|
| description | A description of the criterion. |
| eligibility | Indicates whether the patient's information meets the criterion (true), does not meet the criterion (false), or if there is not enough information to evaluate (null). |
| evidence | The evidence supporting the evaluation of the criterion. |
| key | A unique identifier for the criterion within the clinical trial. (Only included in inclusion criteria) |
[
{
"patientId": "7539005245812",
"matches": [
{
"NCTId": "NCT05245812",
"investigatorFullName": "Deborah Farr, MD",
"leadSponsor": "Deborah Farr, MD",
"location": [
{
"city": "Dallas",
"country": "United States",
"facility": "UT Southwestern",
"geoPoint": {
"lat": 32.78306,
"lon": -96.80667
},
"state": "Texas",
"zip": "75390"
}
],
"criteriasList": {
"exclusion_criteria": [
{
"description": "Inability to provide informed consent",
"eligibility": null,
"evidence": "Eligibility not confirmed due to incomplete data"
},
{
"description": "Pregnant or nursing women",
"eligibility": null,
"evidence": "Eligibility not confirmed due to incomplete data"
}
],
"inclusion_criteria": [
{
"description": "Minimum age 18 Years and Maximum age 80 Years",
"eligibility": true,
"evidence": "System question: What is the patient's age? - Answer:30",
"key": "NCT05245812C0001779"
},
{
"description": "Eastern Cooperative Oncology Group (ECOG) performance status of 0 or 1",
"eligibility": true,
"evidence": "System question: What is the patient's ECOG Performance Status? - Answer:ECOG1",
"key": "NCT05245812C1520224"
}
]
},
"match": true,
"matchPercentage": 75,
"phase": "NA",
"startStudyTime": "2022-03-08",
"status": "RECRUITING",
"studyTime": "2026-02",
"studyType": "INTERVENTIONAL",
"summary": "This is a single arm, single-center, prospective clinical trial designed to track the peri, post-operative and oncologic outcomes when utilizing the da-Vinci single port (SP) robotic platform to perform robotic nipple sparing mastectomy (rNSM) and immediate breast reconstruction with tissue expanders/implants and acellular dermal matrix (ADM - Alloderm), for patients with breast cancer as well as those with a high risk for breast cancer.\n\nSafety and feasibility measures will be measured as primary outcome measures. Oncological and patient satisfaction outcome measures will be measured. Our hypothesis is that SPr-NSM is equal to open NSM in terms of safety, feasibility and oncological outcomes with improved patient satisfaction as measured by nipple sensation and patient reported outcomes.",
"title": "Safety and Feasibility of Robotic SP Nipple Sparing Mastectomy",
"url": "https://www.clinicaltrials.gov/study/NCT05245812"
}
]
}
]