Commit 3cbe0665 authored by piscione's avatar piscione Committed by Elian Kraja
Browse files

Fixes based on linter errors.

parent 8f515265
......@@ -21,7 +21,8 @@
],
"tags": [
{
"name": "wai"
"name": "wai",
"description": "WLAN Access Information"
}
],
"paths": {
......@@ -754,6 +755,9 @@
"responses": {
"204": {
"description": "No content"
},
"400": {
"description": "Bad Request"
}
}
}
......@@ -2077,7 +2081,7 @@
"properties": {
"antennaId": {
"type": "integer",
"description": "The Antenna ID field contains the identifying number for the antenna(s) used for this measurement. Antenna ID is defined in clause 9.4.2.40 of IEEE 802.11-2016.",
"description": "The Antenna ID field contains the identifying number for the antenna(s) used for this measurement. Antenna ID is defined in clause 9.4.2.40 of IEEE 802.11-2016.",
"contentEncoding": "int32"
},
"bssid": {
......@@ -3825,9 +3829,9 @@
"discriminator": {
"propertyName": "notificationType",
"mapping": {
"AssocStaNotification": "AssocStaNotification",
"MeasurementReportNotification": "MeasurementReportNotification",
"StaDataRateNotification": "StaDataRateNotification"
"AssocStaNotification": "#/components/schemas/AssocStaNotification",
"MeasurementReportNotification": "#/components/schemas/MeasurementReportNotification",
"StaDataRateNotification": "#/components/schemas/StaDataRateNotification"
}
}
},
......@@ -3845,9 +3849,9 @@
"discriminator": {
"propertyName": "subscriptionType",
"mapping": {
"AssocStaSubscription": "AssocStaSubscription",
"MeasurementReportSubscription": "MeasurementReportSubscription",
"StaDataRateSubscription": "StaDataRateSubscription"
"AssocStaNotification": "#/components/schemas/AssocStaNotification",
"MeasurementReportNotification": "#/components/schemas/MeasurementReportNotification",
"StaDataRateNotification": "#/components/schemas/StaDataRateNotification"
}
}
},
......
......@@ -15,6 +15,7 @@ servers:
tags:
- name: wai
description: WLAN Access Information
paths:
/queries/ap/ap_information:
......@@ -494,6 +495,8 @@ paths:
responses:
'204':
description: "No content"
'400':
description: "Bad Request"
parameters: []
......@@ -2747,9 +2750,9 @@ components:
discriminator:
propertyName: notificationType
mapping:
AssocStaNotification: AssocStaNotification
MeasurementReportNotification: MeasurementReportNotification
StaDataRateNotification: StaDataRateNotification
AssocStaNotification: '#/components/schemas/AssocStaNotification'
MeasurementReportNotification: '#/components/schemas/MeasurementReportNotification'
StaDataRateNotification: '#/components/schemas/StaDataRateNotification'
InlineSubscription:
title: InlineSubscription
required:
......@@ -2761,9 +2764,9 @@ components:
discriminator:
propertyName: subscriptionType
mapping:
AssocStaSubscription: AssocStaSubscription
MeasurementReportSubscription: MeasurementReportSubscription
StaDataRateSubscription: StaDataRateSubscription
AssocStaNotification: '#/components/schemas/AssocStaNotification'
MeasurementReportNotification: '#/components/schemas/MeasurementReportNotification'
StaDataRateNotification: '#/components/schemas/StaDataRateNotification'
Links:
title: Links
required:
......
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