{
  "$schema":"http://json-schema.org/draft-04/schema",
  "title":"PCR_Results.json template schema",
  "description": "The qRT-PCR experiment sample template defines and annotates the assay results for a sample by linking sample, experiment, and results together. More than one analyte's results per assayed sample may be reported by copying at least the group of columns 'Entrez Gene ID' and 'Threshold Cycles(ct)' needed to describe each assay result.",
  "type":"object",
  "properties":{
      "fileName":{
	  "type":"string",
	  "enum":["PCR_Results.json"]
      },
     "name":{
	  "type":"string",
	  "enum":["pcr_results"]
      },
     "schemaVersion":{
	  "type":"string",
	  "enum":["3.37"]
      },
     "templateType":{
	  "type":"string",
	  "enum":["multiple"]
      },
     "validationLevel":{
	  "type":"string"
      },
     "data": {
       "type":"array",
       "items":{
         "$ref":"PCR_Results.Datum.json#"
       },
       "minItems":1
     }
  },
  "additionalProperties":false,
  "required":["fileName","name","schemaVersion","templateType","data"]
}