WlanInformationApi.json 146 KB
Newer Older
                        "href": "http://meAppServer.example.com/wai/v2/subscriptions/sub123"
                      }
                    },
                    "expiryDeadline": {
                      "seconds": 1977836800,
                      "nanoSeconds": 0
                    },
                    "apId": {
                      "bssid": "005C0A0A0A0A",
                      "ssid": [
                        "myNetworkSsid"
                      ],
                      "ipAddress": [
                        "10.10.100.1"
                      ]
                    }
          },
          "required": true
Michel Roy's avatar
Michel Roy committed
        },
        "responses": {
          "200": {
            "description": "Successful subscription modification",
            "headers": {},
Michel Roy's avatar
Michel Roy committed
            "content": {
              "application/json": {
                "schema": {
                  "oneOf": [
                    {
                      "$ref": "#/components/schemas/AssocStaSubscription"
                    },
                    {
                      "$ref": "#/components/schemas/StaDataRateSubscription"
                    },
                    {
                      "$ref": "#/components/schemas/MeasurementReportSubscription"
                    }
                  ],
                  "examples": [
                    {
                      "_links": {
                        "self": {
                          "href": "http://[hostIP]/sbox-xyz123/wai/v2/subscriptions/sub123"
                        }
                      },
                      "callbackReference": "http://my.callback.com/wai/some-id",
                      "apId": {
                        "bssid": "005C0A0A0A0A",
                        "ssid": [
                          "myNetworkSsid"
                        ],
                        "ipAddress": [
                          "10.10.100.1"
                        ]
                      }
                    }
                  ],
                  "contentMediaType": "application/json"
                "examples": {
                  "example-sub-type": {
                    "value": {
                      "subscriptionType": "AssocStaSubscription",
                      "_links": {
                        "self": {
                          "href": "http://[hostIP]/sbox-xyz123/wai/v2/subscriptions/sub123"
                        }
                      },
                      "callbackReference": "http://my.callback.com/wai/some-id",
                      "apId": {
                        "bssid": "005C0A0A0A0A",
                        "ssid": [
                          "myNetworkSsid"
                        ],
                        "ipAddress": [
                          "10.10.100.1"
                        ]
                      }
            "description": "Bad Request : used to indicate that incorrect parameters were passed to the request.",
            "headers": {},
            "content": {
              "application/problem+json": {
                "schema": {
                  "$ref": "#/components/schemas/ProblemDetails"
                }
              }
            }
Michel Roy's avatar
Michel Roy committed
          },
          "401": {
            "description": "Unauthorized :  used when the client did not submit credentials.",
            "headers": {},
            "content": {
              "application/problem+json": {
                "schema": {
                  "$ref": "#/components/schemas/ProblemDetails"
                }
              }
            }
Michel Roy's avatar
Michel Roy committed
          },
          "403": {
            "description": "Forbidden :  operation is not allowed given the current status of the resource.",
            "headers": {},
            "content": {
              "application/problem+json": {
                "schema": {
                  "$ref": "#/components/schemas/ProblemDetails"
                }
              }
            }
Michel Roy's avatar
Michel Roy committed
          },
          "404": {
            "description": "Not Found :  used when a client provided a URI that cannot be mapped to a valid resource URI.",
            "headers": {},
            "content": {
              "application/problem+json": {
                "schema": {
                  "$ref": "#/components/schemas/ProblemDetails"
                }
              }
            }
Michel Roy's avatar
Michel Roy committed
          },
          "406": {
            "description": "Not Acceptable : used to indicate that the server cannot provide the any of the content formats supported by the client.",
            "headers": {},
            "content": {
              "application/problem+json": {
                "schema": {
                  "$ref": "#/components/schemas/ProblemDetails"
                }
              }
            }
Michel Roy's avatar
Michel Roy committed
          },
          "412": {
            "description": "Precondition failed :  used when a condition has failed during conditional requests, e.g. when using ETags to avoid write conflicts when using PUT",
            "headers": {},
            "content": {
              "application/problem+json": {
                "schema": {
                  "$ref": "#/components/schemas/ProblemDetails"
                }
              }
            }
Michel Roy's avatar
Michel Roy committed
          },
          "422": {
            "description": "Unprocessable Entity : used to indicate that the server understands the content type of the request entity and that the syntax of the request entity is correct but that the server is unable to process the contained instructions. This error condition can occur if an JSON request body is syntactically correct but semantically incorrect, for example if the target area for the request is considered too large. This error condition can also occur if the capabilities required by the request are not supported.",
            "headers": {},
            "content": {
              "application/problem+json": {
                "schema": {
                  "$ref": "#/components/schemas/ProblemDetails"
                },
                "examples": {
                  "application/problem+json": {
                    "value": {
                      "type": "https://meAppServer.example.com/wai/v2/probs/too-many targets",
                      "title": "Too many targets",
                      "status": 422,
                      "detail": "The target area for the request is considered too large",
                      "instance": "/meAppClient.example.com/77777/msgs/abc"
                    }
                  }
                }
              }
            }
Michel Roy's avatar
Michel Roy committed
          },
          "429": {
            "description": "Too Many Requests : used when a rate limiter has triggered.",
            "headers": {},
            "content": {
              "application/problem+json": {
                "schema": {
                  "$ref": "#/components/schemas/ProblemDetails"
                }
              }
            }
        },
        "deprecated": false
Michel Roy's avatar
Michel Roy committed
      },
      "delete": {
        "tags": [
Michel Roy's avatar
Michel Roy committed
          "wai"
        "summary": "Cancels an existing subscription, identified by its self-referring URI returned on creation (initial POST)",
Michel Roy's avatar
Michel Roy committed
        "description": "Cancels an existing subscription, identified by its self-referring URI returned on creation (initial POST)",
        "operationId": "subscriptionsDELETE",
        "parameters": [
          {
            "name": "subscriptionId",
            "in": "path",
            "description": "Subscription Id, specifically the \"self\" returned in the subscription request",
            "required": true,
            "style": "simple",
            "schema": {
              "type": "string"
            }
Michel Roy's avatar
Michel Roy committed
          }
        ],
        "responses": {
          "204": {
            "description": "No Content",
            "headers": {},
            "content": {}
Michel Roy's avatar
Michel Roy committed
          },
          "401": {
            "description": "Unauthorized :  used when the client did not submit credentials.",
            "headers": {},
            "content": {
              "application/problem+json": {
                "schema": {
                  "$ref": "#/components/schemas/ProblemDetails"
                }
              }
            }
Michel Roy's avatar
Michel Roy committed
          },
          "403": {
            "description": "Forbidden :  operation is not allowed given the current status of the resource.",
            "headers": {},
            "content": {
              "application/problem+json": {
                "schema": {
                  "$ref": "#/components/schemas/ProblemDetails"
                }
              }
            }
Michel Roy's avatar
Michel Roy committed
          },
          "404": {
            "description": "Not Found :  used when a client provided a URI that cannot be mapped to a valid resource URI.",
            "headers": {},
            "content": {
              "application/problem+json": {
                "schema": {
                  "$ref": "#/components/schemas/ProblemDetails"
                }
              }
            }
Michel Roy's avatar
Michel Roy committed
          },
          "429": {
            "description": "Too Many Requests : used when a rate limiter has triggered.",
            "headers": {},
            "content": {
              "application/problem+json": {
                "schema": {
                  "$ref": "#/components/schemas/ProblemDetails"
                }
              }
            }
        },
        "deprecated": false
      },
      "parameters": []
Michel Roy's avatar
Michel Roy committed
    },
    "/measurements": {
      "get": {
        "tags": [
          "wai"
        ],
        "summary": "Queries information on measurements configuration",
Michel Roy's avatar
Michel Roy committed
        "description": "Queries information on measurements configuration",
        "operationId": "measurementLinkList_measurementsGET",
        "parameters": [],
Michel Roy's avatar
Michel Roy committed
        "responses": {
          "200": {
            "description": "Response body contains the list of links to requestors measurement configurations.",
            "headers": {},
Michel Roy's avatar
Michel Roy committed
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/MeasurementConfigLinkList"
                },
                "examples": {
                  "example-measurement": {
                    "value": {
                      "_links": {
                        "self": {
                          "href": "http://meAppServer.example.com/wai/v2/measurements"
                        }
                      },
                      "measurementConfig": [
                        {
                          "href": "http://meAppServer.example.com/wai/v2/measurements/meas123",
                          "measurementId": "myId1"
                        }
                      ]
Michel Roy's avatar
Michel Roy committed
                    }
Michel Roy's avatar
Michel Roy committed
                }
              }
            }
          },
          "400": {
            "description": "Bad Request : used to indicate that incorrect parameters were passed to the request.",
            "headers": {},
            "content": {
              "application/problem+json": {
                "schema": {
                  "$ref": "#/components/schemas/ProblemDetails"
                }
              }
            }
Michel Roy's avatar
Michel Roy committed
          },
          "401": {
            "description": "Unauthorized :  used when the client did not submit credentials.",
            "headers": {},
            "content": {
              "application/problem+json": {
                "schema": {
                  "$ref": "#/components/schemas/ProblemDetails"
                }
              }
            }
Michel Roy's avatar
Michel Roy committed
          },
          "403": {
            "description": "Forbidden :  operation is not allowed given the current status of the resource.",
            "headers": {},
            "content": {
              "application/problem+json": {
                "schema": {
                  "$ref": "#/components/schemas/ProblemDetails"
                }
              }
            }
Michel Roy's avatar
Michel Roy committed
          },
          "404": {
            "description": "Not Found :  used when a client provided a URI that cannot be mapped to a valid resource URI.",
            "headers": {},
            "content": {
              "application/problem+json": {
                "schema": {
                  "$ref": "#/components/schemas/ProblemDetails"
                }
              }
            }
Michel Roy's avatar
Michel Roy committed
          },
          "406": {
            "description": "Not Acceptable : used to indicate that the server cannot provide the any of the content formats supported by the client.",
            "headers": {},
            "content": {
              "application/problem+json": {
                "schema": {
                  "$ref": "#/components/schemas/ProblemDetails"
                }
              }
            }
Michel Roy's avatar
Michel Roy committed
          },
          "429": {
            "description": "Too Many Requests : used when a rate limiter has triggered.",
            "headers": {},
            "content": {
              "application/problem+json": {
                "schema": {
                  "$ref": "#/components/schemas/ProblemDetails"
                }
              }
            }
Michel Roy's avatar
Michel Roy committed
          }
        },
        "deprecated": false
Michel Roy's avatar
Michel Roy committed
      },
      "post": {
        "tags": [
          "wai"
        ],
        "summary": "Creates a new measurement configuration",
Michel Roy's avatar
Michel Roy committed
        "description": "Creates a new measurement configuration",
        "operationId": "measurementsPOST",
        "parameters": [],
Michel Roy's avatar
Michel Roy committed
        "requestBody": {
          "description": "Measurement configuration information",
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/MeasurementConfig"
              },
              "examples": {
                "example-body": {
                  "value": {
                    "staId": [
                      {
                        "macId": "005C01111111",
                        "ssid": [
                          "myNetworkSsid",
                          "myOtherNetworkSsid"
                        ]
                      }
                    ],
                    "measurementId": "myId1",
                    "measurementInfo": {}
                  }
                }
Michel Roy's avatar
Michel Roy committed
              }
            }
          },
          "required": true
Michel Roy's avatar
Michel Roy committed
        },
        "responses": {
          "201": {
            "description": "Successful measurement configuration response",
            "headers": {},
Michel Roy's avatar
Michel Roy committed
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/MeasurementConfig"
                },
                "examples": {
                  "example-response": {
                    "value": {
                      "_links": {
                        "self": {
                          "href": "http://meAppServer.example.com/wai/v2/measurements/meas123"
                        }
                      },
                      "staId": [
                        {
                          "macId": "005C01111111",
                          "ssid": [
                            "myNetworkSsid",
                            "myOtherNetworkSsid"
                          ]
                        }
                      ],
                      "measurementId": "myId1",
                      "measurementInfo": {}
Michel Roy's avatar
Michel Roy committed
                    }
Michel Roy's avatar
Michel Roy committed
                }
              }
            }
          },
          "400": {
            "description": "Bad Request : used to indicate that incorrect parameters were passed to the request.",
            "headers": {},
            "content": {
              "application/problem+json": {
                "schema": {
                  "$ref": "#/components/schemas/ProblemDetails"
                }
              }
            }
Michel Roy's avatar
Michel Roy committed
          },
          "401": {
            "description": "Unauthorized :  used when the client did not submit credentials.",
            "headers": {},
            "content": {
              "application/problem+json": {
                "schema": {
                  "$ref": "#/components/schemas/ProblemDetails"
                }
              }
            }
Michel Roy's avatar
Michel Roy committed
          },
          "403": {
            "description": "Forbidden :  operation is not allowed given the current status of the resource.",
            "headers": {},
            "content": {
              "application/problem+json": {
                "schema": {
                  "$ref": "#/components/schemas/ProblemDetails"
                }
              }
            }
Michel Roy's avatar
Michel Roy committed
          },
          "404": {
            "description": "Not Found :  used when a client provided a URI that cannot be mapped to a valid resource URI.",
            "headers": {},
            "content": {
              "application/problem+json": {
                "schema": {
                  "$ref": "#/components/schemas/ProblemDetails"
                }
              }
            }
Michel Roy's avatar
Michel Roy committed
          },
          "406": {
            "description": "Not Acceptable : used to indicate that the server cannot provide the any of the content formats supported by the client.",
            "headers": {},
            "content": {
              "application/problem+json": {
                "schema": {
                  "$ref": "#/components/schemas/ProblemDetails"
                }
              }
            }
Michel Roy's avatar
Michel Roy committed
          },
          "415": {
            "description": "Unsupported Media Type :  used to indicate that the server or the client does not support the content type of the entity body.",
            "headers": {},
            "content": {
              "application/problem+json": {
                "schema": {
                  "$ref": "#/components/schemas/ProblemDetails"
                }
              }
            }
Michel Roy's avatar
Michel Roy committed
          },
          "422": {
            "description": "Unprocessable Entity : used to indicate that the server understands the content type of the request entity and that the syntax of the request entity is correct but that the server is unable to process the contained instructions. This error condition can occur if an JSON request body is syntactically correct but semantically incorrect, for example if the target area for the request is considered too large. This error condition can also occur if the capabilities required by the request are not supported.",
            "headers": {},
            "content": {
              "application/problem+json": {
                "schema": {
                  "$ref": "#/components/schemas/ProblemDetails"
                },
                "examples": {
                  "application/problem+json": {
                    "value": {
                      "type": "https://meAppServer.example.com/wai/v2/probs/too-many targets",
                      "title": "Too many targets",
                      "status": 422,
                      "detail": "The target area for the request is considered too large",
                      "instance": "/meAppClient.example.com/77777/msgs/abc"
                    }
                  }
                }
              }
            }
Michel Roy's avatar
Michel Roy committed
          },
          "429": {
            "description": "Too Many Requests : used when a rate limiter has triggered.",
            "headers": {},
            "content": {
              "application/problem+json": {
                "schema": {
                  "$ref": "#/components/schemas/ProblemDetails"
                }
              }
            }
Michel Roy's avatar
Michel Roy committed
          }
        },
        "deprecated": false
      },
      "parameters": []
Michel Roy's avatar
Michel Roy committed
    },
    "/measurements/{measurementConfigId}": {
      "get": {
        "tags": [
          "wai"
        ],
        "summary": "Queries information about an existing measurement configuration, identified by its self-referring URI returned on creation (initial POST)",
Michel Roy's avatar
Michel Roy committed
        "description": "Queries information about an existing measurement configuration, identified by its self-referring URI returned on creation (initial POST)",
        "operationId": "measurementsGET",
        "parameters": [
          {
            "name": "measurementConfigId",
            "in": "path",
            "description": "Measurement configuration Id, specifically the \"self\" returned in the measurement configuration request",
            "required": true,
            "style": "simple",
            "schema": {
              "type": "string"
            }
Michel Roy's avatar
Michel Roy committed
          }
        ],
        "responses": {
          "200": {
            "description": "Measurement configuration information",
            "headers": {},
Michel Roy's avatar
Michel Roy committed
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/MeasurementConfig"
                },
                "examples": {
                  "response-example": {
                    "value": {
                      "_links": {
                        "self": {
                          "href": "http://meAppServer.example.com/wai/v2/measurements/meas123"
                        }
                      },
                      "staId": [
                        {
                          "macId": "005C01111111",
                          "ssid": [
                            "myNetworkSsid",
                            "myOtherNetworkSsid"
                          ]
                        }
                      ],
                      "measurementId": "myId1",
                      "measurementInfo": {}
Michel Roy's avatar
Michel Roy committed
                    }
Michel Roy's avatar
Michel Roy committed
                }
              }
            }
          },
          "400": {
            "description": "Bad Request : used to indicate that incorrect parameters were passed to the request.",
            "headers": {},
            "content": {
              "application/problem+json": {
                "schema": {
                  "$ref": "#/components/schemas/ProblemDetails"
                }
              }
            }
Michel Roy's avatar
Michel Roy committed
          },
          "401": {
            "description": "Unauthorized :  used when the client did not submit credentials.",
            "headers": {},
            "content": {
              "application/problem+json": {
                "schema": {
                  "$ref": "#/components/schemas/ProblemDetails"
                }
              }
            }
Michel Roy's avatar
Michel Roy committed
          },
          "403": {
            "description": "Forbidden :  operation is not allowed given the current status of the resource.",
            "headers": {},
            "content": {
              "application/problem+json": {
                "schema": {
                  "$ref": "#/components/schemas/ProblemDetails"
                }
              }
            }
Michel Roy's avatar
Michel Roy committed
          },
          "404": {
            "description": "Not Found :  used when a client provided a URI that cannot be mapped to a valid resource URI.",
            "headers": {},
            "content": {
              "application/problem+json": {
                "schema": {
                  "$ref": "#/components/schemas/ProblemDetails"
                }
              }
            }
Michel Roy's avatar
Michel Roy committed
          },
          "406": {
            "description": "Not Acceptable : used to indicate that the server cannot provide the any of the content formats supported by the client.",
            "headers": {},
            "content": {
              "application/problem+json": {
                "schema": {
                  "$ref": "#/components/schemas/ProblemDetails"
                }
              }
            }
Michel Roy's avatar
Michel Roy committed
          },
          "429": {
            "description": "Too Many Requests : used when a rate limiter has triggered.",
            "headers": {},
            "content": {
              "application/problem+json": {
                "schema": {
                  "$ref": "#/components/schemas/ProblemDetails"
                }
              }
            }
Michel Roy's avatar
Michel Roy committed
          }
        },
        "deprecated": false
