Commit af819da1 authored by piscione's avatar piscione
Browse files

Made fixes based on linter errors.

parent 2112055a
Pipeline #11166 running with stage
...@@ -1546,7 +1546,8 @@ ...@@ -1546,7 +1546,8 @@
"$ref": "#/components/schemas/AdjacentAppInfoSubscription.links" "$ref": "#/components/schemas/AdjacentAppInfoSubscription.links"
}, },
"callbackReference": { "callbackReference": {
"type": "uri", "type": "string",
"format": "uri",
"description": "URI selected by the service consumer to receive notifications on the subscribed Application Mobility Service. This shall be included both in the request and in response." "description": "URI selected by the service consumer to receive notifications on the subscribed Application Mobility Service. This shall be included both in the request and in response."
}, },
"requestTestNotification": { "requestTestNotification": {
...@@ -1691,7 +1692,8 @@ ...@@ -1691,7 +1692,8 @@
"properties": { "properties": {
"websocketUri": { "websocketUri": {
"description": "Set by AMS to indicate to the service consumer the Websocket URI to be used for delivering notifications.", "description": "Set by AMS to indicate to the service consumer the Websocket URI to be used for delivering notifications.",
"type": "uri" "type": "string",
"format": "uri"
}, },
"requestWebsocketUri": { "requestWebsocketUri": {
"type": "boolean", "type": "boolean",
...@@ -1711,7 +1713,8 @@ ...@@ -1711,7 +1713,8 @@
"$ref": "#/components/schemas/MobilityProcedureSubscription.links" "$ref": "#/components/schemas/MobilityProcedureSubscription.links"
}, },
"callbackReference": { "callbackReference": {
"type": "uri", "type": "string",
"format": "uri",
"description": "URI selected by the service consumer to receive notifications on the subscribed Application Mobility Service. This shall be included both in the request and in response." "description": "URI selected by the service consumer to receive notifications on the subscribed Application Mobility Service. This shall be included both in the request and in response."
}, },
"requestTestNotification": { "requestTestNotification": {
......
...@@ -1006,7 +1006,8 @@ components: ...@@ -1006,7 +1006,8 @@ components:
_links: _links:
$ref: '#/components/schemas/AdjacentAppInfoSubscription.links' $ref: '#/components/schemas/AdjacentAppInfoSubscription.links'
callbackReference: callbackReference:
type: uri type: string
format: uri
description: URI selected by the service consumer to receive notifications on the subscribed Application Mobility Service. This shall be included both in the request and in response. description: URI selected by the service consumer to receive notifications on the subscribed Application Mobility Service. This shall be included both in the request and in response.
requestTestNotification: requestTestNotification:
type: boolean type: boolean
...@@ -1111,7 +1112,8 @@ components: ...@@ -1111,7 +1112,8 @@ components:
properties: properties:
websocketUri: websocketUri:
description: Set by AMS to indicate to the service consumer the Websocket URI to be used for delivering notifications. description: Set by AMS to indicate to the service consumer the Websocket URI to be used for delivering notifications.
type: uri type: string
format: uri
requestWebsocketUri: requestWebsocketUri:
type: boolean type: boolean
description: Set to true by the service consumer to indicate that Websocket delivery is requested. description: Set to true by the service consumer to indicate that Websocket delivery is requested.
...@@ -1126,7 +1128,8 @@ components: ...@@ -1126,7 +1128,8 @@ components:
_links: _links:
$ref: '#/components/schemas/MobilityProcedureSubscription.links' $ref: '#/components/schemas/MobilityProcedureSubscription.links'
callbackReference: callbackReference:
type: uri type: string
format: uri
description: URI selected by the service consumer to receive notifications on the subscribed Application Mobility Service. This shall be included both in the request and in response. description: URI selected by the service consumer to receive notifications on the subscribed Application Mobility Service. This shall be included both in the request and in response.
requestTestNotification: requestTestNotification:
type: boolean type: boolean
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment