instance-ors-gnb-input-schema.json 6.17 KB
Newer Older
1 2 3 4 5 6
{
  "type": "object",
  "$schema": "http://json-schema.org/draft-04/schema",
  "title": "Input Parameters",
  "properties": {
    "nr_bandwidth": {
7
      "$ref": "cell/common.json#/properties/bandwidth",
8 9 10
      "default": 40
    },
    "n_antenna_dl": {
11
      "$ref": "instance-ors-enb-input-schema.json#/properties/n_antenna_dl"
12 13
    },
    "n_antenna_ul": {
14
      "$ref": "instance-ors-enb-input-schema.json#/properties/n_antenna_ul"
15
    },
16
    "rf_mode": {
17
      "$ref": "instance-ors-enb-input-schema.json#/properties/rf_mode"
18
    },
19
    "tdd_ul_dl_config": {
20
      "$ref": "cell/nr/input-schema.json#/properties/tdd_ul_dl_config"
21 22
    },
    "dl_nr_arfcn": {
23
      "$ref": "cell/nr/input-schema.json#/properties/dl_nr_arfcn"
24 25
    },
    "nr_band": {
26
      "$ref": "cell/nr/input-schema.json#/properties/nr_band"
27 28
    },
    "ssb_pos_bitmap": {
29
      "$ref": "cell/nr/input-schema.json#/properties/ssb_pos_bitmap",
30 31 32
      "default": 10000000
    },
    "pci": {
33
      "$ref": "cell/common.json#/properties/pci",
34 35 36
      "default": 500
    },
    "cell_id": {
37
      "$ref": "instance-ors-enb-input-schema.json#/properties/cell_id"
38 39
    },
    "tx_gain": {
40
      "$ref": "instance-ors-enb-input-schema.json#/properties/tx_gain"
41 42
    },
    "rx_gain": {
43
      "$ref": "instance-ors-enb-input-schema.json#/properties/rx_gain"
44 45
    },
    "gnb_id": {
46
      "$ref": "instance-gnb-input-schema.json#/properties/gnb_id",
47 48 49
      "default": "0x12345"
    },
    "gnb_id_bits": {
50
      "$ref": "instance-gnb-input-schema.json#/properties/gnb_id_bits",
51 52 53
      "default": 28
    },
    "amf_list": {
54
      "$ref": "instance-gnb-input-schema.json#/properties/amf_list",
55 56 57 58 59
      "default": {
        "1": {
          "amf_addr": "127.0.1.100"
        }
      }
60 61
    },
    "plmn_list": {
62
      "$ref": "instance-gnb-input-schema.json#/properties/plmn_list",
63
      "description": "List of PLMNs broadcasted by the gNodeB, at most 12 (default: 00101)",
64 65 66 67 68 69
      "default": {
        "1": {
          "plmn": "00101",
          "tac": 100
        }
      }
70 71
    },
    "nssai": {
72
      "$ref": "instance-gnb-input-schema.json#/properties/nssai"
73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158
    },
    "nr_handover_a3_offset": {
      "title": "A3 offset for NR handover",
      "description": "RSRP gain offset between gNBs which will trigger handover",
      "type": "number",
      "default": 6
    },
    "nr_handover_time_to_trigger": {
      "title": "Time to Trigger for NR handover",
      "description": "Time to triger after which NR handover will be triggerd if A3 offset is reached",
      "type": "number",
      "enum": [
        0,
        40,
        64,
        80,
        100,
        128,
        160,
        256,
        320,
        480,
        512,
        640,
        1024,
        1280,
        2560,
        5120
      ],
      "default": 100
    },
    "ncell_list": {
      "title": "Neighbour Cell Info",
      "description": "Neighbour Cell Info",
      "patternProperties": {
        ".*": {
          "properties": {
            "dl_nr_arfcn": {
              "title": "DL NR ARFCN",
              "description": "Downlink NR Absolute Radio Frequency Channel Number of the neighbour cell",
              "type": "number"
            },
            "ssb_nr_arfcn": {
              "title": "SSB NR ARFCN",
              "description": "SSB NR Absolute Radio Frequency Channel Number of the neighbour cell",
              "type": "number"
            },
            "pci": {
              "title": "Physical Cell ID",
              "description": "Physical Cell ID of the neighbour cell",
              "type": "number"
            },
            "nr_cell_id": {
              "title": "NR Cell ID",
              "description": "Concatenation of gnb_id and cell_id of the neighbour cell",
              "type": "string"
            },
            "gnb_id_bits": {
              "title": "gNB ID bits",
              "description": "Number of bits for the gNodeB global identifier. (range 22 to 32)",
              "type": "number"
            },
            "nr_band": {
              "title": "NR band",
              "description": "NR band number",
              "type": "number"
            },
            "tac": {
              "title": "Tracking Area Code",
              "description": "Integer (range 0 to 16777215)",
              "type": "number"
            }
          },
          "type": "object"
        }
      },
      "type": "object",
      "default": {}
    },
    "xn_peers": {
      "title": "XN Peers",
      "description": "XN Peers",
      "patternProperties": {
        ".*": {
          "properties": {
            "xn_addr": {
159
              "$ref": "peer/nr/input-schema.json#/properties/xn_addr"
160 161 162 163 164 165 166 167
            }
          },
          "type": "object"
        }
      },
      "type": "object",
      "default": {}
    },
168
    "websocket_password": {
169
      "$ref": "instance-ors-enb-input-schema.json#/properties/websocket_password"
170
    },
171
    "inactivity_timer": {
172
      "$ref": "instance-ors-enb-input-schema.json#/properties/inactivity_timer"
173 174
    },
    "log_phy_debug": {
175
      "$ref": "instance-ors-enb-input-schema.json#/properties/log_phy_debug"
176 177
    },
    "gps_sync": {
178
      "$ref": "instance-ors-enb-input-schema.json#/properties/gps_sync"
179 180
    },
    "disable_sdr": {
181
      "$ref": "instance-ors-enb-input-schema.json#/properties/disable_sdr"
182 183
    },
    "use_ipv4": {
184
      "$ref": "instance-ors-enb-input-schema.json#/properties/use_ipv4"
185 186
    },
    "gnb_stats_fetch_period": {
187
      "$ref": "instance-gnb-input-schema.json#/properties/gnb_stats_fetch_period"
188 189
    },
    "gnb_drb_stats_enabled": {
190
      "$ref": "instance-gnb-input-schema.json#/properties/gnb_drb_stats_enabled"
191 192
    },
    "max_rx_sample_db": {
193
      "$ref": "instance-ors-enb-input-schema.json#/properties/max_rx_sample_db"
194
    },
195
    "min_rxtx_delay": {
196
      "$ref": "instance-ors-enb-input-schema.json#/properties/min_rxtx_delay"
197 198
    },
    "xlog_fluentbit_forward_host": {
199
      "$ref": "instance-ors-enb-input-schema.json#/properties/xlog_fluentbit_forward_host"
200 201
    },
    "xlog_fluentbit_forward_port": {
202
      "$ref": "instance-ors-enb-input-schema.json#/properties/xlog_fluentbit_forward_port"
203 204
    },
    "xlog_fluentbit_forward_shared_key": {
205
      "$ref": "instance-ors-enb-input-schema.json#/properties/xlog_fluentbit_forward_shared_key"
206 207 208
    }
  }
}