33 lines
1.5 KiB
JSON
33 lines
1.5 KiB
JSON
{
|
|
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
"$id": "schema:MedicalGuideline",
|
|
"title": "MedicalGuideline",
|
|
"description": "Any recommendation made by a standard society (e.g. ACC/AHA) or consensus statement that denotes how to diagnose and treat a particular condition. Note: this type should be used to tag the actual guideline recommendation; if the guideline recommendation occurs in a larger scholarly article, use MedicalScholarlyArticle to tag the overall article, not this type. Note also: the organization making the recommendation should be captured in the recognizingAuthority base property of MedicalEntity.",
|
|
"type": "object",
|
|
"allOf": [
|
|
{
|
|
"description": "The most generic type of entity related to health and the practice of medicine.",
|
|
"$ref": "schema:MedicalEntity"
|
|
}
|
|
],
|
|
"properties": {
|
|
"evidenceLevel": {
|
|
"description": "Strength of evidence of the data used to formulate the guideline (enumerated).",
|
|
"$ref": "schema:MedicalEvidenceLevel"
|
|
},
|
|
"evidenceOrigin": {
|
|
"description": "Source of the data used to formulate the guidance, e.g. RCT, consensus opinion, etc.",
|
|
"type": "string"
|
|
},
|
|
"guidelineDate": {
|
|
"description": "Date on which this guideline's recommendation was made.",
|
|
"type": "string",
|
|
"format": "date"
|
|
},
|
|
"guidelineSubject": {
|
|
"description": "The medical conditions, treatments, etc. that are the subject of the guideline.",
|
|
"$ref": "schema:MedicalEntity"
|
|
}
|
|
}
|
|
}
|