cwhd / hdp-r

An implementation of the Hierarchical Decision Making (HDM) in R
Other
3 stars 3 forks source link

Define model with JSON #4

Closed cwhd closed 6 years ago

cwhd commented 6 years ago

Here is a first pass at the json:

{ "title": "model title", "levels": [{ "level": 1, "title": "level 1 title: Mission", "description": "level 1 description", "nodes": [{ "name": "select best technology" }] }, { "level": 2, "title": "level 2 title: Objective", "description": "level 2 description", "nodes": [{ "name": "Cost", "description": "how much stuff costs" }, { "name": "Effectiveness" }, { "name": "Synergy" }, { "name": "Availability" }, { "name": "Compatibility" } ] }, { "level": 3, "title": "level 2 title: Goal", "description": "level 2 description", "nodes": [{ "name": "Development Cost" }, { "name": "Implementation Cost" }, { "name": "Maintenance" }, { "name": "Fit" }, { "name": "Similarity" }, { "name": "Equipment" }, { "name": "Man Power" }, { "name": "Licensing" }, { "name": "Internal" }, { "name": "Collaboration" }, { "name": "Existing" }, { "name": "Available Workforce" }, { "name": "Backward" }, { "name": "International" } ] } ] }