{
  "$schema":"http://json-schema.org/draft-04/schema",
  "title":"reagents.HAI.json template schema",
  "description": "The HAI reagent template defines and annotates reagents for hemagglutination inhibition assays. These include the cell type used. The viral stain and concentration would be defined in the treatments.txt template.",
  "type":"object",
  "properties":{
      "fileName":{
	  "type":"string",
	  "enum":["reagents.HAI.json"]
      },
     "name":{
	  "type":"string",
	  "enum":["hai_reagents"]
      },
     "schemaVersion":{
	  "type":"string",
	  "enum":["3.37"]
      },
     "templateType":{
	  "type":"string",
	  "enum":["multiple"]
      },
     "validationLevel":{
	  "type":"string"
      },
     "data": {
       "type":"array",
       "items":{
         "$ref":"reagents.HAI.Datum.json#"
       },
       "minItems":1
     }
  },
  "additionalProperties":false,
  "required":["fileName","name","schemaVersion","templateType","data"]
}