Schema: Lab_Metric
Schema Definition
{
"$schema": "http://json-schema.org/schema#",
"description": "Mapping for all of the individual metrics that would be recorded with a Lab Result to Universal IDs",
"properties": {
"id": {
"description": "ID of this specific metric from the well-known published set",
"type": "string"
},
"name": {
"description": "Human readable name of this metric",
"type": "string"
},
"type": {
"description": "Human readable type of this metric",
"enum": [
"General",
"Cannabinoid",
"Terpene",
"Microbe",
"Metal",
"Solvent"
],
"type": "string"
}
},
"required": [
"id",
"name",
"type"
],
"type": "object"
}
Schema Samples