instance-srslte-input-schema.json 1.07 KB
Newer Older
1
{
2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31
  "type": "object",
  "$schema": "http://json-schema.org/draft-04/schema",
  "title": "Input Parameters",
  "properties": {
    "Log": {
      "type": "object",
      "title": "Log Configuration",
      "properties": {
        "options": {
          "title": "Log Level",
          "description": "Log Level",
          "type": "string",
          "default": "debug"
        }
      }
    },
    "mme_addr": {
      "title": "MME address",
      "description": "address of MME for S1AP connection",
      "type": "string",
      "default": "127.0.1.100"
    },
    "rf_params": {
      "type": "object",
      "title": "RF Parameters",
      "properties": {
        "dl_earfcn": {
          "title": "DL EARFCN",
          "description": "Downlink EARFCN of the cell",
          "type": "number"
32
        },
33 34 35 36
        "tx_gain": {
          "title": "Tx gain",
          "description": "Tx gain (in dB)",
          "type": "number"
37
        },
38 39 40 41
        "rx_gain": {
          "title": "Rx gain",
          "description": "Rx gain (in dB)",
          "type": "number"
42
        }
43
      }
44
    }
45
  }
46
}