ndc-suez
Version:
Generate standard ndc UI
36 lines • 906 B
JSON
{
"$schema": "http://json-schema.org/schema",
"$id": "ndc-net-module",
"title": "NDC .NET Module",
"type": "object",
"properties": {
"name": {
"description": "The name of the .net component",
"type": "string"
},
"filename": {
"description": "Where is the excel file",
"type": "string",
"format": "path",
"x-prompt": "Where is the excel file :",
"default": "ndc.xlsx"
},
"page": {
"description": "Page name",
"type": "string"
},
"pageindex": {
"description": "Page index - used internally by schematic net multi",
"type": "number"
},
"pagenames": {
"type": "array",
"items": {
"type": "string"
},
"description": "An array of page names - used internally by schematic net multi",
"default": []
}
},
"required": []
}