@pacp/spec 3.7.0 → 3.7.1
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/dist/pacp.schema.json +21 -3
- package/package.json +1 -1
package/dist/pacp.schema.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
3
3
|
"$id": "https://cdn.jsdelivr.net/npm/@pacp/spec@latest/dist/pacp.schema.json",
|
|
4
|
-
"title": "PACP v3.7.
|
|
4
|
+
"title": "PACP v3.7.1",
|
|
5
5
|
"oneOf": [
|
|
6
6
|
{
|
|
7
7
|
"$ref": "#/$defs/catalog_document"
|
|
@@ -941,12 +941,30 @@
|
|
|
941
941
|
"operation": {
|
|
942
942
|
"enum": [
|
|
943
943
|
"MAX_OF",
|
|
944
|
-
"MIN_OF"
|
|
945
|
-
"PICK"
|
|
944
|
+
"MIN_OF"
|
|
946
945
|
]
|
|
947
946
|
}
|
|
948
947
|
}
|
|
949
948
|
},
|
|
949
|
+
"then": {
|
|
950
|
+
"required": [
|
|
951
|
+
"components"
|
|
952
|
+
],
|
|
953
|
+
"properties": {
|
|
954
|
+
"components": {
|
|
955
|
+
"minItems": 2
|
|
956
|
+
}
|
|
957
|
+
}
|
|
958
|
+
}
|
|
959
|
+
},
|
|
960
|
+
{
|
|
961
|
+
"if": {
|
|
962
|
+
"properties": {
|
|
963
|
+
"operation": {
|
|
964
|
+
"const": "PICK"
|
|
965
|
+
}
|
|
966
|
+
}
|
|
967
|
+
},
|
|
950
968
|
"then": {
|
|
951
969
|
"required": [
|
|
952
970
|
"components"
|
package/package.json
CHANGED