{
  "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"
        },
        "tx_gain": {
          "title": "Tx gain",
          "description": "Tx gain (in dB)",
          "type": "number"
        },
        "rx_gain": {
          "title": "Rx gain",
          "description": "Rx gain (in dB)",
          "type": "number"
        }
      }
    }
  }
}