Commit c0a770b5 authored by Joanne Hugé's avatar Joanne Hugé

software/ors-amarisoft: fix json syntax

parent 2ca64ff1
...@@ -36,7 +36,7 @@ md5sum = 9ac219ea7c331bfc0e5ed3fd4c9991e2 ...@@ -36,7 +36,7 @@ md5sum = 9ac219ea7c331bfc0e5ed3fd4c9991e2
[template-lte-epc] [template-lte-epc]
_update_hash_filename_ = instance-epc.jinja2.cfg _update_hash_filename_ = instance-epc.jinja2.cfg
md5sum = ed7b80f6a613aea76cb60e6b66cc5bf6 md5sum = af285212bf8e15402416b58a65d103f8
[ue_db.jinja2.cfg] [ue_db.jinja2.cfg]
filename = config/ue_db.jinja2.cfg filename = config/ue_db.jinja2.cfg
......
{ {
"type": "object", "type": "object",
"$schema": "http://json-schema.org/draft-04/schema", "$schema": "http://json-schema.org/draft-04/schema",
"title": "Input Parameters",
"title": "Input Parameters", "properties": {
"properties": { "tx_gain": {
"tx_gain": { "title": "Tx gain",
"title": "Tx gain", "description": "Tx gain (in dB)",
"description": "Tx gain (in dB)", "type": "number",
"type": "number", "default": {{ default_lte_tx_gain }}
"default": {{ default_lte_tx_gain }} },
}, "rx_gain": {
"rx_gain": { "title": "Rx gain",
"title": "Rx gain", "description": "Rx gain (in dB)",
"description": "Rx gain (in dB)", "type": "number",
"type": "number", "default": {{ default_lte_rx_gain }}
"default": {{ default_lte_rx_gain }} },
}, "dl_earfcn": {
"dl_earfcn": { "title": "DL EARFCN",
"title": "DL EARFCN", "description": "Downlink E-UTRA Absolute Radio Frequency Channel Number of the cell",
"description": "Downlink E-UTRA Absolute Radio Frequency Channel Number of the cell", "type": "number",
"type": "number", "default": {{ default_dl_earfcn }}
"default": {{ default_dl_earfcn }} },
}, "n_rb_dl": {
"n_rb_dl": { "title": "DL RB",
"title": "DL RB", "description": "number of DL resource blocks",
"description": "number of DL resource blocks", "type": "number",
"type": "number", "default": {{ default_lte_n_rb_dl }}
"default": {{ default_lte_n_rb_dl }}
}
} }
}
} }
{ {
"type": "object", "$schema": "http://json-schema.org/draft-04/schema",
"$schema": "http://json-schema.org/draft-04/schema", "title": "EPC Input Parameters",
"type": "object",
"title": "EPC Input Parameters", "properties": {}
"properties": {
}
} }
{ {
"type": "object", "type": "object",
"$schema": "http://json-schema.org/draft-04/schema", "$schema": "http://json-schema.org/draft-04/schema",
"title": "EPC SIM Card Parameters", "title": "EPC SIM Card Parameters",
"required": [ "required": [
"sim_algo", "sim_algo",
"imsi", "imsi",
"opc", "opc",
"amf", "amf",
"sqn", "sqn",
"k", "k",
"impu", "impu",
"impi" "impi"
], ],
"properties": { "properties": {
"sim_algo": { "sim_algo": {
"title": "Sim Algorithm", "title": "Sim Algorithm",
"description": "xor, milenage or tuak. Set the USIM authentication algorithm.", "description": "xor, milenage or tuak. Set the USIM authentication algorithm.",
"type": "string", "type": "string",
"default": "milenage" "default": "milenage"
}, },
"imsi": { "imsi": {
"title": "IMSI", "title": "IMSI",
"description": "IMSI", "description": "IMSI",
"type": "string", "type": "string",
"default": "" "default": ""
}, },
"opc": { "opc": {
"title": "OPC", "title": "OPC",
"description": "Operator key preprocessed with the user secret key (as a 16 byte hexadecimal string). When the Milenage authentication algorithm is used, opc must be set.", "description": "Operator key preprocessed with the user secret key (as a 16 byte hexadecimal string). When the Milenage authentication algorithm is used, opc must be set.",
"type": "string", "type": "string",
"default": "" "default": ""
}, },
"amf": { "amf": {
"title": "AMF", "title": "AMF",
"description": "Range: 0 to 65535. Set the Authentication Management Field.", "description": "Range: 0 to 65535. Set the Authentication Management Field.",
"type": "string", "type": "string",
"default": "0x9001" "default": "0x9001"
}, },
"sqn": { "sqn": {
"title": "SQN", "title": "SQN",
"description": "Optional String (6 byte hexadecimal string). Set the initial sequence number. For the XOR algorithm, the actual value does not matter. For the Milenage or TUAK algorithm, a sequence number resynchronization is initiated if the sequence number does not match the one stored in the USIM.", "description": "Optional String (6 byte hexadecimal string). Set the initial sequence number. For the XOR algorithm, the actual value does not matter. For the Milenage or TUAK algorithm, a sequence number resynchronization is initiated if the sequence number does not match the one stored in the USIM.",
"type": "string", "type": "string",
"default": "000000000000" "default": "000000000000"
}, },
"k": { "k": {
"title": "K", "title": "K",
"description": "Set the user secret key (as a 16 bytes hexadecimal string, or eventually 32 bytes hexadecimal string for TUAK).", "description": "Set the user secret key (as a 16 bytes hexadecimal string, or eventually 32 bytes hexadecimal string for TUAK).",
"type": "string", "type": "string",
"default": "" "default": ""
}, },
"impu": { "impu": {
"title": "IMPU", "title": "IMPU",
"description": "sip URI or a telephone number. Note that sip URI must not include hostname. If IMPU does not start by a scheme, it is assumed to be a sip URI.", "description": "sip URI or a telephone number. Note that sip URI must not include hostname. If IMPU does not start by a scheme, it is assumed to be a sip URI.",
"type": "string", "type": "string",
"default": "" "default": ""
}, },
"impi": { "impi": {
"title": "IMPI", "title": "IMPI",
"description": "Defines user IMPI. Must be fully filled with hostname if necessary.", "description": "Defines user IMPI. Must be fully filled with hostname if necessary.",
"type": "string", "type": "string",
"default": "" "default": ""
}
} }
}
} }
{{ generated_file_message }}
[buildout] [buildout]
parts = parts =
directory directory
......
{ {
"type": "object", "type": "object",
"$schema": "http://json-schema.org/draft-04/schema", "$schema": "http://json-schema.org/draft-04/schema",
"title": "Input Parameters",
"title": "Input Parameters", "properties": {
"properties": { "tx_gain": {
"tx_gain": { "title": "Tx gain",
"title": "Tx gain", "description": "Tx gain (in dB)",
"description": "Tx gain (in dB)", "type": "number",
"type": "number", "default": {{ default_nr_tx_gain }}
"default": {{ default_nr_tx_gain }} },
}, "rx_gain": {
"rx_gain": { "title": "Rx gain",
"title": "Rx gain", "description": "Rx gain (in dB)",
"description": "Rx gain (in dB)", "type": "number",
"type": "number", "default": {{ default_nr_rx_gain }}
"default": {{ default_nr_rx_gain }} },
}, "dl_nr_arfcn": {
"dl_nr_arfcn": { "title": "DL NR ARFCN",
"title": "DL NR ARFCN", "description": "Downlink NR Absolute Radio Frequency Channel Number of the cell",
"description": "Downlink NR Absolute Radio Frequency Channel Number of the cell", "type": "number",
"type": "number", "default": {{ default_dl_nr_arfcn }}
"default": {{ default_dl_nr_arfcn }} },
}, "nr_band": {
"nr_band": { "title": "NR band",
"title": "NR band", "description": "NR band number",
"description": "NR band number", "type": "number",
"type": "number", "default": {{ default_nr_band }}
"default": {{ default_nr_band }} },
}, "nr_bandwidth": {
"nr_bandwidth": { "title": "Bandwidth",
"title": "Bandwidth", "description": "Downlink Bandwidth (in MHz)",
"description": "Downlink Bandwidth (in MHz)", "type": "number",
"type": "number", "default": {{ default_nr_bandwidth }}
"default": {{ default_nr_bandwidth }}
}
} }
}
} }
{ {
"type": "object", "type": "object",
"$schema": "http://json-schema.org/draft-04/schema", "$schema": "http://json-schema.org/draft-04/schema",
"title": "Input Parameters",
"title": "Input Parameters", "properties": {
"properties": { "tx_gain": {
"tx_gain": { "title": "Tx gain",
"title": "Tx gain", "description": "Tx gain (in dB)",
"description": "Tx gain (in dB)", "type": "number",
"type": "number", "default": 70
"default": 70 },
}, "rx_gain": {
"rx_gain": { "title": "Rx gain",
"title": "Rx gain", "description": "Rx gain (in dB)",
"description": "Rx gain (in dB)", "type": "number",
"type": "number", "default": 30
"default": 30 },
}, "dl_earfcn": {
"dl_earfcn": { "title": "DL EARFCN",
"title": "DL EARFCN", "description": "Downlink E-UTRA Absolute Radio Frequency Channel Number of the cell",
"description": "Downlink E-UTRA Absolute Radio Frequency Channel Number of the cell", "type": "number",
"type": "number", "default": 38350
"default": 38350 },
}, "n_rb_dl": {
"n_rb_dl": { "title": "DL RB",
"title": "DL RB", "description": "number of DL resource blocks",
"description": "number of DL resource blocks", "type": "number",
"type": "number", "default": 100
"default": 100
}
} }
}
} }
\ No newline at end of file
{ {
"type": "object", "type": "object",
"$schema": "http://json-schema.org/draft-04/schema", "$schema": "http://json-schema.org/draft-04/schema",
"title": "Input Parameters",
"title": "Input Parameters", "properties": {
"properties": { "tx_gain": {
"tx_gain": { "title": "Tx gain",
"title": "Tx gain", "description": "Tx gain (in dB)",
"description": "Tx gain (in dB)", "type": "number",
"type": "number", "default": 70
"default": 70 },
}, "rx_gain": {
"rx_gain": { "title": "Rx gain",
"title": "Rx gain", "description": "Rx gain (in dB)",
"description": "Rx gain (in dB)", "type": "number",
"type": "number", "default": 30
"default": 30 },
}, "dl_earfcn": {
"dl_earfcn": { "title": "DL EARFCN",
"title": "DL EARFCN", "description": "Downlink E-UTRA Absolute Radio Frequency Channel Number of the cell",
"description": "Downlink E-UTRA Absolute Radio Frequency Channel Number of the cell", "type": "number",
"type": "number", "default": 38350
"default": 38350 },
}, "n_rb_dl": {
"n_rb_dl": { "title": "DL RB",
"title": "DL RB", "description": "number of DL resource blocks",
"description": "number of DL resource blocks", "type": "number",
"type": "number", "default": 100
"default": 100
}
} }
}
} }
\ No newline at end of file
{ {
"type": "object", "type": "object",
"$schema": "http://json-schema.org/draft-04/schema", "$schema": "http://json-schema.org/draft-04/schema",
"title": "Input Parameters",
"title": "Input Parameters", "properties": {
"properties": { "tx_gain": {
"tx_gain": { "title": "Tx gain",
"title": "Tx gain", "description": "Tx gain (in dB)",
"description": "Tx gain (in dB)", "type": "number",
"type": "number", "default": 70
"default": 70 },
}, "rx_gain": {
"rx_gain": { "title": "Rx gain",
"title": "Rx gain", "description": "Rx gain (in dB)",
"description": "Rx gain (in dB)", "type": "number",
"type": "number", "default": 50
"default": 50 },
}, "dl_nr_arfcn": {
"dl_nr_arfcn": { "title": "DL NR ARFCN",
"title": "DL NR ARFCN", "description": "Downlink NR Absolute Radio Frequency Channel Number of the cell",
"description": "Downlink NR Absolute Radio Frequency Channel Number of the cell", "type": "number",
"type": "number", "default": 378000
"default": 378000 },
}, "nr_band": {
"nr_band": { "title": "NR band",
"title": "NR band", "description": "NR band number",
"description": "NR band number", "type": "number",
"type": "number", "default": 39
"default": 39 },
}, "nr_bandwidth": {
"nr_bandwidth": { "title": "Bandwidth",
"title": "Bandwidth", "description": "Downlink Bandwidth (in MHz)",
"description": "Downlink Bandwidth (in MHz)", "type": "number",
"type": "number", "default": 40
"default": 40
}
} }
}
} }
\ No newline at end of file
{ {
"type": "object", "type": "object",
"$schema": "http://json-schema.org/draft-04/schema", "$schema": "http://json-schema.org/draft-04/schema",
"title": "Input Parameters",
"title": "Input Parameters", "properties": {
"properties": { "tx_gain": {
"tx_gain": { "title": "Tx gain",
"title": "Tx gain", "description": "Tx gain (in dB)",
"description": "Tx gain (in dB)", "type": "number",
"type": "number", "default": 70
"default": 70 },
}, "rx_gain": {
"rx_gain": { "title": "Rx gain",
"title": "Rx gain", "description": "Rx gain (in dB)",
"description": "Rx gain (in dB)", "type": "number",
"type": "number", "default": 50
"default": 50 },
}, "dl_nr_arfcn": {
"dl_nr_arfcn": { "title": "DL NR ARFCN",
"title": "DL NR ARFCN", "description": "Downlink NR Absolute Radio Frequency Channel Number of the cell",
"description": "Downlink NR Absolute Radio Frequency Channel Number of the cell", "type": "number",
"type": "number", "default": 378000
"default": 378000 },
}, "nr_band": {
"nr_band": { "title": "NR band",
"title": "NR band", "description": "NR band number",
"description": "NR band number", "type": "number",
"type": "number", "default": 39
"default": 39 },
}, "nr_bandwidth": {
"nr_bandwidth": { "title": "Bandwidth",
"title": "Bandwidth", "description": "Downlink Bandwidth (in MHz)",
"description": "Downlink Bandwidth (in MHz)", "type": "number",
"type": "number", "default": 40
"default": 40
}
} }
}
} }
\ No newline at end of file
{ {
"type": "object", "type": "object",
"$schema": "http://json-schema.org/draft-04/schema", "$schema": "http://json-schema.org/draft-04/schema",
"title": "Input Parameters",
"title": "Input Parameters", "properties": {
"properties": { "tx_gain": {
"tx_gain": { "title": "Tx gain",
"title": "Tx gain", "description": "Tx gain (in dB)",
"description": "Tx gain (in dB)", "type": "number",
"type": "number", "default": 70
"default": 70 },
}, "rx_gain": {
"rx_gain": { "title": "Rx gain",
"title": "Rx gain", "description": "Rx gain (in dB)",
"description": "Rx gain (in dB)", "type": "number",
"type": "number", "default": 30
"default": 30 },
}, "dl_earfcn": {
"dl_earfcn": { "title": "DL EARFCN",
"title": "DL EARFCN", "description": "Downlink E-UTRA Absolute Radio Frequency Channel Number of the cell",
"description": "Downlink E-UTRA Absolute Radio Frequency Channel Number of the cell", "type": "number",
"type": "number", "default": 38050
"default": 38050 },
}, "n_rb_dl": {
"n_rb_dl": { "title": "DL RB",
"title": "DL RB", "description": "number of DL resource blocks",
"description": "number of DL resource blocks", "type": "number",
"type": "number", "default": 100
"default": 100
}
} }
}
} }
\ No newline at end of file
{ {
"type": "object", "type": "object",
"$schema": "http://json-schema.org/draft-04/schema", "$schema": "http://json-schema.org/draft-04/schema",
"title": "Input Parameters",
"title": "Input Parameters", "properties": {
"properties": { "tx_gain": {
"tx_gain": { "title": "Tx gain",
"title": "Tx gain", "description": "Tx gain (in dB)",
"description": "Tx gain (in dB)", "type": "number",
"type": "number", "default": 70
"default": 70 },
}, "rx_gain": {
"rx_gain": { "title": "Rx gain",
"title": "Rx gain", "description": "Rx gain (in dB)",
"description": "Rx gain (in dB)", "type": "number",
"type": "number", "default": 30
"default": 30 },
}, "dl_earfcn": {
"dl_earfcn": { "title": "DL EARFCN",
"title": "DL EARFCN", "description": "Downlink E-UTRA Absolute Radio Frequency Channel Number of the cell",
"description": "Downlink E-UTRA Absolute Radio Frequency Channel Number of the cell", "type": "number",
"type": "number", "default": 38050
"default": 38050 },
}, "n_rb_dl": {
"n_rb_dl": { "title": "DL RB",
"title": "DL RB", "description": "number of DL resource blocks",
"description": "number of DL resource blocks", "type": "number",
"type": "number", "default": 100
"default": 100
}
} }
}
} }
\ No newline at end of file
{ {
"type": "object", "type": "object",
"$schema": "http://json-schema.org/draft-04/schema", "$schema": "http://json-schema.org/draft-04/schema",
"title": "Input Parameters",
"title": "Input Parameters", "properties": {
"properties": { "tx_gain": {
"tx_gain": { "title": "Tx gain",
"title": "Tx gain", "description": "Tx gain (in dB)",
"description": "Tx gain (in dB)", "type": "number",
"type": "number", "default": 70
"default": 70 },
}, "rx_gain": {
"rx_gain": { "title": "Rx gain",
"title": "Rx gain", "description": "Rx gain (in dB)",
"description": "Rx gain (in dB)", "type": "number",
"type": "number", "default": 50
"default": 50 },
}, "dl_nr_arfcn": {
"dl_nr_arfcn": { "title": "DL NR ARFCN",
"title": "DL NR ARFCN", "description": "Downlink NR Absolute Radio Frequency Channel Number of the cell",
"description": "Downlink NR Absolute Radio Frequency Channel Number of the cell", "type": "number",
"type": "number", "default": 520000
"default": 520000 },
}, "nr_band": {
"nr_band": { "title": "NR band",
"title": "NR band", "description": "NR band number",
"description": "NR band number", "type": "number",
"type": "number", "default": 38
"default": 38 },
}, "nr_bandwidth": {
"nr_bandwidth": { "title": "Bandwidth",
"title": "Bandwidth", "description": "Downlink Bandwidth (in MHz)",
"description": "Downlink Bandwidth (in MHz)", "type": "number",
"type": "number", "default": 40
"default": 40
}
} }
}
} }
\ No newline at end of file
{ {
"type": "object", "type": "object",
"$schema": "http://json-schema.org/draft-04/schema", "$schema": "http://json-schema.org/draft-04/schema",
"title": "Input Parameters",
"title": "Input Parameters", "properties": {
"properties": { "tx_gain": {
"tx_gain": { "title": "Tx gain",
"title": "Tx gain", "description": "Tx gain (in dB)",
"description": "Tx gain (in dB)", "type": "number",
"type": "number", "default": 70
"default": 70 },
}, "rx_gain": {
"rx_gain": { "title": "Rx gain",
"title": "Rx gain", "description": "Rx gain (in dB)",
"description": "Rx gain (in dB)", "type": "number",
"type": "number", "default": 50
"default": 50 },
}, "dl_nr_arfcn": {
"dl_nr_arfcn": { "title": "DL NR ARFCN",
"title": "DL NR ARFCN", "description": "Downlink NR Absolute Radio Frequency Channel Number of the cell",
"description": "Downlink NR Absolute Radio Frequency Channel Number of the cell", "type": "number",
"type": "number", "default": 520000
"default": 520000 },
}, "nr_band": {
"nr_band": { "title": "NR band",
"title": "NR band", "description": "NR band number",
"description": "NR band number", "type": "number",
"type": "number", "default": 38
"default": 38 },
}, "nr_bandwidth": {
"nr_bandwidth": { "title": "Bandwidth",
"title": "Bandwidth", "description": "Downlink Bandwidth (in MHz)",
"description": "Downlink Bandwidth (in MHz)", "type": "number",
"type": "number", "default": 40
"default": 40
}
} }
}
} }
\ No newline at end of file
{ {
"type": "object", "type": "object",
"$schema": "http://json-schema.org/draft-04/schema", "$schema": "http://json-schema.org/draft-04/schema",
"title": "Input Parameters",
"title": "Input Parameters", "properties": {
"properties": { "tx_gain": {
"tx_gain": { "title": "Tx gain",
"title": "Tx gain", "description": "Tx gain (in dB)",
"description": "Tx gain (in dB)", "type": "number",
"type": "number", "default": 70
"default": 70 },
}, "rx_gain": {
"rx_gain": { "title": "Rx gain",
"title": "Rx gain", "description": "Rx gain (in dB)",
"description": "Rx gain (in dB)", "type": "number",
"type": "number", "default": 30
"default": 30 },
}, "dl_earfcn": {
"dl_earfcn": { "title": "DL EARFCN",
"title": "DL EARFCN", "description": "Downlink E-UTRA Absolute Radio Frequency Channel Number of the cell",
"description": "Downlink E-UTRA Absolute Radio Frequency Channel Number of the cell", "type": "number",
"type": "number", "default": 42590
"default": 42590 },
}, "n_rb_dl": {
"n_rb_dl": { "title": "DL RB",
"title": "DL RB", "description": "number of DL resource blocks",
"description": "number of DL resource blocks", "type": "number",
"type": "number", "default": 100
"default": 100
}
} }
}
} }
\ No newline at end of file
{ {
"type": "object", "type": "object",
"$schema": "http://json-schema.org/draft-04/schema", "$schema": "http://json-schema.org/draft-04/schema",
"title": "Input Parameters",
"title": "Input Parameters", "properties": {
"properties": { "tx_gain": {
"tx_gain": { "title": "Tx gain",
"title": "Tx gain", "description": "Tx gain (in dB)",
"description": "Tx gain (in dB)", "type": "number",
"type": "number", "default": 70
"default": 70 },
}, "rx_gain": {
"rx_gain": { "title": "Rx gain",
"title": "Rx gain", "description": "Rx gain (in dB)",
"description": "Rx gain (in dB)", "type": "number",
"type": "number", "default": 30
"default": 30 },
}, "dl_earfcn": {
"dl_earfcn": { "title": "DL EARFCN",
"title": "DL EARFCN", "description": "Downlink E-UTRA Absolute Radio Frequency Channel Number of the cell",
"description": "Downlink E-UTRA Absolute Radio Frequency Channel Number of the cell", "type": "number",
"type": "number", "default": 42590
"default": 42590 },
}, "n_rb_dl": {
"n_rb_dl": { "title": "DL RB",
"title": "DL RB", "description": "number of DL resource blocks",
"description": "number of DL resource blocks", "type": "number",
"type": "number", "default": 100
"default": 100
}
} }
}
} }
\ No newline at end of file
{ {
"type": "object", "type": "object",
"$schema": "http://json-schema.org/draft-04/schema", "$schema": "http://json-schema.org/draft-04/schema",
"title": "Input Parameters",
"title": "Input Parameters", "properties": {
"properties": { "tx_gain": {
"tx_gain": { "title": "Tx gain",
"title": "Tx gain", "description": "Tx gain (in dB)",
"description": "Tx gain (in dB)", "type": "number",
"type": "number", "default": 70
"default": 70 },
}, "rx_gain": {
"rx_gain": { "title": "Rx gain",
"title": "Rx gain", "description": "Rx gain (in dB)",
"description": "Rx gain (in dB)", "type": "number",
"type": "number", "default": 50
"default": 50 },
}, "dl_nr_arfcn": {
"dl_nr_arfcn": { "title": "DL NR ARFCN",
"title": "DL NR ARFCN", "description": "Downlink NR Absolute Radio Frequency Channel Number of the cell",
"description": "Downlink NR Absolute Radio Frequency Channel Number of the cell", "type": "number",
"type": "number", "default": 632628
"default": 632628 },
}, "nr_band": {
"nr_band": { "title": "NR band",
"title": "NR band", "description": "NR band number",
"description": "NR band number", "type": "number",
"type": "number", "default": 78
"default": 78 },
}, "nr_bandwidth": {
"nr_bandwidth": { "title": "Bandwidth",
"title": "Bandwidth", "description": "Downlink Bandwidth (in MHz)",
"description": "Downlink Bandwidth (in MHz)", "type": "number",
"type": "number", "default": 40
"default": 40
}
} }
}
} }
\ No newline at end of file
{ {
"type": "object", "type": "object",
"$schema": "http://json-schema.org/draft-04/schema", "$schema": "http://json-schema.org/draft-04/schema",
"title": "Input Parameters",
"title": "Input Parameters", "properties": {
"properties": { "tx_gain": {
"tx_gain": { "title": "Tx gain",
"title": "Tx gain", "description": "Tx gain (in dB)",
"description": "Tx gain (in dB)", "type": "number",
"type": "number", "default": 70
"default": 70 },
}, "rx_gain": {
"rx_gain": { "title": "Rx gain",
"title": "Rx gain", "description": "Rx gain (in dB)",
"description": "Rx gain (in dB)", "type": "number",
"type": "number", "default": 50
"default": 50 },
}, "dl_nr_arfcn": {
"dl_nr_arfcn": { "title": "DL NR ARFCN",
"title": "DL NR ARFCN", "description": "Downlink NR Absolute Radio Frequency Channel Number of the cell",
"description": "Downlink NR Absolute Radio Frequency Channel Number of the cell", "type": "number",
"type": "number", "default": 632628
"default": 632628 },
}, "nr_band": {
"nr_band": { "title": "NR band",
"title": "NR band", "description": "NR band number",
"description": "NR band number", "type": "number",
"type": "number", "default": 78
"default": 78 },
}, "nr_bandwidth": {
"nr_bandwidth": { "title": "Bandwidth",
"title": "Bandwidth", "description": "Downlink Bandwidth (in MHz)",
"description": "Downlink Bandwidth (in MHz)", "type": "number",
"type": "number", "default": 40
"default": 40
}
} }
}
} }
\ No newline at end of file
{ {
"type": "object", "type": "object",
"$schema": "http://json-schema.org/draft-04/schema", "$schema": "http://json-schema.org/draft-04/schema",
"title": "Input Parameters",
"title": "Input Parameters", "properties": {
"properties": { "tx_gain": {
"tx_gain": { "title": "Tx gain",
"title": "Tx gain", "description": "Tx gain (in dB)",
"description": "Tx gain (in dB)", "type": "number",
"type": "number", "default": 70
"default": 70 },
}, "rx_gain": {
"rx_gain": { "title": "Rx gain",
"title": "Rx gain", "description": "Rx gain (in dB)",
"description": "Rx gain (in dB)", "type": "number",
"type": "number", "default": 30
"default": 30 },
}, "dl_earfcn": {
"dl_earfcn": { "title": "DL EARFCN",
"title": "DL EARFCN", "description": "Downlink E-UTRA Absolute Radio Frequency Channel Number of the cell",
"description": "Downlink E-UTRA Absolute Radio Frequency Channel Number of the cell", "type": "number",
"type": "number", "default": 44590
"default": 44590 },
}, "n_rb_dl": {
"n_rb_dl": { "title": "DL RB",
"title": "DL RB", "description": "number of DL resource blocks",
"description": "number of DL resource blocks", "type": "number",
"type": "number", "default": 100
"default": 100
}
} }
}
} }
\ No newline at end of file
{ {
"type": "object", "type": "object",
"$schema": "http://json-schema.org/draft-04/schema", "$schema": "http://json-schema.org/draft-04/schema",
"title": "Input Parameters",
"title": "Input Parameters", "properties": {
"properties": { "tx_gain": {
"tx_gain": { "title": "Tx gain",
"title": "Tx gain", "description": "Tx gain (in dB)",
"description": "Tx gain (in dB)", "type": "number",
"type": "number", "default": 70
"default": 70 },
}, "rx_gain": {
"rx_gain": { "title": "Rx gain",
"title": "Rx gain", "description": "Rx gain (in dB)",
"description": "Rx gain (in dB)", "type": "number",
"type": "number", "default": 30
"default": 30 },
}, "dl_earfcn": {
"dl_earfcn": { "title": "DL EARFCN",
"title": "DL EARFCN", "description": "Downlink E-UTRA Absolute Radio Frequency Channel Number of the cell",
"description": "Downlink E-UTRA Absolute Radio Frequency Channel Number of the cell", "type": "number",
"type": "number", "default": 44590
"default": 44590 },
}, "n_rb_dl": {
"n_rb_dl": { "title": "DL RB",
"title": "DL RB", "description": "number of DL resource blocks",
"description": "number of DL resource blocks", "type": "number",
"type": "number", "default": 100
"default": 100
}
} }
}
} }
\ No newline at end of file
{ {
"type": "object", "type": "object",
"$schema": "http://json-schema.org/draft-04/schema", "$schema": "http://json-schema.org/draft-04/schema",
"title": "Input Parameters",
"title": "Input Parameters", "properties": {
"properties": { "tx_gain": {
"tx_gain": { "title": "Tx gain",
"title": "Tx gain", "description": "Tx gain (in dB)",
"description": "Tx gain (in dB)", "type": "number",
"type": "number", "default": 70
"default": 70 },
}, "rx_gain": {
"rx_gain": { "title": "Rx gain",
"title": "Rx gain", "description": "Rx gain (in dB)",
"description": "Rx gain (in dB)", "type": "number",
"type": "number", "default": 50
"default": 50 },
}, "dl_nr_arfcn": {
"dl_nr_arfcn": { "title": "DL NR ARFCN",
"title": "DL NR ARFCN", "description": "Downlink NR Absolute Radio Frequency Channel Number of the cell",
"description": "Downlink NR Absolute Radio Frequency Channel Number of the cell", "type": "number",
"type": "number", "default": 646666
"default": 646666 },
}, "nr_band": {
"nr_band": { "title": "NR band",
"title": "NR band", "description": "NR band number",
"description": "NR band number", "type": "number",
"type": "number", "default": 78
"default": 78 },
}, "nr_bandwidth": {
"nr_bandwidth": { "title": "Bandwidth",
"title": "Bandwidth", "description": "Downlink Bandwidth (in MHz)",
"description": "Downlink Bandwidth (in MHz)", "type": "number",
"type": "number", "default": 40
"default": 40
}
} }
}
} }
\ No newline at end of file
{ {
"type": "object", "type": "object",
"$schema": "http://json-schema.org/draft-04/schema", "$schema": "http://json-schema.org/draft-04/schema",
"title": "Input Parameters",
"title": "Input Parameters", "properties": {
"properties": { "tx_gain": {
"tx_gain": { "title": "Tx gain",
"title": "Tx gain", "description": "Tx gain (in dB)",
"description": "Tx gain (in dB)", "type": "number",
"type": "number", "default": 70
"default": 70 },
}, "rx_gain": {
"rx_gain": { "title": "Rx gain",
"title": "Rx gain", "description": "Rx gain (in dB)",
"description": "Rx gain (in dB)", "type": "number",
"type": "number", "default": 50
"default": 50 },
}, "dl_nr_arfcn": {
"dl_nr_arfcn": { "title": "DL NR ARFCN",
"title": "DL NR ARFCN", "description": "Downlink NR Absolute Radio Frequency Channel Number of the cell",
"description": "Downlink NR Absolute Radio Frequency Channel Number of the cell", "type": "number",
"type": "number", "default": 646666
"default": 646666 },
}, "nr_band": {
"nr_band": { "title": "NR band",
"title": "NR band", "description": "NR band number",
"description": "NR band number", "type": "number",
"type": "number", "default": 78
"default": 78 },
}, "nr_bandwidth": {
"nr_bandwidth": { "title": "Bandwidth",
"title": "Bandwidth", "description": "Downlink Bandwidth (in MHz)",
"description": "Downlink Bandwidth (in MHz)", "type": "number",
"type": "number", "default": 40
"default": 40
}
} }
}
} }
\ No newline at end of file
{ {
"name": "ORS Amarisoft", "name": "ORS Amarisoft",
"description": "4G and 5G amarisoft stack for ORS", "description": "4G and 5G amarisoft stack for ORS",
"serialisation": "xml", "serialisation": "xml",
"software-type": { "software-type": {
"enb": { "enb": {
"title": "eNB", "title": "eNB",
"software-type": "enb", "software-type": "enb",
"description": "eNodeB Configuration", "description": "eNodeB Configuration",
"request": "instance-tdd1900-enb-input-schema.json", "request": "instance-tdd1900-enb-input-schema.json",
"response": "instance-tdd1900-enb-schema.json", "response": "instance-tdd1900-enb-schema.json",
"index": 0 "index": 0
}, },
"enb-epc": { "enb-epc": {
"title": "eNB and EPC", "title": "eNB and EPC",
"software-type": "enb-epc", "software-type": "enb-epc",
"description": "eNodeB and EPC Configuration", "description": "eNodeB and EPC Configuration",
"request": "instance-tdd1900-enb-epc-input-schema.json", "request": "instance-tdd1900-enb-epc-input-schema.json",
"response": "instance-tdd1900-enb-epc-schema.json", "response": "instance-tdd1900-enb-epc-schema.json",
"index": 1 "index": 1
}, },
"gnb": { "gnb": {
"title": "gNB", "title": "gNB",
"software-type": "gnb", "software-type": "gnb",
"description": "gNodeB Configuration", "description": "gNodeB Configuration",
"request": "instance-tdd1900-gnb-input-schema.json", "request": "instance-tdd1900-gnb-input-schema.json",
"response": "instance-tdd1900-gnb-schema.json", "response": "instance-tdd1900-gnb-schema.json",
"index": 2 "index": 2
}, },
"gnb-epc": { "gnb-epc": {
"title": "gNB and EPC", "title": "gNB and EPC",
"software-type": "gnb-epc", "software-type": "gnb-epc",
"description": "gNodeB and EPC Configuration", "description": "gNodeB and EPC Configuration",
"request": "instance-tdd1900-gnb-epc-input-schema.json", "request": "instance-tdd1900-gnb-epc-input-schema.json",
"response": "instance-tdd1900-gnb-epc-schema.json", "response": "instance-tdd1900-gnb-epc-schema.json",
"index": 3 "index": 3
}, },
"epc": { "epc": {
"title": "EPC", "title": "EPC",
"software-type": "epc", "software-type": "epc",
"description": "EPC Configuration", "description": "EPC Configuration",
"request": "instance-epc-input-schema.json", "request": "instance-epc-input-schema.json",
"response": "instance-epc-schema.json", "response": "instance-epc-schema.json",
"index": 4 "index": 4
}, },
"epc-slave": { "epc-slave": {
"title": "Sim Card", "title": "Sim Card",
"description": "EPC Configuration", "description": "EPC Configuration",
"software-type": "epc", "software-type": "epc",
"request": "instance-epc-slave-input-schema.json", "request": "instance-epc-slave-input-schema.json",
"response": "instance-epc-slave-schema.json", "response": "instance-epc-slave-schema.json",
"shared": true, "shared": true,
"index": 5 "index": 5
}
} }
}
} }
\ No newline at end of file
{ {
"name": "ORS Amarisoft", "name": "ORS Amarisoft",
"description": "4G and 5G amarisoft stack for ORS", "description": "4G and 5G amarisoft stack for ORS",
"serialisation": "xml", "serialisation": "xml",
"software-type": { "software-type": {
"enb": { "enb": {
"title": "eNB", "title": "eNB",
"software-type": "enb", "software-type": "enb",
"description": "eNodeB Configuration", "description": "eNodeB Configuration",
"request": "instance-tdd2600-enb-input-schema.json", "request": "instance-tdd2600-enb-input-schema.json",
"response": "instance-tdd2600-enb-schema.json", "response": "instance-tdd2600-enb-schema.json",
"index": 0 "index": 0
}, },
"enb-epc": { "enb-epc": {
"title": "eNB and EPC", "title": "eNB and EPC",
"software-type": "enb-epc", "software-type": "enb-epc",
"description": "eNodeB and EPC Configuration", "description": "eNodeB and EPC Configuration",
"request": "instance-tdd2600-enb-epc-input-schema.json", "request": "instance-tdd2600-enb-epc-input-schema.json",
"response": "instance-tdd2600-enb-epc-schema.json", "response": "instance-tdd2600-enb-epc-schema.json",
"index": 1 "index": 1
}, },
"gnb": { "gnb": {
"title": "gNB", "title": "gNB",
"software-type": "gnb", "software-type": "gnb",
"description": "gNodeB Configuration", "description": "gNodeB Configuration",
"request": "instance-tdd2600-gnb-input-schema.json", "request": "instance-tdd2600-gnb-input-schema.json",
"response": "instance-tdd2600-gnb-schema.json", "response": "instance-tdd2600-gnb-schema.json",
"index": 2 "index": 2
}, },
"gnb-epc": { "gnb-epc": {
"title": "gNB and EPC", "title": "gNB and EPC",
"software-type": "gnb-epc", "software-type": "gnb-epc",
"description": "gNodeB and EPC Configuration", "description": "gNodeB and EPC Configuration",
"request": "instance-tdd2600-gnb-epc-input-schema.json", "request": "instance-tdd2600-gnb-epc-input-schema.json",
"response": "instance-tdd2600-gnb-epc-schema.json", "response": "instance-tdd2600-gnb-epc-schema.json",
"index": 3 "index": 3
}, },
"epc": { "epc": {
"title": "EPC", "title": "EPC",
"software-type": "epc", "software-type": "epc",
"description": "EPC Configuration", "description": "EPC Configuration",
"request": "instance-epc-input-schema.json", "request": "instance-epc-input-schema.json",
"response": "instance-epc-schema.json", "response": "instance-epc-schema.json",
"index": 4 "index": 4
}, },
"epc-slave": { "epc-slave": {
"title": "Sim Card", "title": "Sim Card",
"description": "EPC Configuration", "description": "EPC Configuration",
"software-type": "epc", "software-type": "epc",
"request": "instance-epc-slave-input-schema.json", "request": "instance-epc-slave-input-schema.json",
"response": "instance-epc-slave-schema.json", "response": "instance-epc-slave-schema.json",
"shared": true, "shared": true,
"index": 5 "index": 5
}
} }
}
} }
\ No newline at end of file
{ {
"name": "ORS Amarisoft", "name": "ORS Amarisoft",
"description": "4G and 5G amarisoft stack for ORS", "description": "4G and 5G amarisoft stack for ORS",
"serialisation": "xml", "serialisation": "xml",
"software-type": { "software-type": {
"enb": { "enb": {
"title": "eNB", "title": "eNB",
"software-type": "enb", "software-type": "enb",
"description": "eNodeB Configuration", "description": "eNodeB Configuration",
"request": "instance-tdd3500-enb-input-schema.json", "request": "instance-tdd3500-enb-input-schema.json",
"response": "instance-tdd3500-enb-schema.json", "response": "instance-tdd3500-enb-schema.json",
"index": 0 "index": 0
}, },
"enb-epc": { "enb-epc": {
"title": "eNB and EPC", "title": "eNB and EPC",
"software-type": "enb-epc", "software-type": "enb-epc",
"description": "eNodeB and EPC Configuration", "description": "eNodeB and EPC Configuration",
"request": "instance-tdd3500-enb-epc-input-schema.json", "request": "instance-tdd3500-enb-epc-input-schema.json",
"response": "instance-tdd3500-enb-epc-schema.json", "response": "instance-tdd3500-enb-epc-schema.json",
"index": 1 "index": 1
}, },
"gnb": { "gnb": {
"title": "gNB", "title": "gNB",
"software-type": "gnb", "software-type": "gnb",
"description": "gNodeB Configuration", "description": "gNodeB Configuration",
"request": "instance-tdd3500-gnb-input-schema.json", "request": "instance-tdd3500-gnb-input-schema.json",
"response": "instance-tdd3500-gnb-schema.json", "response": "instance-tdd3500-gnb-schema.json",
"index": 2 "index": 2
}, },
"gnb-epc": { "gnb-epc": {
"title": "gNB and EPC", "title": "gNB and EPC",
"software-type": "gnb-epc", "software-type": "gnb-epc",
"description": "gNodeB and EPC Configuration", "description": "gNodeB and EPC Configuration",
"request": "instance-tdd3500-gnb-epc-input-schema.json", "request": "instance-tdd3500-gnb-epc-input-schema.json",
"response": "instance-tdd3500-gnb-epc-schema.json", "response": "instance-tdd3500-gnb-epc-schema.json",
"index": 3 "index": 3
}, },
"epc": { "epc": {
"title": "EPC", "title": "EPC",
"software-type": "epc", "software-type": "epc",
"description": "EPC Configuration", "description": "EPC Configuration",
"request": "instance-epc-input-schema.json", "request": "instance-epc-input-schema.json",
"response": "instance-epc-schema.json", "response": "instance-epc-schema.json",
"index": 4 "index": 4
}, },
"epc-slave": { "epc-slave": {
"title": "Sim Card", "title": "Sim Card",
"description": "EPC Configuration", "description": "EPC Configuration",
"software-type": "epc", "software-type": "epc",
"request": "instance-epc-slave-input-schema.json", "request": "instance-epc-slave-input-schema.json",
"response": "instance-epc-slave-schema.json", "response": "instance-epc-slave-schema.json",
"shared": true, "shared": true,
"index": 5 "index": 5
}
} }
}
} }
\ No newline at end of file
{ {
"name": "ORS Amarisoft", "name": "ORS Amarisoft",
"description": "4G and 5G amarisoft stack for ORS", "description": "4G and 5G amarisoft stack for ORS",
"serialisation": "xml", "serialisation": "xml",
"software-type": { "software-type": {
"enb": { "enb": {
"title": "eNB", "title": "eNB",
"software-type": "enb", "software-type": "enb",
"description": "eNodeB Configuration", "description": "eNodeB Configuration",
"request": "instance-tdd3700-enb-input-schema.json", "request": "instance-tdd3700-enb-input-schema.json",
"response": "instance-tdd3700-enb-schema.json", "response": "instance-tdd3700-enb-schema.json",
"index": 0 "index": 0
}, },
"enb-epc": { "enb-epc": {
"title": "eNB and EPC", "title": "eNB and EPC",
"software-type": "enb-epc", "software-type": "enb-epc",
"description": "eNodeB and EPC Configuration", "description": "eNodeB and EPC Configuration",
"request": "instance-tdd3700-enb-epc-input-schema.json", "request": "instance-tdd3700-enb-epc-input-schema.json",
"response": "instance-tdd3700-enb-epc-schema.json", "response": "instance-tdd3700-enb-epc-schema.json",
"index": 1 "index": 1
}, },
"gnb": { "gnb": {
"title": "gNB", "title": "gNB",
"software-type": "gnb", "software-type": "gnb",
"description": "gNodeB Configuration", "description": "gNodeB Configuration",
"request": "instance-tdd3700-gnb-input-schema.json", "request": "instance-tdd3700-gnb-input-schema.json",
"response": "instance-tdd3700-gnb-schema.json", "response": "instance-tdd3700-gnb-schema.json",
"index": 2 "index": 2
}, },
"gnb-epc": { "gnb-epc": {
"title": "gNB and EPC", "title": "gNB and EPC",
"software-type": "gnb-epc", "software-type": "gnb-epc",
"description": "gNodeB and EPC Configuration", "description": "gNodeB and EPC Configuration",
"request": "instance-tdd3700-gnb-epc-input-schema.json", "request": "instance-tdd3700-gnb-epc-input-schema.json",
"response": "instance-tdd3700-gnb-epc-schema.json", "response": "instance-tdd3700-gnb-epc-schema.json",
"index": 3 "index": 3
}, },
"epc": { "epc": {
"title": "EPC", "title": "EPC",
"software-type": "epc", "software-type": "epc",
"description": "EPC Configuration", "description": "EPC Configuration",
"request": "instance-epc-input-schema.json", "request": "instance-epc-input-schema.json",
"response": "instance-epc-schema.json", "response": "instance-epc-schema.json",
"index": 4 "index": 4
}, },
"epc-slave": { "epc-slave": {
"title": "Sim Card", "title": "Sim Card",
"description": "EPC Configuration", "description": "EPC Configuration",
"software-type": "epc", "software-type": "epc",
"request": "instance-epc-slave-input-schema.json", "request": "instance-epc-slave-input-schema.json",
"response": "instance-epc-slave-schema.json", "response": "instance-epc-slave-schema.json",
"shared": true, "shared": true,
"index": 5 "index": 5
}
} }
}
} }
\ No newline at end of file
{ {
"name": "ORS Amarisoft", "name": "ORS Amarisoft",
"description": "4G and 5G amarisoft stack for ORS", "description": "4G and 5G amarisoft stack for ORS",
"serialisation": "xml", "serialisation": "xml",
"software-type": { "software-type": {
"enb": { "enb": {
"title": "eNB", "title": "eNB",
"software-type": "enb", "software-type": "enb",
"description": "eNodeB Configuration", "description": "eNodeB Configuration",
"request": "instance-{{ rf_mode }}-enb-input-schema.json", "request": "instance-{{ rf_mode }}-enb-input-schema.json",
"response": "instance-{{ rf_mode }}-enb-schema.json", "response": "instance-{{ rf_mode }}-enb-schema.json",
"index": 0 "index": 0
}, },
"enb-epc": { "enb-epc": {
"title": "eNB and EPC", "title": "eNB and EPC",
"software-type": "enb-epc", "software-type": "enb-epc",
"description": "eNodeB and EPC Configuration", "description": "eNodeB and EPC Configuration",
"request": "instance-{{ rf_mode }}-enb-epc-input-schema.json", "request": "instance-{{ rf_mode }}-enb-epc-input-schema.json",
"response": "instance-{{ rf_mode }}-enb-epc-schema.json", "response": "instance-{{ rf_mode }}-enb-epc-schema.json",
"index": 1 "index": 1
}, },
"gnb": { "gnb": {
"title": "gNB", "title": "gNB",
"software-type": "gnb", "software-type": "gnb",
"description": "gNodeB Configuration", "description": "gNodeB Configuration",
"request": "instance-{{ rf_mode }}-gnb-input-schema.json", "request": "instance-{{ rf_mode }}-gnb-input-schema.json",
"response": "instance-{{ rf_mode }}-gnb-schema.json", "response": "instance-{{ rf_mode }}-gnb-schema.json",
"index": 2 "index": 2
}, },
"gnb-epc": { "gnb-epc": {
"title": "gNB and EPC", "title": "gNB and EPC",
"software-type": "gnb-epc", "software-type": "gnb-epc",
"description": "gNodeB and EPC Configuration", "description": "gNodeB and EPC Configuration",
"request": "instance-{{ rf_mode }}-gnb-epc-input-schema.json", "request": "instance-{{ rf_mode }}-gnb-epc-input-schema.json",
"response": "instance-{{ rf_mode }}-gnb-epc-schema.json", "response": "instance-{{ rf_mode }}-gnb-epc-schema.json",
"index": 3 "index": 3
}, },
"epc": { "epc": {
"title": "EPC", "title": "EPC",
"software-type": "epc", "software-type": "epc",
"description": "EPC Configuration", "description": "EPC Configuration",
"request": "instance-epc-input-schema.json", "request": "instance-epc-input-schema.json",
"response": "instance-epc-schema.json", "response": "instance-epc-schema.json",
"index": 4 "index": 4
}, },
"epc-slave": { "epc-slave": {
"title": "Sim Card", "title": "Sim Card",
"description": "EPC Configuration", "description": "EPC Configuration",
"software-type": "epc", "software-type": "epc",
"request": "instance-epc-slave-input-schema.json", "request": "instance-epc-slave-input-schema.json",
"response": "instance-epc-slave-schema.json", "response": "instance-epc-slave-schema.json",
"shared": true, "shared": true,
"index": 5 "index": 5
}
} }
}
} }
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