-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathexample-parameter-representation.json
More file actions
83 lines (83 loc) · 1.41 KB
/
example-parameter-representation.json
File metadata and controls
83 lines (83 loc) · 1.41 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
{
"parameters": [
{
"name": "p1",
"id": 1,
"datatype": "integer",
"values": [
{
"name": "v11",
"id": 11,
"restrictions": {
"min-value": 0,
"max-value": 10
}
},
{
"name": "v12",
"id": 12,
"restrictions": {
"min-value": 11
}
}
]
},
{
"name": "p2",
"id": 2,
"datatype": "integer",
"values": [
{
"name": "v21",
"id": 21,
"restrictions": {
"min-value": 25
}
}
]
},
{
"name": "p3",
"id": 3,
"datatype": "string",
"conditions": [11],
"values": [
{
"name": "v31",
"id": 31,
"restrictions": ["linear"]
},
{
"name": "v32",
"id": 32,
"restrictions": ["exponential"]
}
]
},
{
"name": "p4",
"id": 4,
"datatype": "float",
"conditions": [12]
},
{
"name": "p5",
"id": 5,
"datatype": "float",
"conditions": [31]
},
{
"name": "p6",
"id": 6,
"datatype": "array",
"conditions": [21],
"exclusions": [32],
"schema": {
"type": "array",
"item": "integer",
"minItems": 4,
"maxItems": 4
}
}
]
}