Michel Roy's avatar
Michel Roy committed
      },
      "put": {
        "tags": [
          "wai"
        ],
        "summary": "Updates an existing measurement configuration, identified by its self-referring URI returned on creation (initial POST)",
Michel Roy's avatar
Michel Roy committed
        "description": "Updates an existing measurement configuration, identified by its self-referring URI returned on creation (initial POST)",
        "operationId": "measurementsPUT",
        "parameters": [
          {
            "name": "measurementConfigId",
            "in": "path",
            "description": "Measurement configuration Id, specifically the \"self\" returned in the measurement configuration request",
            "required": true,
            "style": "simple",
            "schema": {
              "type": "string"
            }
          }
        ],
Michel Roy's avatar
Michel Roy committed
        "requestBody": {
          "description": "Measurement configuration to be modified",
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/MeasurementConfig"
              }
            }
          },
          "required": true
Michel Roy's avatar
Michel Roy committed
        },
        "responses": {
          "200": {
            "description": "Successful measurement configuration modification",
            "headers": {},
Michel Roy's avatar
Michel Roy committed
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/MeasurementConfig"
                }
              }
            }
          },
          "400": {
            "description": "Bad Request : used to indicate that incorrect parameters were passed to the request.",
            "headers": {},
            "content": {
              "application/problem+json": {
                "schema": {
                  "$ref": "#/components/schemas/ProblemDetails"
                }
              }
            }
Michel Roy's avatar
Michel Roy committed
          },
          "401": {
            "description": "Unauthorized :  used when the client did not submit credentials.",
            "headers": {},
            "content": {
              "application/problem+json": {
                "schema": {
                  "$ref": "#/components/schemas/ProblemDetails"
                }
              }
            }
Michel Roy's avatar
Michel Roy committed
          },
          "403": {
            "description": "Forbidden :  operation is not allowed given the current status of the resource.",
            "headers": {},
            "content": {
              "application/problem+json": {
                "schema": {
                  "$ref": "#/components/schemas/ProblemDetails"
                }
              }
            }
Michel Roy's avatar
Michel Roy committed
          },
          "404": {
            "description": "Not Found :  used when a client provided a URI that cannot be mapped to a valid resource URI.",
            "headers": {},
            "content": {
              "application/problem+json": {
                "schema": {
                  "$ref": "#/components/schemas/ProblemDetails"
                }
              }
            }
Michel Roy's avatar
Michel Roy committed
          },
          "406": {
            "description": "Not Acceptable : used to indicate that the server cannot provide the any of the content formats supported by the client.",
            "headers": {},
            "content": {
              "application/problem+json": {
                "schema": {
                  "$ref": "#/components/schemas/ProblemDetails"
                }
              }
            }
Michel Roy's avatar
Michel Roy committed
          },
          "412": {
            "description": "Precondition failed :  used when a condition has failed during conditional requests, e.g. when using ETags to avoid write conflicts when using PUT",
            "headers": {},
            "content": {
              "application/problem+json": {
                "schema": {
                  "$ref": "#/components/schemas/ProblemDetails"
                }
              }
            }
Michel Roy's avatar
Michel Roy committed
          },
          "422": {
            "description": "Unprocessable Entity : used to indicate that the server understands the content type of the request entity and that the syntax of the request entity is correct but that the server is unable to process the contained instructions. This error condition can occur if an JSON request body is syntactically correct but semantically incorrect, for example if the target area for the request is considered too large. This error condition can also occur if the capabilities required by the request are not supported.",
            "headers": {},
            "content": {
              "application/problem+json": {
                "schema": {
                  "$ref": "#/components/schemas/ProblemDetails"
                },
                "examples": {
                  "application/problem+json": {
                    "value": {
                      "type": "https://meAppServer.example.com/wai/v2/probs/too-many targets",
                      "title": "Too many targets",
                      "status": 422,
                      "detail": "The target area for the request is considered too large",
                      "instance": "/meAppClient.example.com/77777/msgs/abc"
                    }
                  }
                }
              }
            }
Michel Roy's avatar
Michel Roy committed
          },
          "429": {
            "description": "Too Many Requests : used when a rate limiter has triggered.",
            "headers": {},
            "content": {
              "application/problem+json": {
                "schema": {
                  "$ref": "#/components/schemas/ProblemDetails"
                }
              }
            }
Michel Roy's avatar
Michel Roy committed
          }
        },
        "deprecated": false
