We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hello,
In the individuals.json we can find:
"measures" : [ { "assayCode" : { "id" : "LOINC:35925-4", "label" : "BMI" }, "date" : "2021-09-24", "measurementValue" : { "quantity" : { "unit" : { "id" : "NCIT:C49671", "label" : "Kilogram per Square Meter" }, "value" : 26.63838307 } } },
measurementValue is the array of either value or complexValue:
"oneOf": [{ "$ref": "./value.json" }, { "$ref": "./complexValue.json" }]
where value is:
"oneOf": [ { "$ref" : "./quantity.json" }, { "$ref" : "https://raw.githubusercontent.com/ga4gh-beacon/beacon-framework-v2/main/common/ontologyTerm.json" } ]
the quantity is the object with "unit", "value" and optional "referenceRange" property.
There is no "quantity" property in the schema.
The data should look like:
"measures" : [ { "assayCode" : { "id" : "LOINC:35925-4", "label" : "BMI" }, "date" : "2021-09-24", "measurementValue" : { "unit" : { "id" : "NCIT:C49671", "label" : "Kilogram per Square Meter" }, "value" : 26.63838307 } },
Cheers,
Dmitry
The text was updated successfully, but these errors were encountered:
mrueda
No branches or pull requests
Hello,
In the individuals.json we can find:
measurementValue is the array of either value or complexValue:
"oneOf": [{ "$ref": "./value.json" }, { "$ref": "./complexValue.json" }]
where value is:
the quantity is the object with "unit", "value" and optional "referenceRange" property.
There is no "quantity" property in the schema.
The data should look like:
Cheers,
Dmitry
The text was updated successfully, but these errors were encountered: