big tings

This commit is contained in:
Max Richter
2025-08-17 15:16:17 +02:00
parent 40b9be887d
commit c687eff53d
958 changed files with 32279 additions and 704 deletions

View File

@@ -0,0 +1,22 @@
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "schema:MedicalGuidelineRecommendation",
"title": "MedicalGuidelineRecommendation",
"description": "A guideline recommendation that is regarded as efficacious and where quality of the data supporting the recommendation is sound.",
"type": "object",
"allOf": [
{
"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.",
"$ref": "schema:MedicalGuideline"
}
],
"properties": {
"recommendationStrength": {
"description": "Strength of the guideline's recommendation (e.g. 'class I').",
"oneOf": [
{ "type": "string" },
{ "type": "array", "items": { "type": "string" } }
]
}
}
}