Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 7 additions & 2 deletions code/API_definitions/dedicated-network-accesses.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ paths:
in: query
description: Dedicated network id
schema:
$ref: 'dedicated-network.yaml#/components/schemas/NetworkId'
$ref: '#/components/schemas/NetworkId'
- $ref: "#/components/parameters/x-device"
- $ref: "#/components/parameters/x-correlator"
responses:
Expand Down Expand Up @@ -268,12 +268,17 @@ components:
type: string
format: uuid

NetworkId:
description: Network id in UUID format
type: string
format: uuid

BaseNetworkAccessInfo:
description: Common attributes of a device access to a dedicated network
type: object
properties:
networkId:
$ref: "dedicated-network.yaml#/components/schemas/NetworkId"
$ref: "#/components/schemas/NetworkId"
device:
$ref: "#/components/schemas/Device"
qosProfiles:
Expand Down
5 changes: 4 additions & 1 deletion code/API_definitions/dedicated-network.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -260,12 +260,15 @@ components:
type: string
format: uuid

NetworkProfileId:
type: string

BaseNetworkInfo:
description: Common attributes of a dedicated network
type: object
properties:
profileId:
$ref: 'dedicated-network-profiles.yaml#/components/schemas/NetworkProfileId'
$ref: '#/components/schemas/NetworkProfileId'
serviceTime:
$ref: '#/components/schemas/ServiceTime'
serviceArea:
Expand Down