Schema: Lab_Result_Metric

Schema Definition

{
    "$schema": "http://json-schema.org/schema#",
    "description": "A Lab Metric Result for any test",
    "properties": {
        "lab_metric_id": {
            "description": "The Well Known Identifier of this Metric, may be null",
            "type": "string"
        },
        "lab_result_id": {
            "description": "The Lab Result",
            "type": "string"
        },
        "limit": {
            "description": "Upper limit of detected stuff in the sample, below which the sample has passed"
        },
        "lod": {
            "description": "The Level of Detection",
            "type": "string"
        },
        "loq": {
            "description": "Limit of Quantitation",
            "type": "string"
        },
        "qom": {
            "description": "Quantity of Measure, the value measured",
            "type": "string"
        },
        "status": {
            "description": "The status of this Lab Metric on this Lab Result",
            "enum": [
                "fail",
                "na",
                "nd",
                "nr",
                "nt",
                "pass"
            ],
            "type": "string"
        },
        "uom": {
            "description": "Unit of Measure",
            "enum": [
                "mg/g",
                "percent",
                "ppb",
                "ppm"
            ],
            "type": "string"
        }
    },
    "type": "object"
}

Schema Samples