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
Copy file name to clipboardExpand all lines: docs/lab/results/result-formats.mdx
+42Lines changed: 42 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -66,6 +66,8 @@ is_below_min_range: bool | None
66
66
interpretation: str= Interpretation.NORMAL
67
67
loinc: str|None
68
68
loinc_slug: str|None
69
+
provider_id: str|None
70
+
source_markers: List[ParentBiomarkerData] |None
69
71
```
70
72
71
73
#### ResultType
@@ -102,6 +104,7 @@ Interpretation is a string value that can be one of the following:
102
104
3.`Interpretation.CRITICAL` - The result is outside of critical parameters.
103
105
In this case, refer to the [critical values](/lab/workflow/lab-test-lifecycle#critical-results) section.
104
106
107
+
105
108
#### Standardisation - LOINC
106
109
107
110
It's possible to test the same biomarkers across different laboratories. For these to match, we use the [LOINC](https://loinc.org/) standard.
@@ -215,6 +218,44 @@ In order to obtain this data, you can use the following endpoints:
215
218
216
219
This allows you to see all markers associated with a lab test and it's expected results.
217
220
221
+
#### Source Markers
222
+
223
+
As mentioned above, a marker can be composed of one or more results. This means that if you order a `Lipid Panel`, there will be no `Lipid Panel` result returned, but instead a series of markers that originate from the `Lipid Panel`.
224
+
225
+
Vital identifies the source marker via the `source_markers` field.
When Vital cannot identify the source, then this field will be `null`, indicating that this is an unsolicited result.
257
+
There may also be more than one `source` marker, if there are two or more ordered markers that contain the same underlying result, using the same testing method.
0 commit comments