Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
S
slapos
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Kirill Smelkov
slapos
Commits
16d64161
Commit
16d64161
authored
Sep 27, 2023
by
Kirill Smelkov
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
.
parent
7760cec5
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
96 additions
and
0 deletions
+96
-0
software/ors-amarisoft/cell/peer/input-schema.json
software/ors-amarisoft/cell/peer/input-schema.json
+31
-0
software/ors-amarisoft/cell/peer/lte/input-schema.json
software/ors-amarisoft/cell/peer/lte/input-schema.json
+25
-0
software/ors-amarisoft/cell/peer/nr/input-schema.json
software/ors-amarisoft/cell/peer/nr/input-schema.json
+40
-0
No files found.
software/ors-amarisoft/cell/peer/input-schema.json
0 → 100644
View file @
16d64161
{
"$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"
}
}
}
}
}
software/ors-amarisoft/cell/peer/lte/input-schema.json
0 → 100644
View file @
16d64161
{
"$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"
}
}
}
software/ors-amarisoft/cell/peer/nr/input-schema.json
0 → 100644
View file @
16d64161
{
"$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"
}
}
}
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment