Commit e317697f authored by Kirill Smelkov's avatar Kirill Smelkov

.

parent 84929815
......@@ -15,6 +15,7 @@
"const": "lte",
"template": "lte"
},
"tdd_ul_dl_config": {
"title": "TDD Configuration",
"type": "string",
......
......@@ -15,6 +15,7 @@
"const": "nr",
"template": "nr"
},
"tdd_ul_dl_config": {
"title": "TDD Configuration",
"type": "string",
......
......@@ -13,6 +13,11 @@
],
"properties": {
"peer_cell_type": {
"const": "lte",
"template": "lte"
},
"e_cell_id": {
"title": "Cell ID",
"description": "28 bit E-UTRAN cell identity. Concatenation of enb_id and cell_id of the neighbour cell.",
......
......@@ -16,6 +16,11 @@
],
"properties": {
"peer_cell_type": {
"const": "nr",
"template": "nr"
},
"nr_cell_id": {
"title": "NR Cell ID",
"description": "Concatenation of gnb_id and cell_id of the cell",
......
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"title": "UEsim shared instance",
"type": "object",
"oneOf": [
{ "$ref": "ru/input-schema.json" },
{ "$ref": "ue/cell/input-schema.json" },
{ "$ref": "ue/input-schema.json" }
]
}
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"title": "Cell",
"type": "object",
"oneOf": [
{ "$ref": "../../ue/cell/lte/input-schema.json" },
{ "$ref": "../../ue/cell/nr/input-schema.json" }
],
"$defs": {
"ue-cell-common": {
"properties": {
"ue_cell_type": {
"type": "string",
"options": { "hidden": true }
},
}
}
}
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"title": "LTE Cell",
"type": "object",
"$ref": "../../../ue/cell/input-schema.json#/$defs/cell-common",
"properties": {
"ue_cell_type": {
"const": "lte",
"template": "lte"
},
}
}
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"title": "NR Cell",
"type": "object",
"$ref": "../../../ue/cell/input-schema.json#/$defs/cell-common",
"properties": {
"ue_cell_type": {
"const": "nr",
"template": "nr"
},
}
}
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