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

23 lines
613 B
JSON

{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "schema:MedicalTestPanel",
"title": "MedicalTestPanel",
"description": "Any collection of tests commonly ordered together.",
"type": "object",
"allOf": [
{
"description": "Any medical test, typically performed for diagnostic purposes.",
"$ref": "schema:MedicalTest"
}
],
"properties": {
"subTest": {
"description": "A component test of the panel.",
"oneOf": [
{ "$ref": "schema:MedicalTest" },
{ "type": "array", "items": { "$ref": "schema:MedicalTest" } }
]
}
}
}