You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
35 lines
873 B
Plaintext
35 lines
873 B
Plaintext
local entity = import 'entity.libsonnet';
|
|
|
|
entity
|
|
{
|
|
'$id': 'https://picc.app/schemata/v0.1-dev/variables/real',
|
|
title: 'Real',
|
|
description: 'Real-valued variable.',
|
|
|
|
properties+: {
|
|
moreThan: {
|
|
type: 'number',
|
|
description: 'Open lower bound on value of variable.',
|
|
},
|
|
moreThanEq : {
|
|
type: 'number',
|
|
description: 'Closed lower bound on value of variable.',
|
|
},
|
|
lessThan: {
|
|
type: 'number',
|
|
description: 'Open upper bound on value of variable.',
|
|
},
|
|
lessThanEq: {
|
|
type: 'number',
|
|
description: 'Closed lower bound on the value of variable.',
|
|
},
|
|
distribution: {
|
|
type: 'string',
|
|
description: 'Assumed distribution of variable.',
|
|
enum: ['normal', 'uniform', 'exponential', 'gamma'],
|
|
},
|
|
},
|
|
required+: [
|
|
],
|
|
}
|