You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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