Current section
Files
Jump to
Current section
Files
schema/Ratio.schema.json
{
"schema": "http://json-schema.org/draft-07/schema#",
"$id": "https://hl7.erp.uno/schema/Ratio.schema.json",
"$ref": "#/definitions/Ratio",
"description": "see https://hl7.org/fhir/R5/json.html for information about the FHIR Json Schemas",
"definitions": {
"Ratio": {
"allOf": [
{
"description": "A relationship of two Quantity values - expressed as a numerator and a denominator.",
"properties": {
"numerator": {
"description": "The value of the numerator.",
"$ref": "Quantity.schema.json#/definitions/Quantity"
},
"denominator": {
"description": "The value of the denominator.",
"$ref": "Quantity.schema.json#/definitions/Quantity"
}
}
}
]
}
}
}