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
2 changes: 1 addition & 1 deletion code/API_definitions/qos-booking-and-assignment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -1021,7 +1021,7 @@
type: integer
format: int32
minimum: 1
maximum: 86400
maximum: 2147483647
example: 3600

Devices:
Expand Down Expand Up @@ -1232,7 +1232,7 @@
status: "SUCCESSFUL"
statusInfo: "BOOKING_ACCEPTED"

BOOKING_FAILURE:

Check warning on line 1235 in code/API_definitions/qos-booking-and-assignment.yaml

View workflow job for this annotation

GitHub Actions / validation / Validate

Component may be unused

[S-211] Potentially unused component has been detected. | Suggestion: Remove the component if it is obsolete, or reference it from the API definition.
summary: Booking Failed
description: QoS Booking failed, `statusInfo` has additional info. No `bookingId` will be returned.
value:
Expand Down
3 changes: 1 addition & 2 deletions code/API_definitions/qos-booking.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -481,8 +481,7 @@
type: integer
format: int32
minimum: 1
maximum: 31622400
# Assume 1 year
maximum: 2147483647
serviceArea:
$ref: "#/components/schemas/Area"
required:
Expand Down Expand Up @@ -683,7 +682,7 @@
required:
- areaName
properties:
areaName:

Check notice on line 685 in code/API_definitions/qos-booking.yaml

View workflow job for this annotation

GitHub Actions / validation / Validate

String has no format/pattern/enum

[S-313] Schema of type string should specify a format, pattern, enum, or const. | Suggestion: Acceptable if free-form field or implementation-dependent — no fix needed.
type: string
maxLength: 256

Expand All @@ -693,10 +692,10 @@
Point:
$ref: '../common/CAMARA_common.yaml#/components/schemas/Point'

Latitude:

Check warning on line 695 in code/API_definitions/qos-booking.yaml

View workflow job for this annotation

GitHub Actions / validation / Validate

Component may be unused

[S-211] Potentially unused component has been detected. | Suggestion: Remove the component if it is obsolete, or reference it from the API definition.
$ref: '../common/CAMARA_common.yaml#/components/schemas/Latitude'

Longitude:

Check warning on line 698 in code/API_definitions/qos-booking.yaml

View workflow job for this annotation

GitHub Actions / validation / Validate

Component may be unused

[S-211] Potentially unused component has been detected. | Suggestion: Remove the component if it is obsolete, or reference it from the API definition.
$ref: '../common/CAMARA_common.yaml#/components/schemas/Longitude'

Device:
Expand All @@ -718,7 +717,7 @@
$ref: "#/components/schemas/ApplicationServerIpv6Address"
minProperties: 1

ApplicationServerIpv4Address:

Check notice on line 720 in code/API_definitions/qos-booking.yaml

View workflow job for this annotation

GitHub Actions / validation / Validate

String has no format/pattern/enum

[S-313] Schema of type string should specify a format, pattern, enum, or const. | Suggestion: Acceptable if free-form field or implementation-dependent — no fix needed.
type: string
maxLength: 15
example: "198.51.100.0/24"
Expand All @@ -728,7 +727,7 @@
- address/mask - an IP number as above with a mask width of the form 1.2.3.4/24.
In this case, all IP numbers from 1.2.3.0 to 1.2.3.255 will match. The bit width MUST be valid for the IP version.

ApplicationServerIpv6Address:

Check notice on line 730 in code/API_definitions/qos-booking.yaml

View workflow job for this annotation

GitHub Actions / validation / Validate

String has no format/pattern/enum

[S-313] Schema of type string should specify a format, pattern, enum, or const. | Suggestion: Acceptable if free-form field or implementation-dependent — no fix needed.
type: string
maxLength: 45
example: "2001:db8:85a3:8d3:1319:8a2e:370:7344"
Expand Down