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

23 lines
685 B
JSON

{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "schema:DiagnosticLab",
"title": "DiagnosticLab",
"description": "A medical laboratory that offers on-site or off-site diagnostic services.",
"type": "object",
"allOf": [
{
"description": "A medical organization (physical or not), such as hospital, institution or clinic.",
"$ref": "schema:MedicalOrganization"
}
],
"properties": {
"availableTest": {
"description": "A diagnostic test or procedure offered by this lab.",
"oneOf": [
{ "$ref": "schema:MedicalTest" },
{ "type": "array", "items": { "$ref": "schema:MedicalTest" } }
]
}
}
}