{
  "$schema":"http://json-schema.org/draft-04/schema",
  "title":"controlSamples.json template schema",
  "description": "The control sample template defines and annotates the control samples included in MBAA assays. Control samples are not assumed to be of biologic origin. This template requires that the control sample be always new, while the experiment can be new or pre-defined. The control sample is the key to the templates and must be unique within the template.",
  "type":"object",
  "properties":{
      "fileName":{
	  "type":"string",
	  "enum":["controlSamples.json"]
      },
     "name":{
	  "type":"string",
	  "enum":["controlsamples"]
      },
     "schemaVersion":{
	  "type":"string",
	  "enum":["3.37"]
      },
     "templateType":{
	  "type":"string",
	  "enum":["combined"]
      },
     "validationLevel":{
	  "type":"string"
      },
     "data": {
       "type":"array",
       "items":{
         "$ref":"controlSamples.Datum.json#"
       },
       "minItems":1
     }
  },
  "additionalProperties":false,
  "required":["fileName","name","schemaVersion","templateType","data"]
}