Skip to content

Commit bb2d34a

Browse files
authored
Representing Negative Findings (#242)
* Representing Negative Findings Representing Negative Findings * Updated Observation.code Updated Observation.code * Observation-SLC52A2-VariantAbsent-Example Update Observation-SLC52A2-VariantAbsent-Example
1 parent 867a31a commit bb2d34a

2 files changed

Lines changed: 111 additions & 0 deletions

File tree

Lines changed: 67 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,67 @@
1+
{
2+
"resourceType": "Observation",
3+
"id": "Observation-SLC52A2-VariantAbsent-Example",
4+
"status": "final",
5+
"category": [
6+
{
7+
"coding": [
8+
{
9+
"system": "http://terminology.hl7.org/CodeSystem/observation-category",
10+
"code": "laboratory"
11+
}
12+
]
13+
},
14+
{
15+
"coding": [
16+
{
17+
"system": "http://terminology.hl7.org/CodeSystem/v2-0074",
18+
"code": "GE"
19+
}
20+
]
21+
}
22+
],
23+
"code": {
24+
"coding": [
25+
{
26+
"system": "http://loinc.org",
27+
"code": "69548-6",
28+
"display": "Genetic variant assessment"
29+
},
30+
{
31+
"system": "http://snomed.info/sct",
32+
"code": "414755005",
33+
"display": "Molecular, genetic AND/OR cellular observable"
34+
}
35+
]
36+
},
37+
"subject": {
38+
"reference": "Patient/Patient-PheobeSmitham-Example"
39+
},
40+
"effectiveDateTime": "2023-09-16",
41+
"valueCodeableConcept": {
42+
"coding": [
43+
{
44+
"system": "http://snomed.info/sct",
45+
"code": "260415000",
46+
"display": "Not detected"
47+
},
48+
{
49+
"system": "http://loinc.org",
50+
"code": "LA9634-2",
51+
"display": "Absent"
52+
}
53+
],
54+
"text": "Variant not detected"
55+
},
56+
"method": [
57+
{
58+
"coding": [
59+
{
60+
"system": "http://snomed.info/sct",
61+
"code": "117040002",
62+
"display": "Nucleic acid sequencing"
63+
}
64+
]
65+
}
66+
]
67+
}
Lines changed: 44 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,44 @@
1+
{
2+
"resourceType": "Observation",
3+
"id": "Observation-SeizurePhenotypeAbsent-Example",
4+
"status": "final",
5+
"category": [
6+
{
7+
"coding": [
8+
{
9+
"system": "http://terminology.hl7.org/CodeSystem/observation-category",
10+
"code": "exam"
11+
}
12+
]
13+
}
14+
],
15+
"code": {
16+
"coding": [
17+
{
18+
"system": "http://human-phenotype-ontology.org",
19+
"version": "20221005",
20+
"code": "HP:0001250",
21+
"display": "Seizure"
22+
}
23+
]
24+
},
25+
"subject": {
26+
"reference": "Patient/Patient-PheobeSmitham-Example"
27+
},
28+
"effectiveDateTime": "2023-09-16",
29+
"valueCodeableConcept": {
30+
"coding": [
31+
{
32+
"system": "http://snomed.info/sct",
33+
"code": "260415000",
34+
"display": "Not detected"
35+
},
36+
{
37+
"system": "http://loinc.org",
38+
"code": "LA9634-2",
39+
"display": "Absent"
40+
}
41+
],
42+
"text": "Phenotype not present"
43+
}
44+
}

0 commit comments

Comments
 (0)