{
  "$schema": "http://json-schema.org/schema",
  "$id": "ndc-report",
  "title": "NDC .NET Report Class",
  "type": "object",
  "properties": {
    "name": {
      "description": "The name of the .net component",
      "type": "string"
    },
    "filename": {
      "description": "Where is the excel files template for report",
      "type": "array",
      "items": {
        "type": "string",
        "format": "path"
      },
      "format": "path",
      "x-prompt": "Where is report template :",
      "default": "ndc-template-exp.xlsx"
    }
  },
  "required": []
}