Allow plants to dispose of products locally

This commit is contained in:
2020-03-18 16:16:12 -05:00
parent c55c6cc828
commit ed70c9d1e2
4 changed files with 112 additions and 34 deletions

View File

@@ -30,7 +30,20 @@
"longitude": { "type": "number" },
"variable operating cost": { "type": "number" },
"fixed operating cost": { "type": "number" },
"opening cost": { "type": "number" }
"opening cost": { "type": "number" },
"disposal": {
"type": "object",
"additionalProperties": {
"type": "object",
"properties": {
"cost": { "type": "number" },
"limit": { "type": "number" }
},
"required": [
"cost"
]
}
}
},
"required": [
"latitude",