{
  "$schema":"http://json-schema.org/draft-04/schema",
  "title":"reagents.Flow_Cytometry.json template schema",
  "description": "The flow cytometry reagent template defines and annotates the antibody reagents used for flow cytometry.",
  "type":"object",
  "properties":{
      "fileName":{
	  "type":"string",
	  "enum":["reagents.Flow_Cytometry.json"]
      },
     "name":{
	  "type":"string",
	  "enum":["flow_cytometry_reagents"]
      },
     "schemaVersion":{
	  "type":"string",
	  "enum":["3.37"]
      },
     "templateType":{
	  "type":"string",
	  "enum":["multiple"]
      },
     "validationLevel":{
	  "type":"string"
      },
     "data": {
       "type":"array",
       "items":{
         "$ref":"reagents.Flow_Cytometry.Datum.json#"
       },
       "minItems":1
     }
  },
  "additionalProperties":false,
  "required":["fileName","name","schemaVersion","templateType","data"]
}