5etools-utils 0.14.27 → 0.14.28
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/schema/brew/encounterbuilder.json +39 -11
- package/schema/brew-fast/encounterbuilder.json +39 -11
- package/schema/site/encounterbuilder.json +39 -11
- package/schema/site-fast/encounterbuilder.json +39 -11
- package/schema/ua/encounterbuilder.json +39 -11
- package/schema/ua-fast/encounterbuilder.json +39 -11
package/package.json
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
{
|
|
2
2
|
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
3
3
|
"$id": "encounterbuilder.json",
|
|
4
|
-
"version": "1.0.
|
|
4
|
+
"version": "1.0.1",
|
|
5
5
|
"type": "object",
|
|
6
6
|
"$defs": {
|
|
7
|
-
"
|
|
7
|
+
"_shapeTemplateNumericalValueFloat": {
|
|
8
8
|
"oneOf": [
|
|
9
9
|
{
|
|
10
10
|
"type": "number"
|
|
@@ -31,11 +31,11 @@
|
|
|
31
31
|
}
|
|
32
32
|
]
|
|
33
33
|
},
|
|
34
|
-
"
|
|
34
|
+
"_shapeTemplateNumericalTermExactInteger": {
|
|
35
35
|
"type": "object",
|
|
36
36
|
"properties": {
|
|
37
37
|
"exact": {
|
|
38
|
-
"
|
|
38
|
+
"type": "integer"
|
|
39
39
|
}
|
|
40
40
|
},
|
|
41
41
|
"required": [
|
|
@@ -43,14 +43,42 @@
|
|
|
43
43
|
],
|
|
44
44
|
"additionalProperties": false
|
|
45
45
|
},
|
|
46
|
-
"
|
|
46
|
+
"_shapeTemplateNumericalTermExactFloat": {
|
|
47
|
+
"type": "object",
|
|
48
|
+
"properties": {
|
|
49
|
+
"exact": {
|
|
50
|
+
"$ref": "#/$defs/_shapeTemplateNumericalValueFloat"
|
|
51
|
+
}
|
|
52
|
+
},
|
|
53
|
+
"required": [
|
|
54
|
+
"exact"
|
|
55
|
+
],
|
|
56
|
+
"additionalProperties": false
|
|
57
|
+
},
|
|
58
|
+
"_shapeTemplateNumericalTermMinMaxInteger": {
|
|
59
|
+
"type": "object",
|
|
60
|
+
"properties": {
|
|
61
|
+
"min": {
|
|
62
|
+
"type": "integer"
|
|
63
|
+
},
|
|
64
|
+
"max": {
|
|
65
|
+
"type": "integer"
|
|
66
|
+
}
|
|
67
|
+
},
|
|
68
|
+
"required": [
|
|
69
|
+
"min",
|
|
70
|
+
"max"
|
|
71
|
+
],
|
|
72
|
+
"additionalProperties": false
|
|
73
|
+
},
|
|
74
|
+
"_shapeTemplateNumericalTermMinMaxFloat": {
|
|
47
75
|
"type": "object",
|
|
48
76
|
"properties": {
|
|
49
77
|
"min": {
|
|
50
|
-
"$ref": "#/$defs/
|
|
78
|
+
"$ref": "#/$defs/_shapeTemplateNumericalValueFloat"
|
|
51
79
|
},
|
|
52
80
|
"max": {
|
|
53
|
-
"$ref": "#/$defs/
|
|
81
|
+
"$ref": "#/$defs/_shapeTemplateNumericalValueFloat"
|
|
54
82
|
}
|
|
55
83
|
},
|
|
56
84
|
"required": [
|
|
@@ -81,10 +109,10 @@
|
|
|
81
109
|
"count": {
|
|
82
110
|
"oneOf": [
|
|
83
111
|
{
|
|
84
|
-
"$ref": "#/$defs/
|
|
112
|
+
"$ref": "#/$defs/_shapeTemplateNumericalTermExactInteger"
|
|
85
113
|
},
|
|
86
114
|
{
|
|
87
|
-
"$ref": "#/$defs/
|
|
115
|
+
"$ref": "#/$defs/_shapeTemplateNumericalTermMinMaxInteger"
|
|
88
116
|
},
|
|
89
117
|
{
|
|
90
118
|
"$ref": "#/$defs/_shapeTemplateFormulaTermMinMax"
|
|
@@ -94,10 +122,10 @@
|
|
|
94
122
|
"ratio": {
|
|
95
123
|
"oneOf": [
|
|
96
124
|
{
|
|
97
|
-
"$ref": "#/$defs/
|
|
125
|
+
"$ref": "#/$defs/_shapeTemplateNumericalTermExactFloat"
|
|
98
126
|
},
|
|
99
127
|
{
|
|
100
|
-
"$ref": "#/$defs/
|
|
128
|
+
"$ref": "#/$defs/_shapeTemplateNumericalTermMinMaxFloat"
|
|
101
129
|
}
|
|
102
130
|
]
|
|
103
131
|
}
|
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
{
|
|
2
2
|
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
3
3
|
"$id": "encounterbuilder.json",
|
|
4
|
-
"version": "1.0.
|
|
4
|
+
"version": "1.0.1",
|
|
5
5
|
"type": "object",
|
|
6
6
|
"$defs": {
|
|
7
|
-
"
|
|
7
|
+
"_shapeTemplateNumericalValueFloat": {
|
|
8
8
|
"oneOf": [
|
|
9
9
|
{
|
|
10
10
|
"type": "number"
|
|
@@ -31,11 +31,11 @@
|
|
|
31
31
|
}
|
|
32
32
|
]
|
|
33
33
|
},
|
|
34
|
-
"
|
|
34
|
+
"_shapeTemplateNumericalTermExactInteger": {
|
|
35
35
|
"type": "object",
|
|
36
36
|
"properties": {
|
|
37
37
|
"exact": {
|
|
38
|
-
"
|
|
38
|
+
"type": "integer"
|
|
39
39
|
}
|
|
40
40
|
},
|
|
41
41
|
"required": [
|
|
@@ -43,14 +43,42 @@
|
|
|
43
43
|
],
|
|
44
44
|
"additionalProperties": false
|
|
45
45
|
},
|
|
46
|
-
"
|
|
46
|
+
"_shapeTemplateNumericalTermExactFloat": {
|
|
47
|
+
"type": "object",
|
|
48
|
+
"properties": {
|
|
49
|
+
"exact": {
|
|
50
|
+
"$ref": "#/$defs/_shapeTemplateNumericalValueFloat"
|
|
51
|
+
}
|
|
52
|
+
},
|
|
53
|
+
"required": [
|
|
54
|
+
"exact"
|
|
55
|
+
],
|
|
56
|
+
"additionalProperties": false
|
|
57
|
+
},
|
|
58
|
+
"_shapeTemplateNumericalTermMinMaxInteger": {
|
|
59
|
+
"type": "object",
|
|
60
|
+
"properties": {
|
|
61
|
+
"min": {
|
|
62
|
+
"type": "integer"
|
|
63
|
+
},
|
|
64
|
+
"max": {
|
|
65
|
+
"type": "integer"
|
|
66
|
+
}
|
|
67
|
+
},
|
|
68
|
+
"required": [
|
|
69
|
+
"min",
|
|
70
|
+
"max"
|
|
71
|
+
],
|
|
72
|
+
"additionalProperties": false
|
|
73
|
+
},
|
|
74
|
+
"_shapeTemplateNumericalTermMinMaxFloat": {
|
|
47
75
|
"type": "object",
|
|
48
76
|
"properties": {
|
|
49
77
|
"min": {
|
|
50
|
-
"$ref": "#/$defs/
|
|
78
|
+
"$ref": "#/$defs/_shapeTemplateNumericalValueFloat"
|
|
51
79
|
},
|
|
52
80
|
"max": {
|
|
53
|
-
"$ref": "#/$defs/
|
|
81
|
+
"$ref": "#/$defs/_shapeTemplateNumericalValueFloat"
|
|
54
82
|
}
|
|
55
83
|
},
|
|
56
84
|
"required": [
|
|
@@ -81,10 +109,10 @@
|
|
|
81
109
|
"count": {
|
|
82
110
|
"oneOf": [
|
|
83
111
|
{
|
|
84
|
-
"$ref": "#/$defs/
|
|
112
|
+
"$ref": "#/$defs/_shapeTemplateNumericalTermExactInteger"
|
|
85
113
|
},
|
|
86
114
|
{
|
|
87
|
-
"$ref": "#/$defs/
|
|
115
|
+
"$ref": "#/$defs/_shapeTemplateNumericalTermMinMaxInteger"
|
|
88
116
|
},
|
|
89
117
|
{
|
|
90
118
|
"$ref": "#/$defs/_shapeTemplateFormulaTermMinMax"
|
|
@@ -94,10 +122,10 @@
|
|
|
94
122
|
"ratio": {
|
|
95
123
|
"oneOf": [
|
|
96
124
|
{
|
|
97
|
-
"$ref": "#/$defs/
|
|
125
|
+
"$ref": "#/$defs/_shapeTemplateNumericalTermExactFloat"
|
|
98
126
|
},
|
|
99
127
|
{
|
|
100
|
-
"$ref": "#/$defs/
|
|
128
|
+
"$ref": "#/$defs/_shapeTemplateNumericalTermMinMaxFloat"
|
|
101
129
|
}
|
|
102
130
|
]
|
|
103
131
|
}
|
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
{
|
|
2
2
|
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
3
3
|
"$id": "encounterbuilder.json",
|
|
4
|
-
"version": "1.0.
|
|
4
|
+
"version": "1.0.1",
|
|
5
5
|
"type": "object",
|
|
6
6
|
"$defs": {
|
|
7
|
-
"
|
|
7
|
+
"_shapeTemplateNumericalValueFloat": {
|
|
8
8
|
"oneOf": [
|
|
9
9
|
{
|
|
10
10
|
"type": "number"
|
|
@@ -31,11 +31,11 @@
|
|
|
31
31
|
}
|
|
32
32
|
]
|
|
33
33
|
},
|
|
34
|
-
"
|
|
34
|
+
"_shapeTemplateNumericalTermExactInteger": {
|
|
35
35
|
"type": "object",
|
|
36
36
|
"properties": {
|
|
37
37
|
"exact": {
|
|
38
|
-
"
|
|
38
|
+
"type": "integer"
|
|
39
39
|
}
|
|
40
40
|
},
|
|
41
41
|
"required": [
|
|
@@ -43,14 +43,42 @@
|
|
|
43
43
|
],
|
|
44
44
|
"additionalProperties": false
|
|
45
45
|
},
|
|
46
|
-
"
|
|
46
|
+
"_shapeTemplateNumericalTermExactFloat": {
|
|
47
|
+
"type": "object",
|
|
48
|
+
"properties": {
|
|
49
|
+
"exact": {
|
|
50
|
+
"$ref": "#/$defs/_shapeTemplateNumericalValueFloat"
|
|
51
|
+
}
|
|
52
|
+
},
|
|
53
|
+
"required": [
|
|
54
|
+
"exact"
|
|
55
|
+
],
|
|
56
|
+
"additionalProperties": false
|
|
57
|
+
},
|
|
58
|
+
"_shapeTemplateNumericalTermMinMaxInteger": {
|
|
59
|
+
"type": "object",
|
|
60
|
+
"properties": {
|
|
61
|
+
"min": {
|
|
62
|
+
"type": "integer"
|
|
63
|
+
},
|
|
64
|
+
"max": {
|
|
65
|
+
"type": "integer"
|
|
66
|
+
}
|
|
67
|
+
},
|
|
68
|
+
"required": [
|
|
69
|
+
"min",
|
|
70
|
+
"max"
|
|
71
|
+
],
|
|
72
|
+
"additionalProperties": false
|
|
73
|
+
},
|
|
74
|
+
"_shapeTemplateNumericalTermMinMaxFloat": {
|
|
47
75
|
"type": "object",
|
|
48
76
|
"properties": {
|
|
49
77
|
"min": {
|
|
50
|
-
"$ref": "#/$defs/
|
|
78
|
+
"$ref": "#/$defs/_shapeTemplateNumericalValueFloat"
|
|
51
79
|
},
|
|
52
80
|
"max": {
|
|
53
|
-
"$ref": "#/$defs/
|
|
81
|
+
"$ref": "#/$defs/_shapeTemplateNumericalValueFloat"
|
|
54
82
|
}
|
|
55
83
|
},
|
|
56
84
|
"required": [
|
|
@@ -81,10 +109,10 @@
|
|
|
81
109
|
"count": {
|
|
82
110
|
"oneOf": [
|
|
83
111
|
{
|
|
84
|
-
"$ref": "#/$defs/
|
|
112
|
+
"$ref": "#/$defs/_shapeTemplateNumericalTermExactInteger"
|
|
85
113
|
},
|
|
86
114
|
{
|
|
87
|
-
"$ref": "#/$defs/
|
|
115
|
+
"$ref": "#/$defs/_shapeTemplateNumericalTermMinMaxInteger"
|
|
88
116
|
},
|
|
89
117
|
{
|
|
90
118
|
"$ref": "#/$defs/_shapeTemplateFormulaTermMinMax"
|
|
@@ -94,10 +122,10 @@
|
|
|
94
122
|
"ratio": {
|
|
95
123
|
"oneOf": [
|
|
96
124
|
{
|
|
97
|
-
"$ref": "#/$defs/
|
|
125
|
+
"$ref": "#/$defs/_shapeTemplateNumericalTermExactFloat"
|
|
98
126
|
},
|
|
99
127
|
{
|
|
100
|
-
"$ref": "#/$defs/
|
|
128
|
+
"$ref": "#/$defs/_shapeTemplateNumericalTermMinMaxFloat"
|
|
101
129
|
}
|
|
102
130
|
]
|
|
103
131
|
}
|
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
{
|
|
2
2
|
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
3
3
|
"$id": "encounterbuilder.json",
|
|
4
|
-
"version": "1.0.
|
|
4
|
+
"version": "1.0.1",
|
|
5
5
|
"type": "object",
|
|
6
6
|
"$defs": {
|
|
7
|
-
"
|
|
7
|
+
"_shapeTemplateNumericalValueFloat": {
|
|
8
8
|
"oneOf": [
|
|
9
9
|
{
|
|
10
10
|
"type": "number"
|
|
@@ -31,11 +31,11 @@
|
|
|
31
31
|
}
|
|
32
32
|
]
|
|
33
33
|
},
|
|
34
|
-
"
|
|
34
|
+
"_shapeTemplateNumericalTermExactInteger": {
|
|
35
35
|
"type": "object",
|
|
36
36
|
"properties": {
|
|
37
37
|
"exact": {
|
|
38
|
-
"
|
|
38
|
+
"type": "integer"
|
|
39
39
|
}
|
|
40
40
|
},
|
|
41
41
|
"required": [
|
|
@@ -43,14 +43,42 @@
|
|
|
43
43
|
],
|
|
44
44
|
"additionalProperties": false
|
|
45
45
|
},
|
|
46
|
-
"
|
|
46
|
+
"_shapeTemplateNumericalTermExactFloat": {
|
|
47
|
+
"type": "object",
|
|
48
|
+
"properties": {
|
|
49
|
+
"exact": {
|
|
50
|
+
"$ref": "#/$defs/_shapeTemplateNumericalValueFloat"
|
|
51
|
+
}
|
|
52
|
+
},
|
|
53
|
+
"required": [
|
|
54
|
+
"exact"
|
|
55
|
+
],
|
|
56
|
+
"additionalProperties": false
|
|
57
|
+
},
|
|
58
|
+
"_shapeTemplateNumericalTermMinMaxInteger": {
|
|
59
|
+
"type": "object",
|
|
60
|
+
"properties": {
|
|
61
|
+
"min": {
|
|
62
|
+
"type": "integer"
|
|
63
|
+
},
|
|
64
|
+
"max": {
|
|
65
|
+
"type": "integer"
|
|
66
|
+
}
|
|
67
|
+
},
|
|
68
|
+
"required": [
|
|
69
|
+
"min",
|
|
70
|
+
"max"
|
|
71
|
+
],
|
|
72
|
+
"additionalProperties": false
|
|
73
|
+
},
|
|
74
|
+
"_shapeTemplateNumericalTermMinMaxFloat": {
|
|
47
75
|
"type": "object",
|
|
48
76
|
"properties": {
|
|
49
77
|
"min": {
|
|
50
|
-
"$ref": "#/$defs/
|
|
78
|
+
"$ref": "#/$defs/_shapeTemplateNumericalValueFloat"
|
|
51
79
|
},
|
|
52
80
|
"max": {
|
|
53
|
-
"$ref": "#/$defs/
|
|
81
|
+
"$ref": "#/$defs/_shapeTemplateNumericalValueFloat"
|
|
54
82
|
}
|
|
55
83
|
},
|
|
56
84
|
"required": [
|
|
@@ -81,10 +109,10 @@
|
|
|
81
109
|
"count": {
|
|
82
110
|
"oneOf": [
|
|
83
111
|
{
|
|
84
|
-
"$ref": "#/$defs/
|
|
112
|
+
"$ref": "#/$defs/_shapeTemplateNumericalTermExactInteger"
|
|
85
113
|
},
|
|
86
114
|
{
|
|
87
|
-
"$ref": "#/$defs/
|
|
115
|
+
"$ref": "#/$defs/_shapeTemplateNumericalTermMinMaxInteger"
|
|
88
116
|
},
|
|
89
117
|
{
|
|
90
118
|
"$ref": "#/$defs/_shapeTemplateFormulaTermMinMax"
|
|
@@ -94,10 +122,10 @@
|
|
|
94
122
|
"ratio": {
|
|
95
123
|
"oneOf": [
|
|
96
124
|
{
|
|
97
|
-
"$ref": "#/$defs/
|
|
125
|
+
"$ref": "#/$defs/_shapeTemplateNumericalTermExactFloat"
|
|
98
126
|
},
|
|
99
127
|
{
|
|
100
|
-
"$ref": "#/$defs/
|
|
128
|
+
"$ref": "#/$defs/_shapeTemplateNumericalTermMinMaxFloat"
|
|
101
129
|
}
|
|
102
130
|
]
|
|
103
131
|
}
|
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
{
|
|
2
2
|
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
3
3
|
"$id": "encounterbuilder.json",
|
|
4
|
-
"version": "1.0.
|
|
4
|
+
"version": "1.0.1",
|
|
5
5
|
"type": "object",
|
|
6
6
|
"$defs": {
|
|
7
|
-
"
|
|
7
|
+
"_shapeTemplateNumericalValueFloat": {
|
|
8
8
|
"oneOf": [
|
|
9
9
|
{
|
|
10
10
|
"type": "number"
|
|
@@ -31,11 +31,11 @@
|
|
|
31
31
|
}
|
|
32
32
|
]
|
|
33
33
|
},
|
|
34
|
-
"
|
|
34
|
+
"_shapeTemplateNumericalTermExactInteger": {
|
|
35
35
|
"type": "object",
|
|
36
36
|
"properties": {
|
|
37
37
|
"exact": {
|
|
38
|
-
"
|
|
38
|
+
"type": "integer"
|
|
39
39
|
}
|
|
40
40
|
},
|
|
41
41
|
"required": [
|
|
@@ -43,14 +43,42 @@
|
|
|
43
43
|
],
|
|
44
44
|
"additionalProperties": false
|
|
45
45
|
},
|
|
46
|
-
"
|
|
46
|
+
"_shapeTemplateNumericalTermExactFloat": {
|
|
47
|
+
"type": "object",
|
|
48
|
+
"properties": {
|
|
49
|
+
"exact": {
|
|
50
|
+
"$ref": "#/$defs/_shapeTemplateNumericalValueFloat"
|
|
51
|
+
}
|
|
52
|
+
},
|
|
53
|
+
"required": [
|
|
54
|
+
"exact"
|
|
55
|
+
],
|
|
56
|
+
"additionalProperties": false
|
|
57
|
+
},
|
|
58
|
+
"_shapeTemplateNumericalTermMinMaxInteger": {
|
|
59
|
+
"type": "object",
|
|
60
|
+
"properties": {
|
|
61
|
+
"min": {
|
|
62
|
+
"type": "integer"
|
|
63
|
+
},
|
|
64
|
+
"max": {
|
|
65
|
+
"type": "integer"
|
|
66
|
+
}
|
|
67
|
+
},
|
|
68
|
+
"required": [
|
|
69
|
+
"min",
|
|
70
|
+
"max"
|
|
71
|
+
],
|
|
72
|
+
"additionalProperties": false
|
|
73
|
+
},
|
|
74
|
+
"_shapeTemplateNumericalTermMinMaxFloat": {
|
|
47
75
|
"type": "object",
|
|
48
76
|
"properties": {
|
|
49
77
|
"min": {
|
|
50
|
-
"$ref": "#/$defs/
|
|
78
|
+
"$ref": "#/$defs/_shapeTemplateNumericalValueFloat"
|
|
51
79
|
},
|
|
52
80
|
"max": {
|
|
53
|
-
"$ref": "#/$defs/
|
|
81
|
+
"$ref": "#/$defs/_shapeTemplateNumericalValueFloat"
|
|
54
82
|
}
|
|
55
83
|
},
|
|
56
84
|
"required": [
|
|
@@ -81,10 +109,10 @@
|
|
|
81
109
|
"count": {
|
|
82
110
|
"oneOf": [
|
|
83
111
|
{
|
|
84
|
-
"$ref": "#/$defs/
|
|
112
|
+
"$ref": "#/$defs/_shapeTemplateNumericalTermExactInteger"
|
|
85
113
|
},
|
|
86
114
|
{
|
|
87
|
-
"$ref": "#/$defs/
|
|
115
|
+
"$ref": "#/$defs/_shapeTemplateNumericalTermMinMaxInteger"
|
|
88
116
|
},
|
|
89
117
|
{
|
|
90
118
|
"$ref": "#/$defs/_shapeTemplateFormulaTermMinMax"
|
|
@@ -94,10 +122,10 @@
|
|
|
94
122
|
"ratio": {
|
|
95
123
|
"oneOf": [
|
|
96
124
|
{
|
|
97
|
-
"$ref": "#/$defs/
|
|
125
|
+
"$ref": "#/$defs/_shapeTemplateNumericalTermExactFloat"
|
|
98
126
|
},
|
|
99
127
|
{
|
|
100
|
-
"$ref": "#/$defs/
|
|
128
|
+
"$ref": "#/$defs/_shapeTemplateNumericalTermMinMaxFloat"
|
|
101
129
|
}
|
|
102
130
|
]
|
|
103
131
|
}
|
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
{
|
|
2
2
|
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
3
3
|
"$id": "encounterbuilder.json",
|
|
4
|
-
"version": "1.0.
|
|
4
|
+
"version": "1.0.1",
|
|
5
5
|
"type": "object",
|
|
6
6
|
"$defs": {
|
|
7
|
-
"
|
|
7
|
+
"_shapeTemplateNumericalValueFloat": {
|
|
8
8
|
"oneOf": [
|
|
9
9
|
{
|
|
10
10
|
"type": "number"
|
|
@@ -31,11 +31,11 @@
|
|
|
31
31
|
}
|
|
32
32
|
]
|
|
33
33
|
},
|
|
34
|
-
"
|
|
34
|
+
"_shapeTemplateNumericalTermExactInteger": {
|
|
35
35
|
"type": "object",
|
|
36
36
|
"properties": {
|
|
37
37
|
"exact": {
|
|
38
|
-
"
|
|
38
|
+
"type": "integer"
|
|
39
39
|
}
|
|
40
40
|
},
|
|
41
41
|
"required": [
|
|
@@ -43,14 +43,42 @@
|
|
|
43
43
|
],
|
|
44
44
|
"additionalProperties": false
|
|
45
45
|
},
|
|
46
|
-
"
|
|
46
|
+
"_shapeTemplateNumericalTermExactFloat": {
|
|
47
|
+
"type": "object",
|
|
48
|
+
"properties": {
|
|
49
|
+
"exact": {
|
|
50
|
+
"$ref": "#/$defs/_shapeTemplateNumericalValueFloat"
|
|
51
|
+
}
|
|
52
|
+
},
|
|
53
|
+
"required": [
|
|
54
|
+
"exact"
|
|
55
|
+
],
|
|
56
|
+
"additionalProperties": false
|
|
57
|
+
},
|
|
58
|
+
"_shapeTemplateNumericalTermMinMaxInteger": {
|
|
59
|
+
"type": "object",
|
|
60
|
+
"properties": {
|
|
61
|
+
"min": {
|
|
62
|
+
"type": "integer"
|
|
63
|
+
},
|
|
64
|
+
"max": {
|
|
65
|
+
"type": "integer"
|
|
66
|
+
}
|
|
67
|
+
},
|
|
68
|
+
"required": [
|
|
69
|
+
"min",
|
|
70
|
+
"max"
|
|
71
|
+
],
|
|
72
|
+
"additionalProperties": false
|
|
73
|
+
},
|
|
74
|
+
"_shapeTemplateNumericalTermMinMaxFloat": {
|
|
47
75
|
"type": "object",
|
|
48
76
|
"properties": {
|
|
49
77
|
"min": {
|
|
50
|
-
"$ref": "#/$defs/
|
|
78
|
+
"$ref": "#/$defs/_shapeTemplateNumericalValueFloat"
|
|
51
79
|
},
|
|
52
80
|
"max": {
|
|
53
|
-
"$ref": "#/$defs/
|
|
81
|
+
"$ref": "#/$defs/_shapeTemplateNumericalValueFloat"
|
|
54
82
|
}
|
|
55
83
|
},
|
|
56
84
|
"required": [
|
|
@@ -81,10 +109,10 @@
|
|
|
81
109
|
"count": {
|
|
82
110
|
"oneOf": [
|
|
83
111
|
{
|
|
84
|
-
"$ref": "#/$defs/
|
|
112
|
+
"$ref": "#/$defs/_shapeTemplateNumericalTermExactInteger"
|
|
85
113
|
},
|
|
86
114
|
{
|
|
87
|
-
"$ref": "#/$defs/
|
|
115
|
+
"$ref": "#/$defs/_shapeTemplateNumericalTermMinMaxInteger"
|
|
88
116
|
},
|
|
89
117
|
{
|
|
90
118
|
"$ref": "#/$defs/_shapeTemplateFormulaTermMinMax"
|
|
@@ -94,10 +122,10 @@
|
|
|
94
122
|
"ratio": {
|
|
95
123
|
"oneOf": [
|
|
96
124
|
{
|
|
97
|
-
"$ref": "#/$defs/
|
|
125
|
+
"$ref": "#/$defs/_shapeTemplateNumericalTermExactFloat"
|
|
98
126
|
},
|
|
99
127
|
{
|
|
100
|
-
"$ref": "#/$defs/
|
|
128
|
+
"$ref": "#/$defs/_shapeTemplateNumericalTermMinMaxFloat"
|
|
101
129
|
}
|
|
102
130
|
]
|
|
103
131
|
}
|