Skip to content
Snippets Groups Projects

Support for distributions definitions encoded as JSON strings

Merged René Paris requested to merge feature/property-distributions into main
Files
45
{
"$schema": "http://json-schema.org/draft-07/schema#",
"title": "ExponentialDistribution",
"type": "object",
"properties": {
"lowerLimit": {
"type": "number",
"description": "Lower limit"
},
"upperLimit": {
"type": "number",
"description": "Upper limit"
},
"expectedValue": {
"type": "number",
"description": "Reciprocal of the rate parameter lambda"
}
},
"required": ["lowerLimit", "upperLimit", "expectedValue"]
}
\ No newline at end of file
Loading