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,36 @@
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "schema:TherapeuticProcedure",
"title": "TherapeuticProcedure",
"description": "A medical procedure intended primarily for therapeutic purposes, aimed at improving a health condition.",
"type": "object",
"allOf": [
{
"description": "A process of care used in either a diagnostic, therapeutic, preventive or palliative capacity that relies on invasive (surgical), non-invasive, or other techniques.",
"$ref": "schema:MedicalProcedure"
}
],
"properties": {
"adverseOutcome": {
"description": "A possible complication and/or side effect of this therapy. If it is known that an adverse outcome is serious (resulting in death, disability, or permanent damage; requiring hospitalization; or otherwise life-threatening or requiring immediate medical attention), tag it as a seriousAdverseOutcome instead.",
"oneOf": [
{ "$ref": "schema:MedicalEntity" },
{ "type": "array", "items": { "$ref": "schema:MedicalEntity" } }
]
},
"doseSchedule": {
"description": "A dosing schedule for the drug for a given population, either observed, recommended, or maximum dose based on the type used.",
"oneOf": [
{ "$ref": "schema:DoseSchedule" },
{ "type": "array", "items": { "$ref": "schema:DoseSchedule" } }
]
},
"drug": {
"description": "Specifying a drug or medicine used in a medication procedure.",
"oneOf": [
{ "$ref": "schema:Drug" },
{ "type": "array", "items": { "$ref": "schema:Drug" } }
]
}
}
}