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,30 @@
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "schema:InfectiousDisease",
"title": "InfectiousDisease",
"description": "An infectious disease is a clinically evident human disease resulting from the presence of pathogenic microbial agents, like pathogenic viruses, pathogenic bacteria, fungi, protozoa, multicellular parasites, and prions. To be considered an infectious disease, such pathogens are known to be able to cause this disease.",
"type": "object",
"allOf": [
{
"description": "Any condition of the human body that affects the normal functioning of a person, whether physically or mentally. Includes diseases, injuries, disabilities, disorders, syndromes, etc.",
"$ref": "schema:MedicalCondition"
}
],
"properties": {
"infectiousAgent": {
"description": "The actual infectious agent, such as a specific bacterium.",
"type": "string"
},
"infectiousAgentClass": {
"description": "The class of infectious agent (bacteria, prion, etc.) that causes the disease.",
"$ref": "schema:InfectiousAgentClass"
},
"transmissionMethod": {
"description": "How the disease spreads, either as a route or vector, for example 'direct contact', 'Aedes aegypti', etc.",
"oneOf": [
{ "type": "string" },
{ "type": "array", "items": { "type": "string" } }
]
}
}
}