Commit 3aa08d8b authored by Kirill Smelkov's avatar Kirill Smelkov

.

parent 5bf1a5f8
...@@ -171,10 +171,17 @@ NOTE: nr cell -> ----//---- gnb_id + gnb_id_bits ...@@ -171,10 +171,17 @@ NOTE: nr cell -> ----//---- gnb_id + gnb_id_bits
"title": "Shared Radio Unit", "title": "Shared Radio Unit",
"description": XXX, "description": XXX,
"type": "object", "type": "object",
"required": ["ru_ref"], "required": ["ru_type", "ru_ref"],
"properties": { "properties": {
"ru_type": {
"const": "ru_ref",
"template": "ru_ref",
"options": {
"hidden": true
}
},
"ru_ref": { "ru_ref": {
"title": "Reference", "title": "RU Reference",
"description": "Reference of shared radio unit instance", "description": "Reference of shared radio unit instance",
"type": "string" "type": "string"
} }
...@@ -184,16 +191,22 @@ NOTE: nr cell -> ----//---- gnb_id + gnb_id_bits ...@@ -184,16 +191,22 @@ NOTE: nr cell -> ----//---- gnb_id + gnb_id_bits
"title": "Shared Radio Unit inside Cell", "title": "Shared Radio Unit inside Cell",
"description": XXX, "description": XXX,
"type": "object", "type": "object",
"required": ["ruincell_ref"], "required": ["ru_type", "ruincell_ref"],
"properties": { "properties": {
"ru_type": {
"const": "ruincell_ref",
"template": "ruincell_ref",
"options": {
"hidden": true
}
},
"ruincell_ref": { "ruincell_ref": {
"title": "Reference", "title": "Cell Reference",
"description": "Reference of shared radio unit instance", "description": "Reference of cell instance whose radio unit is to share",
"type": "string" "type": "string"
} }
} }
}, },
},
{ "$ref": "ru/sdr/input-schema.json" }, { "$ref": "ru/sdr/input-schema.json" },
{ "$ref": "ru/lopcomm/input-schema.json" }, { "$ref": "ru/lopcomm/input-schema.json" },
{ "$ref": "ru/sunvawe/input-schema.json" }, { "$ref": "ru/sunvawe/input-schema.json" },
......
...@@ -3,7 +3,7 @@ ...@@ -3,7 +3,7 @@
"description": XXX, "description": XXX,
"type": "object", "type": "object",
"required": [ "required": [
"rrh_type", "ru_type",
"mac_addr", "mac_addr",
"txa0cc00_active", "txa0cc00_active",
"rxa0cc00_active", "rxa0cc00_active",
...@@ -15,9 +15,9 @@ ...@@ -15,9 +15,9 @@
"rxa0cc00_bandwidth" "rxa0cc00_bandwidth"
], ],
"properties": { "properties": {
"rrh_type": { "ru_type": {
"const": "rrh_lopcomm", "const": "ru_lopcomm",
"template": "rrh_lopcomm", "template": "ru_lopcomm",
"options": { "options": {
"hidden": true "hidden": true
} }
......
{ {
"title": "SDR board transiever", "title": "SDR board transiever",
"description": XXX, "description": XXX,
"type": "object",
"required": [
"ru_type",
],
"properties": {
"ru_type": {
"const": "ru_sdr",
"template": "ru_sdr",
"options": {
"hidden": true
}
},
}
} }
...@@ -2,4 +2,19 @@ ...@@ -2,4 +2,19 @@
"title": "Sunwave M2RU", "title": "Sunwave M2RU",
"description": XXX, "description": XXX,
"type": "object",
"required": [
"ru_type",
],
"properties": {
"ru_type": {
"const": "ru_sunvawe",
"template": "ru_sunvawe",
"options": {
"hidden": true
}
},
}
} }
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