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
e317697f
Commit
e317697f
authored
Sep 27, 2023
by
Kirill Smelkov
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
.
parent
84929815
Changes
9
Hide whitespace changes
Inline
Side-by-side
Showing
9 changed files
with
76 additions
and
0 deletions
+76
-0
software/ors-amarisoft/cell/lte/input-schema.json
software/ors-amarisoft/cell/lte/input-schema.json
+1
-0
software/ors-amarisoft/cell/nr/input-schema.json
software/ors-amarisoft/cell/nr/input-schema.json
+1
-0
software/ors-amarisoft/cell/peer/lte/input-schema.json
software/ors-amarisoft/cell/peer/lte/input-schema.json
+5
-0
software/ors-amarisoft/cell/peer/nr/input-schema.json
software/ors-amarisoft/cell/peer/nr/input-schema.json
+5
-0
software/ors-amarisoft/instance-ue-input-schema.json
software/ors-amarisoft/instance-ue-input-schema.json
+0
-0
software/ors-amarisoft/instance-ue-slave-input-schema.json
software/ors-amarisoft/instance-ue-slave-input-schema.json
+12
-0
software/ors-amarisoft/ue/cell/input-schema.json
software/ors-amarisoft/ue/cell/input-schema.json
+22
-0
software/ors-amarisoft/ue/cell/lte/input-schema.json
software/ors-amarisoft/ue/cell/lte/input-schema.json
+15
-0
software/ors-amarisoft/ue/cell/nr/input-schema.json
software/ors-amarisoft/ue/cell/nr/input-schema.json
+15
-0
No files found.
software/ors-amarisoft/cell/lte/input-schema.json
View file @
e317697f
...
...
@@ -15,6 +15,7 @@
"const"
:
"lte"
,
"template"
:
"lte"
},
"tdd_ul_dl_config"
:
{
"title"
:
"TDD Configuration"
,
"type"
:
"string"
,
...
...
software/ors-amarisoft/cell/nr/input-schema.json
View file @
e317697f
...
...
@@ -15,6 +15,7 @@
"const"
:
"nr"
,
"template"
:
"nr"
},
"tdd_ul_dl_config"
:
{
"title"
:
"TDD Configuration"
,
"type"
:
"string"
,
...
...
software/ors-amarisoft/cell/peer/lte/input-schema.json
View file @
e317697f
...
...
@@ -13,6 +13,11 @@
],
"properties"
:
{
"peer_cell_type"
:
{
"const"
:
"lte"
,
"template"
:
"lte"
},
"e_cell_id"
:
{
"title"
:
"Cell ID"
,
"description"
:
"28 bit E-UTRAN cell identity. Concatenation of enb_id and cell_id of the neighbour cell."
,
...
...
software/ors-amarisoft/cell/peer/nr/input-schema.json
View file @
e317697f
...
...
@@ -16,6 +16,11 @@
],
"properties"
:
{
"peer_cell_type"
:
{
"const"
:
"nr"
,
"template"
:
"nr"
},
"nr_cell_id"
:
{
"title"
:
"NR Cell ID"
,
"description"
:
"Concatenation of gnb_id and cell_id of the cell"
,
...
...
software/ors-amarisoft/instance-ue-input-schema.json
.jinja2
→
software/ors-amarisoft/instance-ue-input-schema.json
View file @
e317697f
File moved
software/ors-amarisoft/instance-ue-slave-input-schema.json
0 → 100644
View file @
e317697f
{
"$schema"
:
"https://json-schema.org/draft/2020-12/schema"
,
"title"
:
"UEsim shared instance"
,
"type"
:
"object"
,
"oneOf"
:
[
{
"$ref"
:
"ru/input-schema.json"
},
{
"$ref"
:
"ue/cell/input-schema.json"
},
{
"$ref"
:
"ue/input-schema.json"
}
]
}
software/ors-amarisoft/ue/cell/input-schema.json
0 → 100644
View file @
e317697f
{
"$schema"
:
"https://json-schema.org/draft/2020-12/schema"
,
"title"
:
"Cell"
,
"type"
:
"object"
,
"oneOf"
:
[
{
"$ref"
:
"../../ue/cell/lte/input-schema.json"
},
{
"$ref"
:
"../../ue/cell/nr/input-schema.json"
}
],
"$defs"
:
{
"ue-cell-common"
:
{
"properties"
:
{
"ue_cell_type"
:
{
"type"
:
"string"
,
"options"
:
{
"hidden"
:
true
}
},
}
}
}
software/ors-amarisoft/ue/cell/lte/input-schema.json
0 → 100644
View file @
e317697f
{
"$schema"
:
"https://json-schema.org/draft/2020-12/schema"
,
"title"
:
"LTE Cell"
,
"type"
:
"object"
,
"$ref"
:
"../../../ue/cell/input-schema.json#/$defs/cell-common"
,
"properties"
:
{
"ue_cell_type"
:
{
"const"
:
"lte"
,
"template"
:
"lte"
},
}
}
software/ors-amarisoft/ue/cell/nr/input-schema.json
0 → 100644
View file @
e317697f
{
"$schema"
:
"https://json-schema.org/draft/2020-12/schema"
,
"title"
:
"NR Cell"
,
"type"
:
"object"
,
"$ref"
:
"../../../ue/cell/input-schema.json#/$defs/cell-common"
,
"properties"
:
{
"ue_cell_type"
:
{
"const"
:
"nr"
,
"template"
:
"nr"
},
}
}
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