Skip to content
Snippets Groups Projects
Commit 1d88cc36 authored by Hannes Feldt's avatar Hannes Feldt
Browse files

L2SS-1418: jsonschema 4.18 update broke our build

parent 3868a9d0
No related branches found
No related tags found
1 merge request!662L2SS-1418: jsonschema 4.18 update broke our build
...@@ -27,28 +27,28 @@ ...@@ -27,28 +27,28 @@
"additionalProperties": false, "additionalProperties": false,
"patternProperties": { "patternProperties": {
"^[\\-\\w]+$": { "^[\\-\\w]+$": {
"$ref": "#/definitions/server" "$ref": "station-configuration.json#/$defs/server"
} }
} }
}, },
"classes": { "classes": {
"type": "object", "type": "object",
"additionalProperties": { "additionalProperties": {
"$ref": "#/definitions/device" "$ref": "station-configuration.json#/$defs/device"
}, },
"properties": { "properties": {
"properties": { "properties": {
"$ref": "#/definitions/property" "$ref": "station-configuration.json#/$defs/property"
} }
} }
} }
}, },
"definitions": { "$defs": {
"server": { "server": {
"type": "object", "type": "object",
"patternProperties": { "patternProperties": {
"^[\\-\\w]+$": { "^[\\-\\w]+$": {
"$ref": "#/definitions/instance" "$ref": "station-configuration.json#/$defs/instance"
} }
} }
}, },
...@@ -56,7 +56,7 @@ ...@@ -56,7 +56,7 @@
"type": "object", "type": "object",
"patternProperties": { "patternProperties": {
"^[\\-\\w]+$": { "^[\\-\\w]+$": {
"$ref": "#/definitions/class" "$ref": "station-configuration.json#/$defs/class"
} }
} }
}, },
...@@ -65,7 +65,7 @@ ...@@ -65,7 +65,7 @@
"additionalProperties": false, "additionalProperties": false,
"patternProperties": { "patternProperties": {
"^[\\-\\w.@]+/[\\-\\w.@]+/[\\-\\w.@]+$": { "^[\\-\\w.@]+/[\\-\\w.@]+/[\\-\\w.@]+$": {
"$ref": "#/definitions/device" "$ref": "station-configuration.json#/$defs/device"
} }
} }
}, },
...@@ -74,10 +74,10 @@ ...@@ -74,10 +74,10 @@
"additionalProperties": false, "additionalProperties": false,
"properties": { "properties": {
"properties": { "properties": {
"$ref": "#/definitions/properties" "$ref": "station-configuration.json#/$defs/properties"
}, },
"attribute_properties": { "attribute_properties": {
"$ref": "#/definitions/attribute_properties" "$ref": "station-configuration.json#/$defs/attribute_properties"
}, },
"alias": { "alias": {
"type": "string" "type": "string"
...@@ -87,7 +87,7 @@ ...@@ -87,7 +87,7 @@
"properties": { "properties": {
"type": "object", "type": "object",
"additionalProperties": { "additionalProperties": {
"$ref": "#/definitions/property" "$ref": "station-configuration.json#/$defs/property"
} }
}, },
"property": { "property": {
...@@ -99,20 +99,20 @@ ...@@ -99,20 +99,20 @@
"attribute_properties": { "attribute_properties": {
"type": "object", "type": "object",
"additionalProperties": { "additionalProperties": {
"$ref": "#/definitions/attribute_property" "$ref": "station-configuration.json#/$defs/attribute_property"
} }
}, },
"attribute_property": { "attribute_property": {
"type": "object", "type": "object",
"additionalProperties": { "additionalProperties": {
"$ref": "#/definitions/property" "$ref": "station-configuration.json#/$defs/property"
} }
}, },
"class_property": { "class_property": {
"type": "object", "type": "object",
"additionalProperties": { "additionalProperties": {
"type": "object", "type": "object",
"$ref": "#/definitions/property" "$ref": "station-configuration.json#/$defs/property"
} }
} }
} }
......
...@@ -10,7 +10,7 @@ psycopg2-binary >= 2.9.2 # LGPL ...@@ -10,7 +10,7 @@ psycopg2-binary >= 2.9.2 # LGPL
pyasn1 == 0.4.8 # BSD, pinned because https://github.com/pyasn1/pyasn1/issues/28 pyasn1 == 0.4.8 # BSD, pinned because https://github.com/pyasn1/pyasn1/issues/28
pysnmp >= 0.1.7 # BSD pysnmp >= 0.1.7 # BSD
h5py >= 3.1.0 # BSD h5py >= 3.1.0 # BSD
jsonschema == 4.17.3 # MIT jsonschema >= 4.18 # MIT
docker >= 5.0.3 # Apache 2 docker >= 5.0.3 # Apache 2
python-logstash-async >= 2.5.0 # MIT python-logstash-async >= 2.5.0 # MIT
python-casacore >= 3.3.1 # LGPLv3 python-casacore >= 3.3.1 # LGPLv3
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment