{
  "$schema":"http://json-schema.org/draft-04/schema",
  "title":"assessmentpanel.json template schema",
  "description": "The assessment panel can be either new or pre-defined in this template. Any combination is acceptable. The only restriction is that the assessment panel id is the key to the template and must be unique within the template.",
  "type":"object",
  "properties":{
      "fileName":{
	  "type":"string",
	  "enum":["assessmentpanel.json"]
      },
     "name":{
	  "type":"string",
	  "enum":["assessmentpanel"]
      },
     "schemaVersion":{
	  "type":"string",
	  "enum":["3.37"]
      },
     "templateType":{
	  "type":"string",
	  "enum":["combined"]
      },
     "validationLevel":{
	  "type":"string"
      },
     "data": {
       "type":"array",
       "items":{
         "$ref":"assessmentpanel.Datum.json#"
       },
       "minItems":1
     }
  },
  "additionalProperties":false,
  "required":["fileName","name","schemaVersion","templateType","data"]
}