Skip to content

Commit

Permalink
chore: address review comments
Browse files Browse the repository at this point in the history
Signed-off-by: Dario Faccin <[email protected]>
  • Loading branch information
dariofaccin committed Dec 2, 2024
1 parent b41cadb commit 692674d
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
6 changes: 3 additions & 3 deletions docs/json_schemas/fiveg_core_gnb/v0/requirer.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,17 +7,17 @@
},
"FivegCoreGnbRequirerAppData": {
"properties": {
"cu-name": {
"gnb-name": {
"description": "Unique identifier of the CU/gnB.",
"examples": [
"gnb001"
],
"title": "Cu-Name",
"title": "Gnb-Name",
"type": "string"
}
},
"required": [
"cu-name"
"gnb-name"
],
"title": "FivegCoreGnbRequirerAppData",
"type": "object"
Expand Down
2 changes: 1 addition & 1 deletion interfaces/fiveg_core_gnb/v0/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ provider:
unit: {}
requirer:
app: {
"cu-name": "gnb001"
"gnb-name": "gnb001"
}
unit: {}
```
6 changes: 3 additions & 3 deletions interfaces/fiveg_core_gnb/v0/schema.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
RequirerSchema:
unit: <empty>
app: {
"cu-name": "gnb001",
"gnb-name": "gnb001",
}
"""

Expand Down Expand Up @@ -71,8 +71,8 @@ class FivegCoreGnbProviderAppData(BaseModel):


class FivegCoreGnbRequirerAppData(BaseModel):
cu_name: str = Field(
alias="cu-name",
gnb_name: str = Field(
alias="gnb-name",
description="Unique identifier of the CU/gnB.",
examples=["gnb001"]
)
Expand Down

0 comments on commit 692674d

Please sign in to comment.