Skip to content

Commit 0e87ccc

Browse files
committed
Add patient-info
1 parent 8756739 commit 0e87ccc

File tree

1 file changed

+59
-0
lines changed

1 file changed

+59
-0
lines changed
Lines changed: 59 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,59 @@
1+
---
2+
title: Onco Phenotype patient info
3+
titleSuffix: Project Health Insights
4+
description: This article describes how and which patient information can be sent to the Onco Phenotype model
5+
services: azure-health-insights
6+
author: iBoonZ
7+
manager: urieinav
8+
ms.service: azure-health-insights
9+
ms.topic: overview
10+
ms.date: 02/02/2023
11+
ms.author: behoorne
12+
---
13+
14+
15+
# Onco Phenotype patient info
16+
17+
The Onco Phenotype currently can receive patient information in the form of unstructured clinical notes.
18+
The payload should contain a ```patients``` section with one or more objects where the ```data``` property contains one or more JSON object of ```kind``` "note".
19+
20+
21+
## Example request
22+
23+
In this example, the Onco Phenotype model receives patient information in the form of unstructured clinical notes.
24+
25+
```json
26+
{
27+
"configuration": {
28+
"checkForCancerCase": true,
29+
"includeEvidence": false
30+
},
31+
"patients": [
32+
{
33+
"id": "patient1",
34+
"data": [
35+
{
36+
"kind": "note",
37+
"clinicalType": "pathology",
38+
"id": "document1",
39+
"language": "en",
40+
"createdDateTime": "2022-01-01T00:00:00",
41+
"content": {
42+
"sourceType": "inline",
43+
"value": "Laterality: Left \n Tumor type present: Invasive duct carcinoma; duct carcinoma in situ \n Tumor site: Upper inner quadrant \n Invasive carcinoma \n Histologic type: Ductal \n Size of invasive component: 0.9 cm \n Histologic Grade - Nottingham combined histologic score: 1 out of 3 \n In situ carcinoma (DCIS) \n Histologic type of DCIS: Cribriform and solid \n Necrosis in DCIS: Yes \n DCIS component of invasive carcinoma: Extensive \n"
44+
}
45+
}
46+
]
47+
}
48+
]
49+
}
50+
```
51+
52+
53+
54+
## Next steps
55+
56+
To get started using the Onco Phenotype model:
57+
58+
>[!div class="nextstepaction"]
59+
> [Deploy the service via the portal](../deploy-portal.md)

0 commit comments

Comments
 (0)