Michel Roy's avatar
Michel Roy committed
      },
      "delete": {
        "tags": [
          "wai"
        ],
        "summary": "Cancels an existing measurement configuration, identified by its self-referring URI returned on creation (initial POST)",
Michel Roy's avatar
Michel Roy committed
        "description": "Cancels an existing measurement configuration, identified by its self-referring URI returned on creation (initial POST)",
        "operationId": "measurementsDELETE",
        "parameters": [
          {
            "name": "measurementConfigId",
            "in": "path",
            "description": "Measurement configuration Id, specifically the \"self\" returned in the measurement configuration request",
            "required": true,
            "style": "simple",
            "schema": {
              "type": "string"
            }
Michel Roy's avatar
Michel Roy committed
          }
        ],
        "responses": {
          "204": {
            "description": "No Content",
            "headers": {},
            "content": {}
Michel Roy's avatar
Michel Roy committed
          },
          "401": {
            "description": "Unauthorized :  used when the client did not submit credentials.",
            "headers": {},
            "content": {
              "application/problem+json": {
                "schema": {
                  "$ref": "#/components/schemas/ProblemDetails"
                }
              }
            }
Michel Roy's avatar
Michel Roy committed
          },
          "403": {
            "description": "Forbidden :  operation is not allowed given the current status of the resource.",
            "headers": {},
            "content": {
              "application/problem+json": {
                "schema": {
                  "$ref": "#/components/schemas/ProblemDetails"
                }
              }
            }
Michel Roy's avatar
Michel Roy committed
          },
          "404": {
            "description": "Not Found :  used when a client provided a URI that cannot be mapped to a valid resource URI.",
            "headers": {},
            "content": {
              "application/problem+json": {
                "schema": {
                  "$ref": "#/components/schemas/ProblemDetails"
                }
              }
            }
Michel Roy's avatar
Michel Roy committed
          },
          "429": {
            "description": "Too Many Requests : used when a rate limiter has triggered.",
            "headers": {},
            "content": {
              "application/problem+json": {
                "schema": {
                  "$ref": "#/components/schemas/ProblemDetails"
                }
              }
            }
Michel Roy's avatar
Michel Roy committed
          }
        },
        "deprecated": false
      },
      "parameters": []
