{
  "$schema":"http://json-schema.org/draft-04/schema",
  "title":"labTest_Results.json template schema",
  "description": "The lab test results template is a legacy template that supports reporting the lab test results (but does not support defining the lab test panel which is the parent of a lab test). The function of this template is also captured in the lab tests template. This template will continue to be supported for the foreseeable future to support backward compatibility.",
  "type":"object",
  "properties":{
      "fileName":{
	  "type":"string",
	  "enum":["labTest_Results.json"]
      },
     "name":{
	  "type":"string",
	  "enum":["labtest_results"]
      },
     "schemaVersion":{
	  "type":"string",
	  "enum":["3.37"]
      },
     "templateType":{
	  "type":"string",
	  "enum":["single"]
      },
     "validationLevel":{
	  "type":"string"
      },
     "data": {
       "type":"array",
       "items":{
         "$ref":"labTest_Results.Datum.json#"
       },
       "minItems":1
     }
  },
  "additionalProperties":false,
  "required":["fileName","name","schemaVersion","templateType","data"]
}