-
Notifications
You must be signed in to change notification settings - Fork 45
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Deprecated speed, unit value and unit value range schemas, updated sy…
…stolic blood pressure schema to reference IEEE schemas
- Loading branch information
Showing
6 changed files
with
48 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
{ | ||
"$schema": "http://json-schema.org/draft-07/schema#", | ||
"$id": "https://w3id.org/openmhealth/schemas/omh/systolic-blood-pressure-1.1.json", | ||
"description": "This schema represents a person's systolic blood pressure.", | ||
"type": "object", | ||
"references": [ | ||
{ | ||
"description": "The SNOMED code represents systolic blood pressure (observable entity)", | ||
"url": "http://purl.bioontology.org/ontology/SNOMEDCT/271649006" | ||
} | ||
], | ||
|
||
"definitions": { | ||
"unit_value": { | ||
"$ref": "https://w3id.org/ieee/ieee-1752-schema/unit-value-1.0.json" | ||
} | ||
}, | ||
|
||
"allOf": [ | ||
{ | ||
"$ref": "#/definitions/unit_value" | ||
}, | ||
{ | ||
"properties": { | ||
"unit": { | ||
"enum": ["mmHg"] | ||
} | ||
} | ||
} | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
systolic-blood-pressure-1.0.json | ||
systolic-blood-pressure-1.1.json |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
volume-unit-value-1.0.json | ||
volume-unit-value-1.1.json |