{
  "$schema":"http://json-schema.org/draft-04/schema",
  "title":"standardCurves.json template schema",
  "description": "The standard curve template defines and annotates the standard curves derived from the control sample's concentration and MFI to interpret the experiment sample's MFI in terms of its analyte concentration. This template requires that the standard curve be always new, while the experiment can be new or pre-defined. The standard curve is the key the template and must be unique.",
  "type":"object",
  "properties":{
      "fileName":{
	  "type":"string",
	  "enum":["standardCurves.json"]
      },
     "name":{
	  "type":"string",
	  "enum":["standardcurves"]
      },
     "schemaVersion":{
	  "type":"string",
	  "enum":["3.37"]
      },
     "templateType":{
	  "type":"string",
	  "enum":["combined"]
      },
     "validationLevel":{
	  "type":"string"
      },
     "data": {
       "type":"array",
       "items":{
         "$ref":"standardCurves.Datum.json#"
       },
       "minItems":1
     }
  },
  "additionalProperties":false,
  "required":["fileName","name","schemaVersion","templateType","data"]
}