Michel Roy's avatar
Michel Roy committed
    }
  },
  "components": {
    "schemas": {
      "ApAssociated": {
        "title": "ApAssociated",
        "required": [
          "bssid"
        ],
        "type": "object",
Michel Roy's avatar
Michel Roy committed
        "properties": {
          "assocId": {
            "type": "string",
            "description": "Unique number which identifies a particular association between the station and Access Point."
Michel Roy's avatar
Michel Roy committed
          "bssid": {
            "type": "string",
            "description": "Basic Service Set Identifier (BSSID) is a unique identifier assigned to the Access Point (as network interface controller) for communications at the data link layer of a network segment. BSSID is typically set to an access point's MAC address."
Michel Roy's avatar
Michel Roy committed
          },
          "ipAddress": {
            "type": "array",
Michel Roy's avatar
Michel Roy committed
            "items": {
              "type": "string"
            "description": "IPv4 or IPv6 address allocated for the Access Point."
Michel Roy's avatar
Michel Roy committed
          },
          "ssid": {
            "type": "array",
Michel Roy's avatar
Michel Roy committed
            "items": {
              "type": "string"
            },
            "description": "Service Set Identifier to identify logical networks."
        }
      },
      "ApIdentity": {
        "title": "ApIdentity",
Michel Roy's avatar
Michel Roy committed
        "required": [
Michel Roy's avatar
Michel Roy committed
          "bssid"
Michel Roy's avatar
Michel Roy committed
        ],
        "type": "object",
        "properties": {
Michel Roy's avatar
Michel Roy committed
          "bssid": {
            "type": "string",
            "description": "Basic Service Set Identifier (BSSID) is a unique Identifier assigned to an Access Point (as network interface controller) for communications at the data link layer of a network segment. BSSID is typically set to an access point's MAC address."
Michel Roy's avatar
Michel Roy committed
          },
Michel Roy's avatar
Michel Roy committed
          "ipAddress": {
            "type": "array",
Michel Roy's avatar
Michel Roy committed
            "items": {
              "type": "string"
            },
            "description": "IPv4 or IPv6 address allocated for the Access Point."
Michel Roy's avatar
Michel Roy committed
          },
          "ssid": {
            "type": "array",
Michel Roy's avatar
Michel Roy committed
            "items": {
              "type": "string"
            },
            "description": "Service Set Identifier (SSID) to identify logical WLAN networks available via the Access Point."
        }
      },
      "ApInfo": {
        "title": "ApInfo",
Michel Roy's avatar
Michel Roy committed
        "required": [
          "apId"
Michel Roy's avatar
Michel Roy committed
        ],
        "type": "object",
        "properties": {
          "apId": {
Michel Roy's avatar
Michel Roy committed
            "$ref": "#/components/schemas/ApIdentity"
Michel Roy's avatar
Michel Roy committed
          },
          "apLocation": {
Michel Roy's avatar
Michel Roy committed
            "$ref": "#/components/schemas/ApLocation"
Michel Roy's avatar
Michel Roy committed
          },
          "bssLoad": {
Michel Roy's avatar
Michel Roy committed
            "$ref": "#/components/schemas/BssLoad"
Michel Roy's avatar
Michel Roy committed
          },
          "channel": {
Michel Roy's avatar
Michel Roy committed
            "type": "integer",
            "description": "Channel configured for the Access Point.",
            "contentEncoding": "int32"
Michel Roy's avatar
Michel Roy committed
          },
          "extBssLoad": {
Michel Roy's avatar
Michel Roy committed
            "$ref": "#/components/schemas/ExtBssLoad"
Michel Roy's avatar
Michel Roy committed
          "oBssLoad": {
            "$ref": "#/components/schemas/OBssLoad"
          },
Michel Roy's avatar
Michel Roy committed
          "timeStamp": {
Michel Roy's avatar
Michel Roy committed
            "$ref": "#/components/schemas/TimeStamp"
Michel Roy's avatar
Michel Roy committed
          },
          "wanMetrics": {
Michel Roy's avatar
Michel Roy committed
            "$ref": "#/components/schemas/WanMetrics"
Michel Roy's avatar
Michel Roy committed
          },
          "wlanCap": {
Michel Roy's avatar
Michel Roy committed
            "$ref": "#/components/schemas/WlanCapabilities"
Michel Roy's avatar
Michel Roy committed
      },
      "ApLocation": {
        "title": "ApLocation",
        "type": "object",
Michel Roy's avatar
Michel Roy committed
        "properties": {
          "civicLocation": {
Michel Roy's avatar
Michel Roy committed
            "$ref": "#/components/schemas/CivicLocation"
Michel Roy's avatar
Michel Roy committed
          },
          "geolocation": {
Michel Roy's avatar
Michel Roy committed
            "$ref": "#/components/schemas/GeoLocation"
Michel Roy's avatar
Michel Roy committed
      },
      "AssocStaNotification": {
        "title": "AssocStaNotification",
        "allOf": [
          {