Files
marka/registry/schema-org/MedicalSignOrSymptom.schema.json
Max Richter c687eff53d big tings
2025-08-17 15:16:17 +02:00

23 lines
874 B
JSON

{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "schema:MedicalSignOrSymptom",
"title": "MedicalSignOrSymptom",
"description": "Any feature associated or not with a medical condition. In medicine a symptom is generally subjective while a sign is objective.",
"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": {
"possibleTreatment": {
"description": "A possible treatment to address this condition, sign or symptom.",
"oneOf": [
{ "$ref": "schema:MedicalTherapy" },
{ "type": "array", "items": { "$ref": "schema:MedicalTherapy" } }
]
}
}
}