Commit 16d64161 authored by Kirill Smelkov's avatar Kirill Smelkov

.

parent 7760cec5
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"title": "Peer Cell",
"type": "object",
"oneOf": [
{ "$ref": "../../cell/peer/lte/input-schema.json" },
{ "$ref": "../../cell/nr/input-schema.json" }
],
"$defs": {
"peer-cell-common": {
"required": [
"peer_cell_type",
"pci",
"tac"
],
"properties": {
"peer_cell_type": {
"type": "string",
"options": { "hidden": true }
},
"pci": { "$ref": "../../cell/input-schema.json#/$defs/pci" },
"tac": { "$ref": "../../cell/input-schema.json#/$defs/tac" }
}
}
}
}
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"title": "LTE Peer Cell",
"type": "object",
"$ref": "../../../cell/peer/input-schema.json#/$defs/cell-common",
"required": [
"e_cell_id",
"pci",
"dl_earfcn",
"tac"
],
"properties": {
"e_cell_id": {
"title": "Cell ID",
"description": "28 bit E-UTRAN cell identity. Concatenation of enb_id and cell_id of the neighbour cell.",
"type": "string"
},
"pci": { "$ref": "../../../cell/lte/input-schema.json#/$defs/pci" },
"dl_earfcn": { "$ref": "../../../cell/lte/input-schema.json#/$defs/dl_earfcn" },
"tac": { "$ref": "../../../cell/lte/input-schema.json#/$defs/tac" }
}
}
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"title": "NR Peer Cell",
"type": "object",
"$ref": "../../../cell/peer/input-schema.json#/$defs/cell-common",
"required": [
"nr_cell_id",
"gnb_id_bits",
"dl_nr_arfcn",
"ul_nr_arfcn",
"pci",
"tac",
"band"
],
"properties": {
"nr_cell_id": {
"title": "NR Cell ID",
"description": "Concatenation of gnb_id and cell_id of the cell",
"type": "string"
},
"gnb_id_bits": {
"title": "gNB ID bits",
"description": "Number of bits for the gNodeB global identifier. (range 22 to 32)",
"type": "integer"
},
"dl_nr_arfcn": { "$ref": "../../../cell/nr/input-schema.json#/$defs/dl_nr_arfcn" },
"nr_band": { "$ref": "../../../cell/nr/input-schema.json#/$defs/nr_band" },
"ssb_nr_arfcn": { "$ref": "../../../cell/nr/input-schema.json#/$defs/ssb_nr_arfcn" },
"ul_nr_arfcn": {
"title": "UL NR ARFCN",
"description": "Uplink NR Absolute Radio Frequency Channel Number of the cell",
"type": "integer"
},
"pci": { "$ref": "../../../cell/nr/input-schema.json#/$defs/pci" },
"tac": { "$ref": "../../../cell/nr/input-schema.json#/$defs/tac" }
}
}
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