Commit 7e11afeb authored by Kirill Smelkov's avatar Kirill Smelkov

.

parent 415dc702
{ {
"$schema": "https://json-schema.org/draft/2020-12/schema" "$schema": "https://json-schema.org/draft/2020-12/schema",
"required": [
"ru_type",
"ru_link_type"
],
"properties": {
"ru_type": {
"type": "string"
},
"ru_link_type": {
"type": "string"
}
}
} }
...@@ -4,9 +4,11 @@ ...@@ -4,9 +4,11 @@
"title": "SDR transiever", "title": "SDR transiever",
"description": "Radio Unit constituted of several SDR boards", "description": "Radio Unit constituted of several SDR boards",
"type": "object", "type": "object",
"allOf": {
"$ref": "../common-input-schema.json"
},
"required": [ "required": [
"ru_type",
"ru_link_type",
"sdr_dev_list" "sdr_dev_list"
], ],
...@@ -32,8 +34,6 @@ ...@@ -32,8 +34,6 @@
}, },
"minItems": 1, "minItems": 1,
"uniqueItems": true "uniqueItems": true
}, }
"$ref": "../common-input-schema.json"
} }
} }
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment