{
  "$schema":"http://json-schema.org/draft-04/schema",
  "title":"labTestPanels.json template schema",
  "description": "The lab test panels template is a legacy template that defines and annotates the collection of lab tests applied to a sample (but not the lab test results). 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":["labTestPanels.json"]
      },
     "name":{
	  "type":"string",
	  "enum":["labtestpanels"]
      },
     "schemaVersion":{
	  "type":"string",
	  "enum":["3.37"]
      },
     "templateType":{
	  "type":"string",
	  "enum":["single"]
      },
     "validationLevel":{
	  "type":"string"
      },
     "data": {
       "type":"array",
       "items":{
         "$ref":"labTestPanels.Datum.json#"
       },
       "minItems":1
     }
  },
  "additionalProperties":false,
  "required":["fileName","name","schemaVersion","templateType","data"]
}