{
  "openapi": "3.1.0",
  "info": {
    "title": "",
    "version": "1.0.0"
  },
  "paths": {
    "/endpoint": {
      "get": {
        "tags": [
          "Endpoint"
        ],
        "operationId": "getEndpoints",
        "description": "The parameters and request body are for method: getEndpoints. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              },
              "example": {}
            }
          }
        }
      }
    },
    "/endpoint/{id}": {
      "delete": {
        "tags": [
          "Endpoint"
        ],
        "operationId": "deleteEndpoint",
        "description": "The parameters and request body are for method: deleteEndpoint. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "required": true,
            "schema": {
              "title": "id",
              "type": "string"
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              },
              "example": {}
            }
          }
        }
      }
    },
    "/endpoint/{id}/description": {
      "put": {
        "tags": [
          "Endpoint"
        ],
        "operationId": "alterEndpointDescription",
        "description": "The parameters and request body are for method: alterEndpointDescription. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "required": true,
            "schema": {
              "title": "id",
              "type": "string"
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "object",
                "properties": {
                  "description": {
                    "type": "string"
                  }
                }
              },
              "example": {
                "description": "description"
              }
            }
          }
        }
      }
    },
    "/endpoint/{id}/endpointhead": {
      "get": {
        "tags": [
          "Endpoint"
        ],
        "operationId": "getEndpointInformation",
        "description": "The parameters and request body are for method: getEndpointInformation. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "required": true,
            "schema": {
              "title": "id",
              "type": "string"
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              },
              "example": {}
            }
          }
        }
      }
    },
    "/endpoint/{id}/name": {
      "put": {
        "tags": [
          "Endpoint"
        ],
        "operationId": "changeNameOfEndpoint",
        "description": "The parameters and request body are for method: changeNameOfEndpoint. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "required": true,
            "schema": {
              "title": "id",
              "type": "string"
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "object",
                "properties": {
                  "name": {
                    "type": "string"
                  }
                }
              },
              "example": {
                "name": "name"
              }
            }
          }
        }
      }
    },
    "/endpoint/{id}/operate": {
      "put": {
        "tags": [
          "Endpoint"
        ],
        "operationId": "operationOnEndpoint",
        "description": "The parameters and request body are for method: operationOnEndpoint. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "required": true,
            "schema": {
              "title": "id",
              "type": "string"
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "object",
                "properties": {
                  "action": {
                    "type": "string"
                  }
                }
              },
              "example": {
                "action": "action"
              }
            }
          }
        }
      }
    },
    "/endpoint/type/{type}": {
      "get": {
        "tags": [
          "Endpoint"
        ],
        "operationId": "getInformationOnEndpointsByType",
        "description": "The parameters and request body are for method: getInformationOnEndpointsByType. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "type",
            "in": "path",
            "required": true,
            "schema": {
              "title": "type",
              "type": "string"
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              },
              "example": {}
            }
          }
        }
      }
    },
    "/endpoint/reflector": {
      "post": {
        "tags": [
          "Endpoint"
        ],
        "operationId": "createNewReflectorEndpoint",
        "description": "The parameters and request body are for method: createNewReflectorEndpoint. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "requestBody": {
          "description": "indeterminate body object",
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          }
        }
      }
    },
    "/endpoint/reflector/{id}": {
      "get": {
        "tags": [
          "Endpoint"
        ],
        "operationId": "getReflectorEndpointByName",
        "description": "The parameters and request body are for method: getReflectorEndpointByName. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "required": true,
            "schema": {
              "title": "id",
              "type": "string"
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              },
              "example": {}
            }
          }
        }
      }
    },
    "/endpoint/reflector/{id}/address": {
      "put": {
        "tags": [
          "Endpoint"
        ],
        "operationId": "changeIpAddressUnmanagedEndpoint",
        "description": "The parameters and request body are for method: changeIpAddressUnmanagedEndpoint. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "required": true,
            "schema": {
              "title": "id",
              "type": "string"
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "object",
                "properties": {
                  "ipAddress": {
                    "type": "string"
                  }
                }
              },
              "example": {
                "ipAddress": "ipAddress"
              }
            }
          }
        }
      }
    },
    "/endpoint/reflector/{id}/capability": {
      "put": {
        "tags": [
          "Endpoint"
        ],
        "operationId": "changeCapabilityUnmanagedEndpoint",
        "description": "The parameters and request body are for method: changeCapabilityUnmanagedEndpoint. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "required": true,
            "schema": {
              "title": "id",
              "type": "string"
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "object",
                "properties": {
                  "capabilities": {
                    "type": "string"
                  }
                }
              },
              "example": {
                "capabilities": "capabilities"
              }
            }
          }
        }
      }
    },
    "/endpoint/reflector/{id}/mac": {
      "get": {
        "tags": [
          "Endpoint"
        ],
        "operationId": "getReflectorEndpointByMAC",
        "description": "The parameters and request body are for method: getReflectorEndpointByMAC. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "required": true,
            "schema": {
              "title": "id",
              "type": "string"
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              },
              "example": {}
            }
          }
        }
      }
    },
    "/endpoint/reflector/{id}/twampcp": {
      "put": {
        "tags": [
          "Endpoint"
        ],
        "operationId": "changeTwampControlProtocolSettings",
        "description": "The parameters and request body are for method: changeTwampControlProtocolSettings. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "required": true,
            "schema": {
              "title": "id",
              "type": "string"
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "object",
                "properties": {
                  "twampCp": {
                    "type": "string"
                  }
                }
              },
              "example": {
                "twampCp": "twampCp"
              }
            }
          }
        }
      },
      "delete": {
        "tags": [
          "Endpoint"
        ],
        "operationId": "deleteTwampCp",
        "description": "The parameters and request body are for method: deleteTwampCp. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "required": true,
            "schema": {
              "title": "id",
              "type": "string"
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              },
              "example": {}
            }
          }
        }
      }
    },
    "/endpoint/supervision": {
      "post": {
        "tags": [
          "Endpoint"
        ],
        "operationId": "createSupervisonEndpoint",
        "description": "The parameters and request body are for method: createSupervisonEndpoint. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "requestBody": {
          "description": "indeterminate body object",
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          }
        }
      }
    },
    "/endpoint/supervision/{id}": {
      "get": {
        "tags": [
          "Endpoint"
        ],
        "operationId": "getSupervisionEndpointByName",
        "description": "The parameters and request body are for method: getSupervisionEndpointByName. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "required": true,
            "schema": {
              "title": "id",
              "type": "string"
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              },
              "example": {}
            }
          }
        }
      }
    },
    "/session": {
      "get": {
        "tags": [
          "Session"
        ],
        "operationId": "getSessionInformation",
        "description": "The parameters and request body are for method: getSessionInformation. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              },
              "example": {}
            }
          }
        }
      }
    },
    "/session/{id}": {
      "delete": {
        "tags": [
          "Session"
        ],
        "operationId": "deleteSession",
        "description": "The parameters and request body are for method: deleteSession. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "required": true,
            "schema": {
              "title": "id",
              "type": "string"
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              },
              "example": {}
            }
          }
        }
      }
    },
    "/session/{id}/description": {
      "put": {
        "tags": [
          "Session"
        ],
        "operationId": "alterSessionDescription",
        "description": "The parameters and request body are for method: alterSessionDescription. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "required": true,
            "schema": {
              "title": "id",
              "type": "string"
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "object",
                "properties": {
                  "description": {
                    "type": "string"
                  }
                }
              },
              "example": {
                "description": "description"
              }
            }
          }
        }
      }
    },
    "/session/{id}/head": {
      "get": {
        "tags": [
          "Session"
        ],
        "operationId": "getSessionHeadInformationByName",
        "description": "The parameters and request body are for method: getSessionHeadInformationByName. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "required": true,
            "schema": {
              "title": "id",
              "type": "string"
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              },
              "example": {}
            }
          }
        }
      }
    },
    "/session/{id}/lastrr": {
      "get": {
        "tags": [
          "Session"
        ],
        "operationId": "getSessionLastRR",
        "description": "The parameters and request body are for method: getSessionLastRR. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "required": true,
            "schema": {
              "title": "id",
              "type": "string"
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              },
              "example": {}
            }
          }
        }
      }
    },
    "/session/{id}/name": {
      "put": {
        "tags": [
          "Session"
        ],
        "operationId": "alterTerminatedNotResolvedSessionName",
        "description": "The parameters and request body are for method: alterTerminatedNotResolvedSessionName. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "required": true,
            "schema": {
              "title": "id",
              "type": "string"
            }
          }
        ],
        "requestBody": {
          "description": "indeterminate body object",
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          }
        }
      }
    },
    "/session/{id}/operate": {
      "put": {
        "tags": [
          "Session"
        ],
        "operationId": "operationOnSession",
        "description": "The parameters and request body are for method: operationOnSession. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "required": true,
            "schema": {
              "title": "id",
              "type": "string"
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "object",
                "properties": {
                  "action": {
                    "type": "string"
                  }
                }
              },
              "example": {
                "action": "action"
              }
            }
          }
        }
      }
    },
    "/session/{id}/stream": {
      "put": {
        "tags": [
          "Session"
        ],
        "operationId": "alterTerminatedNotResolvedSessionStream",
        "description": "The parameters and request body are for method: alterTerminatedNotResolvedSessionStream. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "required": true,
            "schema": {
              "title": "id",
              "type": "string"
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "object",
                "properties": {
                  "stream": {
                    "type": "string"
                  }
                }
              },
              "example": {
                "stream": "stream"
              }
            }
          }
        }
      }
    },
    "/session/echo": {
      "post": {
        "tags": [
          "Session"
        ],
        "operationId": "createEchoSession",
        "description": "The parameters and request body are for method: createEchoSession. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "requestBody": {
          "description": "indeterminate body object",
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          }
        }
      }
    },
    "/session/echo/{id}": {
      "get": {
        "tags": [
          "Session"
        ],
        "operationId": "getEchoSessionInformation",
        "description": "The parameters and request body are for method: getEchoSessionInformation. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "required": true,
            "schema": {
              "title": "id",
              "type": "string"
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              },
              "example": {}
            }
          }
        }
      }
    },
    "/session/ethoam": {
      "post": {
        "tags": [
          "Session"
        ],
        "operationId": "createEthOamSession",
        "description": "The parameters and request body are for method: createEthOamSession. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "requestBody": {
          "description": "indeterminate body object",
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          }
        }
      }
    },
    "/session/ethoam/{id}": {
      "get": {
        "tags": [
          "Session"
        ],
        "operationId": "getEthOamSessionInformation",
        "description": "The parameters and request body are for method: getEthOamSessionInformation. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "required": true,
            "schema": {
              "title": "id",
              "type": "string"
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              },
              "example": {}
            }
          }
        }
      }
    },
    "/session/twamp": {
      "post": {
        "tags": [
          "Session"
        ],
        "operationId": "createTWAMPSession",
        "description": "The parameters and request body are for method: createTWAMPSession. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "requestBody": {
          "description": "indeterminate body object",
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          }
        }
      }
    },
    "/session/twamp/{id}": {
      "get": {
        "tags": [
          "Session"
        ],
        "operationId": "getTWAMPSessionInformation",
        "description": "The parameters and request body are for method: getTWAMPSessionInformation. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "required": true,
            "schema": {
              "title": "id",
              "type": "string"
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              },
              "example": {}
            }
          }
        }
      }
    },
    "/sla": {
      "post": {
        "tags": [
          "Sla"
        ],
        "operationId": "createSLA",
        "description": "The parameters and request body are for method: createSLA. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "requestBody": {
          "description": "indeterminate body object",
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          }
        }
      },
      "get": {
        "tags": [
          "Sla"
        ],
        "operationId": "getSLAs",
        "description": "The parameters and request body are for method: getSLAs. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              },
              "example": {}
            }
          }
        }
      }
    },
    "/sla/{id}": {
      "delete": {
        "tags": [
          "Sla"
        ],
        "operationId": "deleteSLA",
        "description": "The parameters and request body are for method: deleteSLA. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "required": true,
            "schema": {
              "title": "id",
              "type": "string"
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              },
              "example": {}
            }
          }
        }
      }
    },
    "/sla/{id}/session": {
      "put": {
        "tags": [
          "Sla"
        ],
        "operationId": "putSessionReferenceToSLA",
        "description": "The parameters and request body are for method: putSessionReferenceToSLA. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "required": true,
            "schema": {
              "title": "id",
              "type": "string"
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "object",
                "properties": {
                  "sessionRef": {
                    "type": "string"
                  }
                }
              },
              "example": {
                "sessionRef": "sessionRef"
              }
            }
          }
        }
      },
      "get": {
        "tags": [
          "Sla"
        ],
        "operationId": "getSessionReferencesForSLA",
        "description": "The parameters and request body are for method: getSessionReferencesForSLA. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "required": true,
            "schema": {
              "title": "id",
              "type": "string"
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              },
              "example": {}
            }
          }
        }
      }
    },
    "/sla/{id}/session/{ref}": {
      "delete": {
        "tags": [
          "Sla"
        ],
        "operationId": "deleteSessionReferenceFromSLA",
        "description": "The parameters and request body are for method: deleteSessionReferenceFromSLA. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "required": true,
            "schema": {
              "title": "id",
              "type": "string"
            }
          },
          {
            "name": "ref",
            "in": "path",
            "required": true,
            "schema": {
              "title": "ref",
              "type": "string"
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              },
              "example": {}
            }
          }
        }
      }
    },
    "/version": {
      "get": {
        "tags": [
          "Version"
        ],
        "operationId": "getSystemVersion",
        "description": "The parameters and request body are for method: getSystemVersion. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              },
              "example": {}
            }
          }
        }
      }
    },
    "/orchestrate/v3/agents": {
      "get": {
        "tags": [
          "AgentServiceV3"
        ],
        "operationId": "getApiOrchestrateV3Agents",
        "description": "The parameters and request body are for method: getApiOrchestrateV3Agents. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "page",
            "in": "query",
            "required": true,
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "limit",
            "in": "query",
            "required": true,
            "schema": {
              "type": "string"
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              },
              "example": {}
            }
          }
        }
      }
    },
    "/orchestrate/v3/agents/{agentId}": {
      "get": {
        "tags": [
          "AgentServiceV3"
        ],
        "operationId": "getApiOrchestrateV3AgentsAgentId",
        "description": "The parameters and request body are for method: getApiOrchestrateV3AgentsAgentId. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "agentId",
            "in": "path",
            "required": true,
            "schema": {
              "title": "agentId",
              "type": "string"
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              },
              "example": {}
            }
          }
        }
      },
      "delete": {
        "tags": [
          "AgentServiceV3"
        ],
        "operationId": "deleteApiOrchestrateV3AgentsAgentId",
        "description": "The parameters and request body are for method: deleteApiOrchestrateV3AgentsAgentId. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "agentId",
            "in": "path",
            "required": true,
            "schema": {
              "title": "agentId",
              "type": "string"
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              },
              "example": {}
            }
          }
        }
      }
    },
    "/orchestrate/v3/agents/configuration": {
      "post": {
        "tags": [
          "AgentServiceV3"
        ],
        "operationId": "postApiOrchestrateV3AgentsConfiguration",
        "description": "The parameters and request body are for method: postApiOrchestrateV3AgentsConfiguration. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "page",
            "in": "query",
            "required": true,
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "limit",
            "in": "query",
            "required": true,
            "schema": {
              "type": "string"
            }
          }
        ],
        "requestBody": {
          "description": "indeterminate body object",
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          }
        }
      },
      "get": {
        "tags": [
          "AgentServiceV3"
        ],
        "operationId": "getApiOrchestrateV3AgentsConfiguration",
        "description": "The parameters and request body are for method: getApiOrchestrateV3AgentsConfiguration. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "page",
            "in": "query",
            "required": true,
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "limit",
            "in": "query",
            "required": true,
            "schema": {
              "type": "string"
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              },
              "example": {}
            }
          }
        }
      }
    },
    "/orchestrate/v3/agents/configuration/{agentId}": {
      "get": {
        "tags": [
          "AgentServiceV3"
        ],
        "operationId": "getApiOrchestrateV3AgentsConfigurationAgentId",
        "description": "The parameters and request body are for method: getApiOrchestrateV3AgentsConfigurationAgentId. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "agentId",
            "in": "path",
            "required": true,
            "schema": {
              "title": "agentId",
              "type": "string"
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              },
              "example": {}
            }
          }
        }
      },
      "put": {
        "tags": [
          "AgentServiceV3"
        ],
        "operationId": "putApiOrchestrateV3AgentsConfigurationAgentId",
        "description": "The parameters and request body are for method: putApiOrchestrateV3AgentsConfigurationAgentId. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "agentId",
            "in": "path",
            "required": true,
            "schema": {
              "title": "agentId",
              "type": "string"
            }
          }
        ],
        "requestBody": {
          "description": "indeterminate body object",
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          }
        }
      },
      "delete": {
        "tags": [
          "AgentServiceV3"
        ],
        "operationId": "deleteApiOrchestrateV3AgentsConfigurationAgentId",
        "description": "The parameters and request body are for method: deleteApiOrchestrateV3AgentsConfigurationAgentId. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "agentId",
            "in": "path",
            "required": true,
            "schema": {
              "title": "agentId",
              "type": "string"
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              },
              "example": {}
            }
          }
        }
      }
    },
    "/orchestrate/v3/agents/{agentId}/command": {
      "post": {
        "tags": [
          "AgentServiceV3"
        ],
        "operationId": "postApiOrchestrateV3AgentsAgentIdCommand",
        "description": "The parameters and request body are for method: postApiOrchestrateV3AgentsAgentIdCommand. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "agentId",
            "in": "path",
            "required": true,
            "schema": {
              "title": "agentId",
              "type": "string"
            }
          }
        ],
        "requestBody": {
          "description": "indeterminate body object",
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          }
        }
      }
    },
    "/orchestrate/v3/agents/sessions": {
      "get": {
        "tags": [
          "AgentServiceV3"
        ],
        "operationId": "getApiOrchestrateV3AgentsSessions",
        "description": "The parameters and request body are for method: getApiOrchestrateV3AgentsSessions. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "page",
            "in": "query",
            "required": true,
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "limit",
            "in": "query",
            "required": true,
            "schema": {
              "type": "string"
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              },
              "example": {}
            }
          }
        }
      },
      "post": {
        "tags": [
          "AgentServiceV3"
        ],
        "operationId": "postApiOrchestrateV3AgentsSessions",
        "description": "The parameters and request body are for method: postApiOrchestrateV3AgentsSessions. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "page",
            "in": "query",
            "required": true,
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "limit",
            "in": "query",
            "required": true,
            "schema": {
              "type": "string"
            }
          }
        ],
        "requestBody": {
          "description": "indeterminate body object",
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          }
        }
      }
    },
    "/orchestrate/v3/agents/session": {
      "post": {
        "tags": [
          "AgentServiceV3"
        ],
        "operationId": "postApiOrchestrateV3AgentsSession",
        "description": "The parameters and request body are for method: postApiOrchestrateV3AgentsSession. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "requestBody": {
          "description": "indeterminate body object",
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          }
        }
      },
      "put": {
        "tags": [
          "AgentServiceV3"
        ],
        "operationId": "putApiOrchestrateV3AgentsSession",
        "description": "The parameters and request body are for method: putApiOrchestrateV3AgentsSession. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "requestBody": {
          "description": "indeterminate body object",
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          }
        }
      }
    },
    "/orchestrate/v3/agents/session/{sessionId}": {
      "get": {
        "tags": [
          "AgentServiceV3"
        ],
        "operationId": "getApiOrchestrateV3AgentsSessionSessionId",
        "description": "The parameters and request body are for method: getApiOrchestrateV3AgentsSessionSessionId. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "sessionId",
            "in": "path",
            "required": true,
            "schema": {
              "title": "sessionId",
              "type": "string"
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              },
              "example": {}
            }
          }
        }
      },
      "delete": {
        "tags": [
          "AgentServiceV3"
        ],
        "operationId": "deleteApiOrchestrateV3AgentsSessionSessionId",
        "description": "The parameters and request body are for method: deleteApiOrchestrateV3AgentsSessionSessionId. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "sessionId",
            "in": "path",
            "required": true,
            "schema": {
              "title": "sessionId",
              "type": "string"
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              },
              "example": {}
            }
          }
        }
      }
    },
    "/orchestrate/v3/agents/sessions/{agentId}": {
      "get": {
        "tags": [
          "AgentServiceV3"
        ],
        "operationId": "getApiOrchestrateV3AgentsSessionsAgentId",
        "description": "The parameters and request body are for method: getApiOrchestrateV3AgentsSessionsAgentId. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "agentId",
            "in": "path",
            "required": true,
            "schema": {
              "title": "agentId",
              "type": "string"
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              },
              "example": {}
            }
          }
        }
      },
      "delete": {
        "tags": [
          "AgentServiceV3"
        ],
        "operationId": "deleteApiOrchestrateV3AgentsSessionsAgentId",
        "description": "The parameters and request body are for method: deleteApiOrchestrateV3AgentsSessionsAgentId. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "agentId",
            "in": "path",
            "required": true,
            "schema": {
              "title": "agentId",
              "type": "string"
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              },
              "example": {}
            }
          }
        }
      }
    },
    "/orchestrate/v3/agents/sessionstatus/{sessionId}": {
      "get": {
        "tags": [
          "AgentServiceV3"
        ],
        "operationId": "getApiOrchestrateV3AgentsSessionstatusSessionId",
        "description": "The parameters and request body are for method: getApiOrchestrateV3AgentsSessionstatusSessionId. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "sessionId",
            "in": "path",
            "required": true,
            "schema": {
              "title": "sessionId",
              "type": "string"
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              },
              "example": {}
            }
          }
        }
      }
    },
    "/orchestrate/v3/agents/{agentId}/secrets": {
      "post": {
        "tags": [
          "AgentServiceV3"
        ],
        "operationId": "postApiOrchestrateV3AgentsAgentIdSecrets",
        "description": "The parameters and request body are for method: postApiOrchestrateV3AgentsAgentIdSecrets. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "agentId",
            "in": "path",
            "required": true,
            "schema": {
              "title": "agentId",
              "type": "string"
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              },
              "example": {}
            }
          }
        }
      }
    },
    "/openid-configuration/{clientName}": {
      "get": {
        "tags": [
          "OpenID"
        ],
        "operationId": "openIDConfiguration",
        "description": "The parameters and request body are for method: openIDConfiguration. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "clientName",
            "in": "path",
            "required": true,
            "schema": {
              "title": "clientName",
              "type": "string"
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              },
              "example": {}
            }
          }
        }
      }
    },
    "/openid-token/{clientName}": {
      "post": {
        "tags": [
          "OpenID"
        ],
        "operationId": "openIDToken",
        "description": "The parameters and request body are for method: openIDToken. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "clientName",
            "in": "path",
            "required": true,
            "schema": {
              "title": "clientName",
              "type": "string"
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              },
              "example": {}
            }
          }
        }
      }
    },
    "/openid-auth": {
      "get": {
        "tags": [
          "OpenID"
        ],
        "operationId": "openIDAuth",
        "description": "The parameters and request body are for method: openIDAuth. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "clientId",
            "in": "query",
            "required": true,
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "redirectUri",
            "in": "query",
            "required": true,
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "responseType",
            "in": "query",
            "required": true,
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "state",
            "in": "query",
            "required": true,
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "delegatedclientid",
            "in": "query",
            "required": true,
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "scope",
            "in": "query",
            "required": true,
            "schema": {
              "type": "string"
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              },
              "example": {}
            }
          }
        }
      }
    },
    "/saml-redirect": {
      "get": {
        "tags": [
          "SAML"
        ],
        "operationId": "samlRedirect",
        "description": "The parameters and request body are for method: samlRedirect. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "clientName",
            "in": "query",
            "required": true,
            "schema": {
              "type": "string"
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              },
              "example": {}
            }
          }
        }
      }
    },
    "/saml-callback": {
      "post": {
        "tags": [
          "SAML"
        ],
        "operationId": "samlCallback",
        "description": "The parameters and request body are for method: samlCallback. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              },
              "example": {}
            }
          }
        }
      }
    },
    "/saml-metadata/{clientName}": {
      "get": {
        "tags": [
          "SAML"
        ],
        "operationId": "samlSpMetadata",
        "description": "The parameters and request body are for method: samlSpMetadata. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "clientName",
            "in": "path",
            "required": true,
            "schema": {
              "title": "clientName",
              "type": "string"
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              },
              "example": {}
            }
          }
        }
      }
    },
    "/v1/grant": {
      "post": {
        "tags": [
          "TicketService"
        ],
        "operationId": "createGrantingTicket",
        "description": "The parameters and request body are for method: createGrantingTicket. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              },
              "example": {}
            }
          }
        }
      }
    },
    "/v1/service": {
      "post": {
        "tags": [
          "TicketService"
        ],
        "operationId": "createServiceTicket",
        "description": "The parameters and request body are for method: createServiceTicket. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              },
              "example": {}
            }
          }
        }
      }
    },
    "/v1/validate": {
      "post": {
        "tags": [
          "TicketService"
        ],
        "operationId": "validateServiceTicket",
        "description": "The parameters and request body are for method: validateServiceTicket. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "ticket",
            "in": "query",
            "required": true,
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "service",
            "in": "query",
            "required": true,
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "format",
            "in": "query",
            "required": true,
            "schema": {
              "type": "string"
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              },
              "example": {}
            }
          }
        }
      }
    },
    "/v1/auth/users": {
      "post": {
        "tags": [
          "AuthService"
        ],
        "operationId": "createUser",
        "description": "The parameters and request body are for method: createUser. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "requestBody": {
          "description": "indeterminate body object",
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          }
        }
      },
      "get": {
        "tags": [
          "AuthService"
        ],
        "operationId": "getAllUsers",
        "description": "The parameters and request body are for method: getAllUsers. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              },
              "example": {}
            }
          }
        }
      }
    },
    "/v1/auth/users/{userId}": {
      "put": {
        "tags": [
          "AuthService"
        ],
        "operationId": "updateUser",
        "description": "The parameters and request body are for method: updateUser. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "userId",
            "in": "path",
            "required": true,
            "schema": {
              "title": "userId",
              "type": "number"
            }
          }
        ],
        "requestBody": {
          "description": "indeterminate body object",
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          }
        }
      },
      "patch": {
        "tags": [
          "AuthService"
        ],
        "operationId": "updateUserProperties",
        "description": "The parameters and request body are for method: updateUserProperties. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "userId",
            "in": "path",
            "required": true,
            "schema": {
              "title": "userId",
              "type": "number"
            }
          }
        ],
        "requestBody": {
          "description": "indeterminate body object",
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          }
        }
      },
      "get": {
        "tags": [
          "AuthService"
        ],
        "operationId": "getUser",
        "description": "The parameters and request body are for method: getUser. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "userId",
            "in": "path",
            "required": true,
            "schema": {
              "title": "userId",
              "type": "number"
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              },
              "example": {}
            }
          }
        }
      },
      "delete": {
        "tags": [
          "AuthService"
        ],
        "operationId": "deleteUser",
        "description": "The parameters and request body are for method: deleteUser. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "userId",
            "in": "path",
            "required": true,
            "schema": {
              "title": "userId",
              "type": "number"
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              },
              "example": {}
            }
          }
        }
      }
    },
    "/v1/auth/users/{userId}/password": {
      "patch": {
        "tags": [
          "AuthService"
        ],
        "operationId": "resetPassword",
        "description": "The parameters and request body are for method: resetPassword. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "userId",
            "in": "path",
            "required": true,
            "schema": {
              "title": "userId",
              "type": "number"
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              },
              "example": {}
            }
          }
        }
      }
    },
    "/v1/auth/users/{userId}/email": {
      "patch": {
        "tags": [
          "AuthService"
        ],
        "operationId": "changeEmailAddress",
        "description": "The parameters and request body are for method: changeEmailAddress. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "userId",
            "in": "path",
            "required": true,
            "schema": {
              "title": "userId",
              "type": "number"
            }
          }
        ],
        "requestBody": {
          "description": "indeterminate body object",
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          }
        }
      }
    },
    "/v1/auth/me": {
      "patch": {
        "tags": [
          "AuthService"
        ],
        "operationId": "updateAuthenticatedUserProperties",
        "description": "The parameters and request body are for method: updateAuthenticatedUserProperties. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "requestBody": {
          "description": "indeterminate body object",
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          }
        }
      },
      "get": {
        "tags": [
          "AuthService"
        ],
        "operationId": "getAuthenticatedUser",
        "description": "The parameters and request body are for method: getAuthenticatedUser. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              },
              "example": {}
            }
          }
        }
      },
      "delete": {
        "tags": [
          "AuthService"
        ],
        "operationId": "deleteAuthenticatedUser",
        "description": "The parameters and request body are for method: deleteAuthenticatedUser. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              },
              "example": {}
            }
          }
        }
      }
    },
    "/v1/auth/me/password": {
      "patch": {
        "tags": [
          "AuthService"
        ],
        "operationId": "updateAuthenticatedUserPassword",
        "description": "The parameters and request body are for method: updateAuthenticatedUserPassword. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "requestBody": {
          "description": "indeterminate body object",
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          }
        }
      }
    },
    "/v1/auth/me/email": {
      "patch": {
        "tags": [
          "AuthService"
        ],
        "operationId": "changeAuthenticatedUserEmailAddress",
        "description": "The parameters and request body are for method: changeAuthenticatedUserEmailAddress. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "requestBody": {
          "description": "indeterminate body object",
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          }
        }
      }
    },
    "/v1/onboarding/{onboardingToken}": {
      "get": {
        "tags": [
          "AuthService"
        ],
        "operationId": "getUserByToken",
        "description": "The parameters and request body are for method: getUserByToken. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "onboardingToken",
            "in": "path",
            "required": true,
            "schema": {
              "title": "onboardingToken",
              "type": "string"
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              },
              "example": {}
            }
          }
        }
      }
    },
    "/v1/onboarding/password": {
      "post": {
        "tags": [
          "AuthService"
        ],
        "operationId": "setUserPassword",
        "description": "The parameters and request body are for method: setUserPassword. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "requestBody": {
          "description": "indeterminate body object",
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          }
        }
      }
    },
    "/v1/auth/login": {
      "post": {
        "tags": [
          "AuthService"
        ],
        "operationId": "login",
        "description": "The parameters and request body are for method: login. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              },
              "example": {}
            }
          }
        }
      }
    },
    "/v1/auth/logout": {
      "post": {
        "tags": [
          "AuthService"
        ],
        "operationId": "logout",
        "description": "The parameters and request body are for method: logout. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              },
              "example": {}
            }
          }
        }
      }
    },
    "/v1/auth/session": {
      "get": {
        "tags": [
          "AuthService"
        ],
        "operationId": "validate",
        "description": "The parameters and request body are for method: validate. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              },
              "example": {}
            }
          }
        }
      }
    },
    "/v1/auth/validate": {
      "get": {
        "tags": [
          "AuthService"
        ],
        "operationId": "validateSessionForProxy",
        "description": "The parameters and request body are for method: validateSessionForProxy. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              },
              "example": {}
            }
          }
        }
      }
    },
    "/v1/auth/service": {
      "post": {
        "tags": [
          "AuthService"
        ],
        "operationId": "createService",
        "description": "The parameters and request body are for method: createService. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              },
              "example": {}
            }
          }
        }
      }
    },
    "/v1/onboarding/tenant-info": {
      "get": {
        "tags": [
          "AuthService"
        ],
        "operationId": "getTenantInfo",
        "description": "The parameters and request body are for method: getTenantInfo. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              },
              "example": {}
            }
          }
        }
      }
    },
    "/v1/onboarding/tenant-identity": {
      "put": {
        "tags": [
          "AuthService"
        ],
        "operationId": "setTenantIdentity",
        "description": "The parameters and request body are for method: setTenantIdentity. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "requestBody": {
          "description": "indeterminate body object",
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          }
        }
      },
      "delete": {
        "tags": [
          "AuthService"
        ],
        "operationId": "deleteTenantIdentity",
        "description": "The parameters and request body are for method: deleteTenantIdentity. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              },
              "example": {}
            }
          }
        }
      }
    },
    "/v1/auth/tokens": {
      "post": {
        "tags": [
          "AuthService"
        ],
        "operationId": "createToken",
        "description": "The parameters and request body are for method: createToken. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "requestBody": {
          "description": "indeterminate body object",
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          }
        }
      },
      "get": {
        "tags": [
          "AuthService"
        ],
        "operationId": "getAllTokens",
        "description": "The parameters and request body are for method: getAllTokens. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              },
              "example": {}
            }
          }
        }
      }
    },
    "/v1/auth/tokens/{tokenId}": {
      "get": {
        "tags": [
          "AuthService"
        ],
        "operationId": "getToken",
        "description": "The parameters and request body are for method: getToken. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "tokenId",
            "in": "path",
            "required": true,
            "schema": {
              "title": "tokenId",
              "type": "number"
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              },
              "example": {}
            }
          }
        }
      },
      "patch": {
        "tags": [
          "AuthService"
        ],
        "operationId": "updateToken",
        "description": "The parameters and request body are for method: updateToken. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "tokenId",
            "in": "path",
            "required": true,
            "schema": {
              "title": "tokenId",
              "type": "number"
            }
          }
        ],
        "requestBody": {
          "description": "indeterminate body object",
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          }
        }
      },
      "delete": {
        "tags": [
          "AuthService"
        ],
        "operationId": "deleteToken",
        "description": "The parameters and request body are for method: deleteToken. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "tokenId",
            "in": "path",
            "required": true,
            "schema": {
              "title": "tokenId",
              "type": "number"
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              },
              "example": {}
            }
          }
        }
      }
    },
    "/v1/auth/method/{emailAddress}": {
      "get": {
        "tags": [
          "AuthService"
        ],
        "operationId": "getAuthenticationMethod",
        "description": "The parameters and request body are for method: getAuthenticationMethod. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "emailAddress",
            "in": "path",
            "required": true,
            "schema": {
              "title": "emailAddress",
              "type": "string"
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              },
              "example": {}
            }
          }
        }
      }
    },
    "/v1/auth/usergroups": {
      "post": {
        "tags": [
          "AuthService"
        ],
        "operationId": "createUsergroup",
        "description": "The parameters and request body are for method: createUsergroup. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "requestBody": {
          "description": "indeterminate body object",
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          }
        }
      },
      "get": {
        "tags": [
          "AuthService"
        ],
        "operationId": "getAllUsergroups",
        "description": "The parameters and request body are for method: getAllUsergroups. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              },
              "example": {}
            }
          }
        }
      }
    },
    "/v1/auth/usergroups/{usergroupId}": {
      "get": {
        "tags": [
          "AuthService"
        ],
        "operationId": "getUsergroup",
        "description": "The parameters and request body are for method: getUsergroup. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "usergroupId",
            "in": "path",
            "required": true,
            "schema": {
              "title": "usergroupId",
              "type": "number"
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              },
              "example": {}
            }
          }
        }
      },
      "patch": {
        "tags": [
          "AuthService"
        ],
        "operationId": "updateUsergroup",
        "description": "The parameters and request body are for method: updateUsergroup. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "usergroupId",
            "in": "path",
            "required": true,
            "schema": {
              "title": "usergroupId",
              "type": "number"
            }
          }
        ],
        "requestBody": {
          "description": "indeterminate body object",
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          }
        }
      },
      "delete": {
        "tags": [
          "AuthService"
        ],
        "operationId": "deleteUsergroup",
        "description": "The parameters and request body are for method: deleteUsergroup. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "usergroupId",
            "in": "path",
            "required": true,
            "schema": {
              "title": "usergroupId",
              "type": "number"
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              },
              "example": {}
            }
          }
        }
      }
    },
    "/v1/auth/roles": {
      "post": {
        "tags": [
          "AuthService"
        ],
        "operationId": "createRole",
        "description": "The parameters and request body are for method: createRole. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "requestBody": {
          "description": "indeterminate body object",
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          }
        }
      },
      "get": {
        "tags": [
          "AuthService"
        ],
        "operationId": "getAllRoles",
        "description": "The parameters and request body are for method: getAllRoles. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              },
              "example": {}
            }
          }
        }
      }
    },
    "/v1/auth/roles/{roleId}": {
      "get": {
        "tags": [
          "AuthService"
        ],
        "operationId": "getRole",
        "description": "The parameters and request body are for method: getRole. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "roleId",
            "in": "path",
            "required": true,
            "schema": {
              "title": "roleId",
              "type": "number"
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              },
              "example": {}
            }
          }
        }
      },
      "patch": {
        "tags": [
          "AuthService"
        ],
        "operationId": "updateRole",
        "description": "The parameters and request body are for method: updateRole. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "roleId",
            "in": "path",
            "required": true,
            "schema": {
              "title": "roleId",
              "type": "number"
            }
          }
        ],
        "requestBody": {
          "description": "indeterminate body object",
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          }
        }
      },
      "delete": {
        "tags": [
          "AuthService"
        ],
        "operationId": "deleteRole",
        "description": "The parameters and request body are for method: deleteRole. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "roleId",
            "in": "path",
            "required": true,
            "schema": {
              "title": "roleId",
              "type": "number"
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              },
              "example": {}
            }
          }
        }
      }
    },
    "/v1/auth/permissions": {
      "post": {
        "tags": [
          "AuthService"
        ],
        "operationId": "createPermission",
        "description": "The parameters and request body are for method: createPermission. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "requestBody": {
          "description": "indeterminate body object",
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          }
        }
      },
      "get": {
        "tags": [
          "AuthService"
        ],
        "operationId": "getAllPermissions",
        "description": "The parameters and request body are for method: getAllPermissions. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "domains",
            "in": "query",
            "required": true,
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "app",
            "in": "query",
            "required": true,
            "schema": {
              "type": "string"
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              },
              "example": {}
            }
          }
        }
      }
    },
    "/v1/auth/permissions/{permissionId}": {
      "get": {
        "tags": [
          "AuthService"
        ],
        "operationId": "getPermission",
        "description": "The parameters and request body are for method: getPermission. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "permissionId",
            "in": "path",
            "required": true,
            "schema": {
              "title": "permissionId",
              "type": "number"
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              },
              "example": {}
            }
          }
        }
      },
      "patch": {
        "tags": [
          "AuthService"
        ],
        "operationId": "updatePermission",
        "description": "The parameters and request body are for method: updatePermission. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "permissionId",
            "in": "path",
            "required": true,
            "schema": {
              "title": "permissionId",
              "type": "number"
            }
          }
        ],
        "requestBody": {
          "description": "indeterminate body object",
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          }
        }
      },
      "delete": {
        "tags": [
          "AuthService"
        ],
        "operationId": "deletePermission",
        "description": "The parameters and request body are for method: deletePermission. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "permissionId",
            "in": "path",
            "required": true,
            "schema": {
              "title": "permissionId",
              "type": "number"
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              },
              "example": {}
            }
          }
        }
      }
    },
    "/v1/export/configurations": {
      "post": {
        "tags": [
          "ExportService"
        ],
        "operationId": "createScheduledExport",
        "description": "The parameters and request body are for method: createScheduledExport. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "requestBody": {
          "description": "indeterminate body object",
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          }
        }
      },
      "get": {
        "tags": [
          "ExportService"
        ],
        "operationId": "getAllExportConfigurations",
        "description": "The parameters and request body are for method: getAllExportConfigurations. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "type": "array",
                  "items": {
                    "type": "object",
                    "properties": {
                      "name": {
                        "type": "string"
                      },
                      "contents": {
                        "type": "array",
                        "items": {
                          "type": "object",
                          "properties": {
                            "meta": {
                              "type": "object",
                              "properties": {
                                "enabled": {
                                  "type": "boolean"
                                },
                                "createdBy": {
                                  "type": "string"
                                },
                                "everyone": {
                                  "type": "string"
                                },
                                "viewers": {
                                  "type": "array",
                                  "items": {
                                    "type": "string"
                                  }
                                },
                                "editors": {
                                  "type": "array",
                                  "items": {
                                    "type": "string"
                                  }
                                },
                                "managers": {
                                  "type": "array",
                                  "items": {
                                    "type": "string"
                                  }
                                }
                              }
                            },
                            "data": {
                              "type": "object",
                              "properties": {
                                "id": {
                                  "type": "string"
                                },
                                "type": {
                                  "type": "string"
                                },
                                "attributes": {
                                  "type": "object",
                                  "properties": {
                                    "name": {
                                      "type": "string"
                                    },
                                    "tenantId": {
                                      "type": "string"
                                    },
                                    "schedule": {
                                      "type": "object",
                                      "properties": {
                                        "hour": {
                                          "type": "number"
                                        },
                                        "dayOfMonth": {
                                          "type": "string"
                                        },
                                        "dayOfWeek": {
                                          "type": "string"
                                        }
                                      }
                                    },
                                    "duration": {
                                      "type": "string"
                                    },
                                    "filters": {
                                      "type": "object",
                                      "properties": {
                                        "includeOnlyCleanData": {
                                          "type": "boolean"
                                        },
                                        "includeBusyHour": {
                                          "type": "boolean"
                                        },
                                        "includeMaintenanceWindow": {
                                          "type": "boolean"
                                        },
                                        "includeMetadata": {
                                          "type": "object"
                                        },
                                        "objectType": {
                                          "type": "string"
                                        },
                                        "direction": {
                                          "type": "array",
                                          "items": {
                                            "type": "string"
                                          }
                                        }
                                      }
                                    },
                                    "columns": {
                                      "type": "object",
                                      "properties": {
                                        "metrics": {
                                          "type": "array",
                                          "items": {
                                            "type": "object",
                                            "properties": {
                                              "name": {
                                                "type": "string"
                                              },
                                              "aggregator": {
                                                "type": "string"
                                              }
                                            }
                                          }
                                        },
                                        "metadata": {
                                          "type": "array",
                                          "items": {
                                            "type": "string"
                                          }
                                        },
                                        "topology": {
                                          "type": "boolean"
                                        },
                                        "thresholds": {
                                          "type": "array",
                                          "items": {
                                            "type": "object",
                                            "properties": {
                                              "comparator": {
                                                "type": "string"
                                              },
                                              "metric": {
                                                "type": "string"
                                              },
                                              "value": {
                                                "type": "number"
                                              },
                                              "aggregator": {
                                                "type": "string"
                                              }
                                            }
                                          }
                                        }
                                      }
                                    },
                                    "emails": {
                                      "type": "array",
                                      "items": {
                                        "type": "string"
                                      }
                                    },
                                    "groupBy": {
                                      "type": "object",
                                      "properties": {
                                        "type": {
                                          "type": "string"
                                        },
                                        "granularity": {
                                          "type": "string"
                                        }
                                      }
                                    }
                                  }
                                }
                              }
                            }
                          }
                        }
                      },
                      "entity": {
                        "type": "string"
                      },
                      "function": {
                        "type": "string"
                      }
                    }
                  }
                },
                "example": [
                  {
                    "name": "getAllExportConfigurations-default.json",
                    "contents": [
                      {
                        "meta": {
                          "enabled": true,
                          "createdBy": "string",
                          "everyone": "none",
                          "viewers": [
                            "string",
                            "string",
                            "string",
                            "string",
                            "string",
                            "string",
                            "string",
                            "string"
                          ],
                          "editors": [
                            "string",
                            "string",
                            "string",
                            "string",
                            "string"
                          ],
                          "managers": [
                            "string",
                            "string",
                            "string",
                            "string",
                            "string",
                            "string",
                            "string",
                            "string"
                          ]
                        },
                        "data": {
                          "id": "string",
                          "type": "export-configs",
                          "attributes": {
                            "name": "My first Export Job",
                            "tenantId": "string",
                            "schedule": {
                              "hour": 6,
                              "dayOfMonth": "14",
                              "dayOfWeek": "string"
                            },
                            "duration": "P1M",
                            "filters": {
                              "includeOnlyCleanData": true,
                              "includeBusyHour": true,
                              "includeMaintenanceWindow": false,
                              "includeMetadata": {},
                              "objectType": "twamp-sf",
                              "direction": [
                                "string",
                                "string",
                                "string",
                                "string",
                                "string",
                                "string",
                                "string",
                                "string",
                                "string"
                              ]
                            },
                            "columns": {
                              "metrics": [
                                {
                                  "name": "delayP95",
                                  "aggregator": "min"
                                },
                                {
                                  "name": "delayP95",
                                  "aggregator": "min"
                                },
                                {
                                  "name": "delayP95",
                                  "aggregator": "min"
                                },
                                {
                                  "name": "delayP95",
                                  "aggregator": "min"
                                },
                                {
                                  "name": "delayP95",
                                  "aggregator": "min"
                                },
                                {
                                  "name": "delayP95",
                                  "aggregator": "min"
                                },
                                {
                                  "name": "delayP95",
                                  "aggregator": "min"
                                },
                                {
                                  "name": "delayP95",
                                  "aggregator": "min"
                                },
                                {
                                  "name": "delayP95",
                                  "aggregator": "min"
                                },
                                {
                                  "name": "delayP95",
                                  "aggregator": "min"
                                }
                              ],
                              "metadata": [
                                "string",
                                "string",
                                "string",
                                "string",
                                "string",
                                "string",
                                "string",
                                "string"
                              ],
                              "topology": true,
                              "thresholds": [
                                {
                                  "comparator": "gte",
                                  "metric": "delayP95",
                                  "value": 42,
                                  "aggregator": "min"
                                },
                                {
                                  "comparator": "gte",
                                  "metric": "delayP95",
                                  "value": 42,
                                  "aggregator": "min"
                                },
                                {
                                  "comparator": "gte",
                                  "metric": "delayP95",
                                  "value": 42,
                                  "aggregator": "min"
                                },
                                {
                                  "comparator": "gte",
                                  "metric": "delayP95",
                                  "value": 42,
                                  "aggregator": "min"
                                },
                                {
                                  "comparator": "gte",
                                  "metric": "delayP95",
                                  "value": 42,
                                  "aggregator": "min"
                                },
                                {
                                  "comparator": "gte",
                                  "metric": "delayP95",
                                  "value": 42,
                                  "aggregator": "min"
                                },
                                {
                                  "comparator": "gte",
                                  "metric": "delayP95",
                                  "value": 42,
                                  "aggregator": "min"
                                },
                                {
                                  "comparator": "gte",
                                  "metric": "delayP95",
                                  "value": 42,
                                  "aggregator": "min"
                                }
                              ]
                            },
                            "emails": [
                              "jon@doe.com",
                              "fancy@nancy.com"
                            ],
                            "groupBy": {
                              "type": "objectId",
                              "granularity": "P1D"
                            }
                          }
                        }
                      }
                    ],
                    "entity": "ExportService",
                    "function": "getAllExportConfigurations"
                  },
                  {
                    "name": "getAllExportReport-default.json",
                    "contents": [
                      {
                        "meta": {
                          "enabled": true,
                          "createdBy": "string",
                          "everyone": "none",
                          "viewers": [
                            "string",
                            "string",
                            "string",
                            "string",
                            "string",
                            "string",
                            "string",
                            "string",
                            "string",
                            "string"
                          ],
                          "editors": [
                            "string"
                          ],
                          "managers": [
                            "string",
                            "string",
                            "string",
                            "string",
                            "string",
                            "string",
                            "string",
                            "string",
                            "string"
                          ]
                        },
                        "data": {
                          "id": "string",
                          "type": "datasetExport",
                          "attributes": {
                            "format": "csv",
                            "lastModified": "2021-06-16T13:02:59.514Z",
                            "size": 2,
                            "compression": "gzip",
                            "payload": "string",
                            "download": "string"
                          }
                        }
                      },
                      {
                        "meta": {
                          "enabled": true,
                          "createdBy": "string",
                          "everyone": "none",
                          "viewers": [
                            "string"
                          ],
                          "editors": [
                            "string",
                            "string",
                            "string"
                          ],
                          "managers": [
                            "string",
                            "string",
                            "string",
                            "string",
                            "string",
                            "string"
                          ]
                        },
                        "data": {
                          "id": "string",
                          "type": "datasetExport",
                          "attributes": {
                            "format": "csv",
                            "lastModified": "2021-06-16T13:02:59.514Z",
                            "size": 7,
                            "compression": "gzip",
                            "payload": "string",
                            "download": "string"
                          }
                        }
                      },
                      {
                        "meta": {
                          "enabled": true,
                          "createdBy": "string",
                          "everyone": "none",
                          "viewers": [
                            "string",
                            "string",
                            "string",
                            "string",
                            "string",
                            "string",
                            "string",
                            "string"
                          ],
                          "editors": [
                            "string",
                            "string"
                          ],
                          "managers": [
                            "string",
                            "string",
                            "string"
                          ]
                        },
                        "data": {
                          "id": "string",
                          "type": "datasetExport",
                          "attributes": {
                            "format": "csv",
                            "lastModified": "2021-06-16T13:02:59.514Z",
                            "size": 5,
                            "compression": "gzip",
                            "payload": "string",
                            "download": "string"
                          }
                        }
                      }
                    ],
                    "entity": "ExportService",
                    "function": "getAllExportReport"
                  }
                ]
              }
            }
          }
        },
        "parameters": [
          {
            "name": "includeDoc",
            "in": "query",
            "required": true,
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "rawMetadataKey",
            "in": "query",
            "required": true,
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "enabled",
            "in": "query",
            "required": true,
            "schema": {
              "type": "string"
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              },
              "example": {}
            }
          }
        }
      }
    },
    "/v1/export/configurations/{confId}": {
      "get": {
        "tags": [
          "ExportService"
        ],
        "operationId": "getExportConfiguration",
        "description": "The parameters and request body are for method: getExportConfiguration. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "confId",
            "in": "path",
            "required": true,
            "schema": {
              "title": "confId",
              "type": "string"
            }
          },
          {
            "name": "rawMetadataKey",
            "in": "query",
            "required": true,
            "schema": {
              "type": "string"
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              },
              "example": {}
            }
          }
        }
      },
      "patch": {
        "tags": [
          "ExportService"
        ],
        "operationId": "patchExportConfiguration",
        "description": "The parameters and request body are for method: patchExportConfiguration. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "confId",
            "in": "path",
            "required": true,
            "schema": {
              "title": "confId",
              "type": "string"
            }
          }
        ],
        "requestBody": {
          "description": "indeterminate body object",
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          }
        }
      },
      "delete": {
        "tags": [
          "ExportService"
        ],
        "operationId": "disableExportConfiguration",
        "description": "The parameters and request body are for method: disableExportConfiguration. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "confId",
            "in": "path",
            "required": true,
            "schema": {
              "title": "confId",
              "type": "string"
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              },
              "example": {}
            }
          }
        }
      }
    },
    "/v1/export/{confId}/reports": {
      "get": {
        "tags": [
          "ExportService"
        ],
        "operationId": "getAllExportReport",
        "description": "The parameters and request body are for method: getAllExportReport. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "type": "array",
                  "items": {
                    "type": "object",
                    "properties": {
                      "name": {
                        "type": "string"
                      },
                      "contents": {
                        "type": "array",
                        "items": {
                          "type": "object",
                          "properties": {
                            "meta": {
                              "type": "object",
                              "properties": {
                                "enabled": {
                                  "type": "boolean"
                                },
                                "createdBy": {
                                  "type": "string"
                                },
                                "everyone": {
                                  "type": "string"
                                },
                                "viewers": {
                                  "type": "array",
                                  "items": {
                                    "type": "string"
                                  }
                                },
                                "editors": {
                                  "type": "array",
                                  "items": {
                                    "type": "string"
                                  }
                                },
                                "managers": {
                                  "type": "array",
                                  "items": {
                                    "type": "string"
                                  }
                                }
                              }
                            },
                            "data": {
                              "type": "object",
                              "properties": {
                                "id": {
                                  "type": "string"
                                },
                                "type": {
                                  "type": "string"
                                },
                                "attributes": {
                                  "type": "object",
                                  "properties": {
                                    "name": {
                                      "type": "string"
                                    },
                                    "tenantId": {
                                      "type": "string"
                                    },
                                    "schedule": {
                                      "type": "object",
                                      "properties": {
                                        "hour": {
                                          "type": "number"
                                        },
                                        "dayOfMonth": {
                                          "type": "string"
                                        },
                                        "dayOfWeek": {
                                          "type": "string"
                                        }
                                      }
                                    },
                                    "duration": {
                                      "type": "string"
                                    },
                                    "filters": {
                                      "type": "object",
                                      "properties": {
                                        "includeOnlyCleanData": {
                                          "type": "boolean"
                                        },
                                        "includeBusyHour": {
                                          "type": "boolean"
                                        },
                                        "includeMaintenanceWindow": {
                                          "type": "boolean"
                                        },
                                        "includeMetadata": {
                                          "type": "object"
                                        },
                                        "objectType": {
                                          "type": "string"
                                        },
                                        "direction": {
                                          "type": "array",
                                          "items": {
                                            "type": "string"
                                          }
                                        }
                                      }
                                    },
                                    "columns": {
                                      "type": "object",
                                      "properties": {
                                        "metrics": {
                                          "type": "array",
                                          "items": {
                                            "type": "object",
                                            "properties": {
                                              "name": {
                                                "type": "string"
                                              },
                                              "aggregator": {
                                                "type": "string"
                                              }
                                            }
                                          }
                                        },
                                        "metadata": {
                                          "type": "array",
                                          "items": {
                                            "type": "string"
                                          }
                                        },
                                        "topology": {
                                          "type": "boolean"
                                        },
                                        "thresholds": {
                                          "type": "array",
                                          "items": {
                                            "type": "object",
                                            "properties": {
                                              "comparator": {
                                                "type": "string"
                                              },
                                              "metric": {
                                                "type": "string"
                                              },
                                              "value": {
                                                "type": "number"
                                              },
                                              "aggregator": {
                                                "type": "string"
                                              }
                                            }
                                          }
                                        }
                                      }
                                    },
                                    "emails": {
                                      "type": "array",
                                      "items": {
                                        "type": "string"
                                      }
                                    },
                                    "groupBy": {
                                      "type": "object",
                                      "properties": {
                                        "type": {
                                          "type": "string"
                                        },
                                        "granularity": {
                                          "type": "string"
                                        }
                                      }
                                    }
                                  }
                                }
                              }
                            }
                          }
                        }
                      },
                      "entity": {
                        "type": "string"
                      },
                      "function": {
                        "type": "string"
                      }
                    }
                  }
                },
                "example": [
                  {
                    "name": "getAllExportConfigurations-default.json",
                    "contents": [
                      {
                        "meta": {
                          "enabled": true,
                          "createdBy": "string",
                          "everyone": "none",
                          "viewers": [
                            "string",
                            "string",
                            "string",
                            "string",
                            "string",
                            "string",
                            "string",
                            "string"
                          ],
                          "editors": [
                            "string",
                            "string",
                            "string",
                            "string",
                            "string"
                          ],
                          "managers": [
                            "string",
                            "string",
                            "string",
                            "string",
                            "string",
                            "string",
                            "string",
                            "string"
                          ]
                        },
                        "data": {
                          "id": "string",
                          "type": "export-configs",
                          "attributes": {
                            "name": "My first Export Job",
                            "tenantId": "string",
                            "schedule": {
                              "hour": 6,
                              "dayOfMonth": "14",
                              "dayOfWeek": "string"
                            },
                            "duration": "P1M",
                            "filters": {
                              "includeOnlyCleanData": true,
                              "includeBusyHour": true,
                              "includeMaintenanceWindow": false,
                              "includeMetadata": {},
                              "objectType": "twamp-sf",
                              "direction": [
                                "string",
                                "string",
                                "string",
                                "string",
                                "string",
                                "string",
                                "string",
                                "string",
                                "string"
                              ]
                            },
                            "columns": {
                              "metrics": [
                                {
                                  "name": "delayP95",
                                  "aggregator": "min"
                                },
                                {
                                  "name": "delayP95",
                                  "aggregator": "min"
                                },
                                {
                                  "name": "delayP95",
                                  "aggregator": "min"
                                },
                                {
                                  "name": "delayP95",
                                  "aggregator": "min"
                                },
                                {
                                  "name": "delayP95",
                                  "aggregator": "min"
                                },
                                {
                                  "name": "delayP95",
                                  "aggregator": "min"
                                },
                                {
                                  "name": "delayP95",
                                  "aggregator": "min"
                                },
                                {
                                  "name": "delayP95",
                                  "aggregator": "min"
                                },
                                {
                                  "name": "delayP95",
                                  "aggregator": "min"
                                },
                                {
                                  "name": "delayP95",
                                  "aggregator": "min"
                                }
                              ],
                              "metadata": [
                                "string",
                                "string",
                                "string",
                                "string",
                                "string",
                                "string",
                                "string",
                                "string"
                              ],
                              "topology": true,
                              "thresholds": [
                                {
                                  "comparator": "gte",
                                  "metric": "delayP95",
                                  "value": 42,
                                  "aggregator": "min"
                                },
                                {
                                  "comparator": "gte",
                                  "metric": "delayP95",
                                  "value": 42,
                                  "aggregator": "min"
                                },
                                {
                                  "comparator": "gte",
                                  "metric": "delayP95",
                                  "value": 42,
                                  "aggregator": "min"
                                },
                                {
                                  "comparator": "gte",
                                  "metric": "delayP95",
                                  "value": 42,
                                  "aggregator": "min"
                                },
                                {
                                  "comparator": "gte",
                                  "metric": "delayP95",
                                  "value": 42,
                                  "aggregator": "min"
                                },
                                {
                                  "comparator": "gte",
                                  "metric": "delayP95",
                                  "value": 42,
                                  "aggregator": "min"
                                },
                                {
                                  "comparator": "gte",
                                  "metric": "delayP95",
                                  "value": 42,
                                  "aggregator": "min"
                                },
                                {
                                  "comparator": "gte",
                                  "metric": "delayP95",
                                  "value": 42,
                                  "aggregator": "min"
                                }
                              ]
                            },
                            "emails": [
                              "jon@doe.com",
                              "fancy@nancy.com"
                            ],
                            "groupBy": {
                              "type": "objectId",
                              "granularity": "P1D"
                            }
                          }
                        }
                      }
                    ],
                    "entity": "ExportService",
                    "function": "getAllExportConfigurations"
                  },
                  {
                    "name": "getAllExportReport-default.json",
                    "contents": [
                      {
                        "meta": {
                          "enabled": true,
                          "createdBy": "string",
                          "everyone": "none",
                          "viewers": [
                            "string",
                            "string",
                            "string",
                            "string",
                            "string",
                            "string",
                            "string",
                            "string",
                            "string",
                            "string"
                          ],
                          "editors": [
                            "string"
                          ],
                          "managers": [
                            "string",
                            "string",
                            "string",
                            "string",
                            "string",
                            "string",
                            "string",
                            "string",
                            "string"
                          ]
                        },
                        "data": {
                          "id": "string",
                          "type": "datasetExport",
                          "attributes": {
                            "format": "csv",
                            "lastModified": "2021-06-16T13:02:59.514Z",
                            "size": 2,
                            "compression": "gzip",
                            "payload": "string",
                            "download": "string"
                          }
                        }
                      },
                      {
                        "meta": {
                          "enabled": true,
                          "createdBy": "string",
                          "everyone": "none",
                          "viewers": [
                            "string"
                          ],
                          "editors": [
                            "string",
                            "string",
                            "string"
                          ],
                          "managers": [
                            "string",
                            "string",
                            "string",
                            "string",
                            "string",
                            "string"
                          ]
                        },
                        "data": {
                          "id": "string",
                          "type": "datasetExport",
                          "attributes": {
                            "format": "csv",
                            "lastModified": "2021-06-16T13:02:59.514Z",
                            "size": 7,
                            "compression": "gzip",
                            "payload": "string",
                            "download": "string"
                          }
                        }
                      },
                      {
                        "meta": {
                          "enabled": true,
                          "createdBy": "string",
                          "everyone": "none",
                          "viewers": [
                            "string",
                            "string",
                            "string",
                            "string",
                            "string",
                            "string",
                            "string",
                            "string"
                          ],
                          "editors": [
                            "string",
                            "string"
                          ],
                          "managers": [
                            "string",
                            "string",
                            "string"
                          ]
                        },
                        "data": {
                          "id": "string",
                          "type": "datasetExport",
                          "attributes": {
                            "format": "csv",
                            "lastModified": "2021-06-16T13:02:59.514Z",
                            "size": 5,
                            "compression": "gzip",
                            "payload": "string",
                            "download": "string"
                          }
                        }
                      }
                    ],
                    "entity": "ExportService",
                    "function": "getAllExportReport"
                  }
                ]
              }
            }
          }
        },
        "parameters": [
          {
            "name": "confId",
            "in": "path",
            "required": true,
            "schema": {
              "title": "confId",
              "type": "string"
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              },
              "example": {}
            }
          }
        }
      }
    },
    "/v1/export/{confId}/report/{fileName}": {
      "get": {
        "tags": [
          "ExportService"
        ],
        "operationId": "getExportReport",
        "description": "The parameters and request body are for method: getExportReport. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "confId",
            "in": "path",
            "required": true,
            "schema": {
              "title": "confId",
              "type": "string"
            }
          },
          {
            "name": "fileName",
            "in": "path",
            "required": true,
            "schema": {
              "title": "fileName",
              "type": "string"
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              },
              "example": {}
            }
          }
        }
      }
    },
    "/v1/solution-version-manifest": {
      "get": {
        "tags": [
          "AdminGetSolutionManifest"
        ],
        "operationId": "getSolutionManifest",
        "description": "The parameters and request body are for method: getSolutionManifest. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              },
              "example": {}
            }
          }
        }
      }
    },
    "/v3/twe": {
      "post": {
        "tags": [
          "TimeWindowExclusions"
        ],
        "operationId": "createTimeExclusion",
        "description": "The parameters and request body are for method: createTimeExclusion. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "requestBody": {
          "description": "indeterminate body object",
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          }
        }
      },
      "get": {
        "tags": [
          "TimeWindowExclusions"
        ],
        "operationId": "getAllTimeExclusion",
        "description": "The parameters and request body are for method: getAllTimeExclusion. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              },
              "example": {}
            }
          }
        }
      }
    },
    "/v3/twe/{id}": {
      "patch": {
        "tags": [
          "TimeWindowExclusions"
        ],
        "operationId": "updateTimeExclusion",
        "description": "The parameters and request body are for method: updateTimeExclusion. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "required": true,
            "schema": {
              "title": "id",
              "type": "string"
            }
          }
        ],
        "requestBody": {
          "description": "indeterminate body object",
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          }
        }
      },
      "get": {
        "tags": [
          "TimeWindowExclusions"
        ],
        "operationId": "getTimeExclusion",
        "description": "The parameters and request body are for method: getTimeExclusion. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "required": true,
            "schema": {
              "title": "id",
              "type": "string"
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              },
              "example": {}
            }
          }
        }
      },
      "delete": {
        "tags": [
          "TimeWindowExclusions"
        ],
        "operationId": "deleteTimeExclusion",
        "description": "The parameters and request body are for method: deleteTimeExclusion. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "required": true,
            "schema": {
              "title": "id",
              "type": "string"
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              },
              "example": {}
            }
          }
        }
      }
    },
    "/v3/twe/events": {
      "get": {
        "tags": [
          "TimeWindowExclusions"
        ],
        "operationId": "timeExclusionEvents",
        "description": "The parameters and request body are for method: timeExclusionEvents. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "start",
            "in": "query",
            "required": true,
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "end",
            "in": "query",
            "required": true,
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "monitoredObjectID",
            "in": "query",
            "required": true,
            "schema": {
              "type": "string"
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              },
              "example": {}
            }
          }
        }
      }
    },
    "/v2/tenants": {
      "post": {
        "tags": [
          "AdminProvisioningServiceV2"
        ],
        "operationId": "createTenantV2",
        "description": "The parameters and request body are for method: createTenantV2. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "requestBody": {
          "description": "indeterminate body object",
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          }
        }
      },
      "get": {
        "tags": [
          "AdminProvisioningServiceV2"
        ],
        "operationId": "getAllTenantsV2",
        "description": "The parameters and request body are for method: getAllTenantsV2. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              },
              "example": {}
            }
          }
        }
      }
    },
    "/v2/tenants/{tenantId}": {
      "get": {
        "tags": [
          "AdminProvisioningServiceV2"
        ],
        "operationId": "getTenantV2",
        "description": "The parameters and request body are for method: getTenantV2. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "tenantId",
            "in": "path",
            "required": true,
            "schema": {
              "title": "tenantId",
              "type": "string"
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              },
              "example": {}
            }
          }
        }
      },
      "delete": {
        "tags": [
          "AdminProvisioningServiceV2"
        ],
        "operationId": "deleteTenantV2",
        "description": "The parameters and request body are for method: deleteTenantV2. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "tenantId",
            "in": "path",
            "required": true,
            "schema": {
              "title": "tenantId",
              "type": "string"
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              },
              "example": {}
            }
          }
        }
      },
      "patch": {
        "tags": [
          "AdminProvisioningServiceV2"
        ],
        "operationId": "patchTenantV2",
        "description": "The parameters and request body are for method: patchTenantV2. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "tenantId",
            "in": "path",
            "required": true,
            "schema": {
              "title": "tenantId",
              "type": "string"
            }
          }
        ],
        "requestBody": {
          "description": "indeterminate body object",
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          }
        }
      }
    },
    "/v2/tenant-by-alias/{value}": {
      "get": {
        "tags": [
          "AdminProvisioningServiceV2"
        ],
        "operationId": "getTenantIdByAliasV2",
        "description": "The parameters and request body are for method: getTenantIdByAliasV2. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "value",
            "in": "path",
            "required": true,
            "schema": {
              "title": "value",
              "type": "string"
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              },
              "example": {}
            }
          }
        }
      }
    },
    "/v2/tenant-summary-by-alias/{value}": {
      "get": {
        "tags": [
          "AdminProvisioningServiceV2"
        ],
        "operationId": "getTenantSummaryByAliasV2",
        "description": "The parameters and request body are for method: getTenantSummaryByAliasV2. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "value",
            "in": "path",
            "required": true,
            "schema": {
              "title": "value",
              "type": "string"
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              },
              "example": {}
            }
          }
        }
      }
    },
    "/v2/ingestion-dictionaries": {
      "get": {
        "tags": [
          "AdminProvisioningServiceV2"
        ],
        "operationId": "getIngestionDictionaryV2",
        "description": "The parameters and request body are for method: getIngestionDictionaryV2. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              },
              "example": {}
            }
          }
        }
      }
    },
    "/v2/valid-types": {
      "get": {
        "tags": [
          "AdminProvisioningServiceV2"
        ],
        "operationId": "getValidTypesV2",
        "description": "The parameters and request body are for method: getValidTypesV2. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              },
              "example": {}
            }
          }
        }
      }
    },
    "/v2/tenant-metadata/{tenantId}": {
      "get": {
        "tags": [
          "AdminProvisioningServiceV2"
        ],
        "operationId": "getTenantMetadataV2",
        "description": "The parameters and request body are for method: getTenantMetadataV2. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "tenantId",
            "in": "path",
            "required": true,
            "schema": {
              "title": "tenantId",
              "type": "string"
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              },
              "example": {}
            }
          }
        }
      },
      "patch": {
        "tags": [
          "AdminProvisioningServiceV2"
        ],
        "operationId": "updateTenantMetadataV2",
        "description": "The parameters and request body are for method: updateTenantMetadataV2. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "tenantId",
            "in": "path",
            "required": true,
            "schema": {
              "title": "tenantId",
              "type": "string"
            }
          }
        ],
        "requestBody": {
          "description": "indeterminate body object",
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          }
        }
      }
    },
    "/v2/alerts/monitoredObjectIds/{monitoredObjectId}": {
      "get": {
        "tags": [
          "TenantAlertServiceV2"
        ],
        "operationId": "getAlertsForMonitoredObject",
        "description": "The parameters and request body are for method: getAlertsForMonitoredObject. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "monitoredObjectId",
            "in": "path",
            "required": true,
            "schema": {
              "title": "monitoredObjectId",
              "type": "string"
            }
          },
          {
            "name": "interval",
            "in": "query",
            "required": true,
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "alertState",
            "in": "query",
            "required": true,
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "policyId",
            "in": "query",
            "required": true,
            "schema": {
              "type": "string"
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              },
              "example": {}
            }
          }
        }
      }
    },
    "/v2/alerts/active/monitoredObjectIds/{monitoredObjectId}": {
      "get": {
        "tags": [
          "TenantAlertServiceV2"
        ],
        "operationId": "getActiveAlertsForMonitoredObject",
        "description": "The parameters and request body are for method: getActiveAlertsForMonitoredObject. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "monitoredObjectId",
            "in": "path",
            "required": true,
            "schema": {
              "title": "monitoredObjectId",
              "type": "string"
            }
          },
          {
            "name": "policyId",
            "in": "query",
            "required": true,
            "schema": {
              "type": "string"
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              },
              "example": {}
            }
          }
        }
      },
      "delete": {
        "tags": [
          "TenantAlertServiceV2"
        ],
        "operationId": "deleteActiveAlertsForMonitoredObject",
        "description": "The parameters and request body are for method: deleteActiveAlertsForMonitoredObject. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "monitoredObjectId",
            "in": "path",
            "required": true,
            "schema": {
              "title": "monitoredObjectId",
              "type": "string"
            }
          },
          {
            "name": "policyId",
            "in": "query",
            "required": true,
            "schema": {
              "type": "string"
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              },
              "example": {}
            }
          }
        }
      }
    },
    "/v2/alerts/active/monitoredObjectIds": {
      "post": {
        "tags": [
          "TenantAlertServiceV2"
        ],
        "operationId": "createActiveAlertForMonitoredObject",
        "description": "The parameters and request body are for method: createActiveAlertForMonitoredObject. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "requestBody": {
          "description": "indeterminate body object",
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          }
        }
      }
    },
    "/v2/alerts/active/policies/{policyId}": {
      "get": {
        "tags": [
          "TenantAlertServiceV2"
        ],
        "operationId": "getActiveAlertsForPolicy",
        "description": "The parameters and request body are for method: getActiveAlertsForPolicy. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "policyId",
            "in": "path",
            "required": true,
            "schema": {
              "title": "policyId",
              "type": "string"
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              },
              "example": {}
            }
          }
        }
      },
      "delete": {
        "tags": [
          "TenantAlertServiceV2"
        ],
        "operationId": "deleteActiveAlertsForPolicy",
        "description": "The parameters and request body are for method: deleteActiveAlertsForPolicy. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "policyId",
            "in": "path",
            "required": true,
            "schema": {
              "title": "policyId",
              "type": "string"
            }
          },
          {
            "name": "monitoredObjectId",
            "in": "query",
            "required": true,
            "schema": {
              "type": "string"
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              },
              "example": {}
            }
          }
        }
      }
    },
    "/v2/alerts/active/groupBy": {
      "post": {
        "tags": [
          "TenantAlertServiceV2"
        ],
        "operationId": "getActiveAlertGroupBy",
        "description": "The parameters and request body are for method: getActiveAlertGroupBy. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "requestBody": {
          "description": "indeterminate body object",
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          }
        }
      }
    },
    "/v2/alerts/active": {
      "post": {
        "tags": [
          "TenantAlertServiceV2"
        ],
        "operationId": "getActiveAlertsForMetaFilter",
        "description": "The parameters and request body are for method: getActiveAlertsForMetaFilter. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "requestBody": {
          "description": "indeterminate body object",
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          }
        }
      }
    },
    "/v2/alerts/active/count": {
      "post": {
        "tags": [
          "TenantAlertServiceV2"
        ],
        "operationId": "getActiveAlertsFilteredCounts",
        "description": "The parameters and request body are for method: getActiveAlertsFilteredCounts. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "requestBody": {
          "description": "indeterminate body object",
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          }
        }
      }
    },
    "/v2/alerts/active/securityState": {
      "post": {
        "tags": [
          "TenantAlertServiceV2"
        ],
        "operationId": "updateActiveAlertsSecurityState",
        "description": "The parameters and request body are for method: updateActiveAlertsSecurityState. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "requestBody": {
          "description": "indeterminate body object",
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          }
        }
      }
    },
    "/v2/policies/alerting": {
      "post": {
        "tags": [
          "TenantAlertServiceV2"
        ],
        "operationId": "createRequestAlertPolicy",
        "description": "The parameters and request body are for method: createRequestAlertPolicy. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "requestBody": {
          "description": "indeterminate body object",
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          }
        }
      },
      "get": {
        "tags": [
          "TenantAlertServiceV2"
        ],
        "operationId": "getAllRequestAlertPolicy",
        "description": "The parameters and request body are for method: getAllRequestAlertPolicy. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "useRawMetaKey",
            "in": "query",
            "required": true,
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "includeDeleted",
            "in": "query",
            "required": true,
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "policyType",
            "in": "query",
            "required": true,
            "schema": {
              "type": "string"
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              },
              "example": {}
            }
          }
        }
      }
    },
    "/v2/policies/alerting/automatic": {
      "patch": {
        "tags": [
          "TenantAlertServiceV2"
        ],
        "operationId": "patchAutomaticAlertPolicy",
        "description": "The parameters and request body are for method: patchAutomaticAlertPolicy. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "requestBody": {
          "description": "indeterminate body object",
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          }
        }
      },
      "get": {
        "tags": [
          "TenantAlertServiceV2"
        ],
        "operationId": "getAutomaticAlertPolicy",
        "description": "The parameters and request body are for method: getAutomaticAlertPolicy. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              },
              "example": {}
            }
          }
        }
      }
    },
    "/v2/policies/alerting/{id}": {
      "get": {
        "tags": [
          "TenantAlertServiceV2"
        ],
        "operationId": "getRequestAlertPolicy",
        "description": "The parameters and request body are for method: getRequestAlertPolicy. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "required": true,
            "schema": {
              "title": "id",
              "type": "string"
            }
          },
          {
            "name": "useRawMetaKey",
            "in": "query",
            "required": true,
            "schema": {
              "type": "string"
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              },
              "example": {}
            }
          }
        }
      },
      "delete": {
        "tags": [
          "TenantAlertServiceV2"
        ],
        "operationId": "deleteRequestAlertPolicy",
        "description": "The parameters and request body are for method: deleteRequestAlertPolicy. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "required": true,
            "schema": {
              "title": "id",
              "type": "string"
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              },
              "example": {}
            }
          }
        }
      },
      "patch": {
        "tags": [
          "TenantAlertServiceV2"
        ],
        "operationId": "patchRequestAlertPolicy",
        "description": "The parameters and request body are for method: patchRequestAlertPolicy. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "required": true,
            "schema": {
              "title": "id",
              "type": "string"
            }
          },
          {
            "name": "force",
            "in": "query",
            "required": true,
            "schema": {
              "type": "string"
            }
          }
        ],
        "requestBody": {
          "description": "indeterminate body object",
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          }
        }
      }
    },
    "/v2/alerts/history/": {
      "get": {
        "tags": [
          "TenantAlertServiceV2"
        ],
        "operationId": "getAlertPolicyHistory",
        "description": "The parameters and request body are for method: getAlertPolicyHistory. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "policyId",
            "in": "query",
            "required": true,
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "interval",
            "in": "query",
            "required": true,
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "monitoredObjectId",
            "in": "query",
            "required": true,
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "alertState",
            "in": "query",
            "required": true,
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "policyType",
            "in": "query",
            "required": true,
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "limit",
            "in": "query",
            "required": true,
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "useRawMetaKey",
            "in": "query",
            "required": true,
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "category",
            "in": "query",
            "required": true,
            "schema": {
              "type": "string"
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              },
              "example": {}
            }
          }
        }
      }
    },
    "/v2/alerting/groupBy": {
      "post": {
        "tags": [
          "TenantAlertServiceV2"
        ],
        "operationId": "getAlertingGroupByV3",
        "description": "The parameters and request body are for method: getAlertingGroupByV3. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "requestBody": {
          "description": "indeterminate body object",
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          }
        }
      }
    },
    "/v2/alerting/aggregate": {
      "post": {
        "tags": [
          "TenantAlertServiceV2"
        ],
        "operationId": "getAlertingAggregateV3",
        "description": "The parameters and request body are for method: getAlertingAggregateV3. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "requestBody": {
          "description": "indeterminate body object",
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          }
        }
      }
    },
    "/v2/ramen/state/{tenantId}": {
      "get": {
        "tags": [
          "TenantAlertServiceV2"
        ],
        "operationId": "getRamenState",
        "description": "The parameters and request body are for method: getRamenState. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "tenantId",
            "in": "path",
            "required": true,
            "schema": {
              "title": "tenantId",
              "type": "string"
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              },
              "example": {}
            }
          }
        }
      }
    },
    "/v2/analytics": {
      "post": {
        "tags": [
          "TenantProvisioningServiceV2"
        ],
        "operationId": "createAnalyticsV2",
        "description": "The parameters and request body are for method: createAnalyticsV2. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "requestBody": {
          "description": "indeterminate body object",
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          }
        }
      },
      "get": {
        "tags": [
          "TenantProvisioningServiceV2"
        ],
        "operationId": "getAllAnalyticsV2",
        "description": "The parameters and request body are for method: getAllAnalyticsV2. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              },
              "example": {}
            }
          }
        }
      }
    },
    "/v2/analytics/{analyticsId}": {
      "get": {
        "tags": [
          "TenantProvisioningServiceV2"
        ],
        "operationId": "getAnalyticsV2",
        "description": "The parameters and request body are for method: getAnalyticsV2. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "analyticsId",
            "in": "path",
            "required": true,
            "schema": {
              "title": "analyticsId",
              "type": "string"
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              },
              "example": {}
            }
          }
        }
      },
      "delete": {
        "tags": [
          "TenantProvisioningServiceV2"
        ],
        "operationId": "deleteAnalyticsV2",
        "description": "The parameters and request body are for method: deleteAnalyticsV2. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "analyticsId",
            "in": "path",
            "required": true,
            "schema": {
              "title": "analyticsId",
              "type": "string"
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              },
              "example": {}
            }
          }
        }
      }
    },
    "/v2/brandings": {
      "post": {
        "tags": [
          "TenantProvisioningServiceV2"
        ],
        "operationId": "createBrandingV2",
        "description": "The parameters and request body are for method: createBrandingV2. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "requestBody": {
          "description": "indeterminate body object",
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          }
        }
      },
      "get": {
        "tags": [
          "TenantProvisioningServiceV2"
        ],
        "operationId": "getAllBrandingsV2",
        "description": "The parameters and request body are for method: getAllBrandingsV2. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "zone",
            "in": "query",
            "required": true,
            "schema": {
              "type": "string"
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              },
              "example": {}
            }
          }
        }
      }
    },
    "/v2/brandings/{brandingId}": {
      "get": {
        "tags": [
          "TenantProvisioningServiceV2"
        ],
        "operationId": "getBrandingV2",
        "description": "The parameters and request body are for method: getBrandingV2. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "brandingId",
            "in": "path",
            "required": true,
            "schema": {
              "title": "brandingId",
              "type": "string"
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              },
              "example": {}
            }
          }
        }
      },
      "patch": {
        "tags": [
          "TenantProvisioningServiceV2"
        ],
        "operationId": "updateBrandingV2",
        "description": "The parameters and request body are for method: updateBrandingV2. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "brandingId",
            "in": "path",
            "required": true,
            "schema": {
              "title": "brandingId",
              "type": "string"
            }
          }
        ],
        "requestBody": {
          "description": "indeterminate body object",
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          }
        }
      },
      "delete": {
        "tags": [
          "TenantProvisioningServiceV2"
        ],
        "operationId": "deleteBrandingV2",
        "description": "The parameters and request body are for method: deleteBrandingV2. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "brandingId",
            "in": "path",
            "required": true,
            "schema": {
              "title": "brandingId",
              "type": "string"
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              },
              "example": {}
            }
          }
        }
      }
    },
    "/v2/locales": {
      "post": {
        "tags": [
          "TenantProvisioningServiceV2"
        ],
        "operationId": "createLocaleV2",
        "description": "The parameters and request body are for method: createLocaleV2. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "requestBody": {
          "description": "indeterminate body object",
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          }
        }
      },
      "get": {
        "tags": [
          "TenantProvisioningServiceV2"
        ],
        "operationId": "getAllLocalesV2",
        "description": "The parameters and request body are for method: getAllLocalesV2. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              },
              "example": {}
            }
          }
        }
      }
    },
    "/v2/locales/{localeId}": {
      "get": {
        "tags": [
          "TenantProvisioningServiceV2"
        ],
        "operationId": "getLocaleV2",
        "description": "The parameters and request body are for method: getLocaleV2. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "localeId",
            "in": "path",
            "required": true,
            "schema": {
              "title": "localeId",
              "type": "string"
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              },
              "example": {}
            }
          }
        }
      },
      "patch": {
        "tags": [
          "TenantProvisioningServiceV2"
        ],
        "operationId": "updateLocaleV2",
        "description": "The parameters and request body are for method: updateLocaleV2. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "localeId",
            "in": "path",
            "required": true,
            "schema": {
              "title": "localeId",
              "type": "string"
            }
          }
        ],
        "requestBody": {
          "description": "indeterminate body object",
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          }
        }
      },
      "delete": {
        "tags": [
          "TenantProvisioningServiceV2"
        ],
        "operationId": "deleteLocaleV2",
        "description": "The parameters and request body are for method: deleteLocaleV2. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "localeId",
            "in": "path",
            "required": true,
            "schema": {
              "title": "localeId",
              "type": "string"
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              },
              "example": {}
            }
          }
        }
      }
    },
    "/v2/composite-metrics": {
      "post": {
        "tags": [
          "TenantProvisioningServiceV2"
        ],
        "operationId": "createCompositeMetricV2",
        "description": "The parameters and request body are for method: createCompositeMetricV2. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "requestBody": {
          "description": "indeterminate body object",
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          }
        }
      },
      "get": {
        "tags": [
          "TenantProvisioningServiceV2"
        ],
        "operationId": "getAllCompositeMetricsV2",
        "description": "The parameters and request body are for method: getAllCompositeMetricsV2. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              },
              "example": {}
            }
          }
        }
      }
    },
    "/v2/composite-metrics/{compositeMetricId}": {
      "get": {
        "tags": [
          "TenantProvisioningServiceV2"
        ],
        "operationId": "getCompositeMetricV2",
        "description": "The parameters and request body are for method: getCompositeMetricV2. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "compositeMetricId",
            "in": "path",
            "required": true,
            "schema": {
              "title": "compositeMetricId",
              "type": "string"
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              },
              "example": {}
            }
          }
        }
      },
      "patch": {
        "tags": [
          "TenantProvisioningServiceV2"
        ],
        "operationId": "updateCompositeMetricV2",
        "description": "The parameters and request body are for method: updateCompositeMetricV2. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "compositeMetricId",
            "in": "path",
            "required": true,
            "schema": {
              "title": "compositeMetricId",
              "type": "string"
            }
          }
        ],
        "requestBody": {
          "description": "indeterminate body object",
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          }
        }
      },
      "delete": {
        "tags": [
          "TenantProvisioningServiceV2"
        ],
        "operationId": "deleteCompositeMetricV2",
        "description": "The parameters and request body are for method: deleteCompositeMetricV2. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "compositeMetricId",
            "in": "path",
            "required": true,
            "schema": {
              "title": "compositeMetricId",
              "type": "string"
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              },
              "example": {}
            }
          }
        }
      }
    },
    "/v2/connector-configs": {
      "post": {
        "tags": [
          "TenantProvisioningServiceV2"
        ],
        "operationId": "createConnectorConfigV2",
        "description": "The parameters and request body are for method: createConnectorConfigV2. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "requestBody": {
          "description": "indeterminate body object",
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          }
        }
      },
      "get": {
        "tags": [
          "TenantProvisioningServiceV2"
        ],
        "operationId": "getAllConnectorConfigsV2",
        "description": "The parameters and request body are for method: getAllConnectorConfigsV2. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "zone",
            "in": "query",
            "required": true,
            "schema": {
              "type": "string"
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              },
              "example": {}
            }
          }
        }
      }
    },
    "/v2/connector-configs/{connectorId}": {
      "get": {
        "tags": [
          "TenantProvisioningServiceV2"
        ],
        "operationId": "getConnectorConfigV2",
        "description": "The parameters and request body are for method: getConnectorConfigV2. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "connectorId",
            "in": "path",
            "required": true,
            "schema": {
              "title": "connectorId",
              "type": "string"
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              },
              "example": {}
            }
          }
        }
      },
      "patch": {
        "tags": [
          "TenantProvisioningServiceV2"
        ],
        "operationId": "updateConnectorConfigV2",
        "description": "The parameters and request body are for method: updateConnectorConfigV2. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "connectorId",
            "in": "path",
            "required": true,
            "schema": {
              "title": "connectorId",
              "type": "string"
            }
          }
        ],
        "requestBody": {
          "description": "indeterminate body object",
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          }
        }
      },
      "delete": {
        "tags": [
          "TenantProvisioningServiceV2"
        ],
        "operationId": "deleteConnectorConfigV2",
        "description": "The parameters and request body are for method: deleteConnectorConfigV2. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "connectorId",
            "in": "path",
            "required": true,
            "schema": {
              "title": "connectorId",
              "type": "string"
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              },
              "example": {}
            }
          }
        }
      }
    },
    "/v2/connector-instances": {
      "post": {
        "tags": [
          "TenantProvisioningServiceV2"
        ],
        "operationId": "createConnectorInstanceV2",
        "description": "The parameters and request body are for method: createConnectorInstanceV2. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "requestBody": {
          "description": "indeterminate body object",
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          }
        }
      },
      "get": {
        "tags": [
          "TenantProvisioningServiceV2"
        ],
        "operationId": "getAllConnectorInstancesV2",
        "description": "The parameters and request body are for method: getAllConnectorInstancesV2. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              },
              "example": {}
            }
          }
        }
      }
    },
    "/v2/connector-instances/{connectorInstanceId}": {
      "get": {
        "tags": [
          "TenantProvisioningServiceV2"
        ],
        "operationId": "getConnectorInstanceV2",
        "description": "The parameters and request body are for method: getConnectorInstanceV2. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "connectorInstanceId",
            "in": "path",
            "required": true,
            "schema": {
              "title": "connectorInstanceId",
              "type": "string"
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              },
              "example": {}
            }
          }
        }
      },
      "patch": {
        "tags": [
          "TenantProvisioningServiceV2"
        ],
        "operationId": "updateConnectorInstanceV2",
        "description": "The parameters and request body are for method: updateConnectorInstanceV2. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "connectorInstanceId",
            "in": "path",
            "required": true,
            "schema": {
              "title": "connectorInstanceId",
              "type": "string"
            }
          }
        ],
        "requestBody": {
          "description": "indeterminate body object",
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          }
        }
      },
      "delete": {
        "tags": [
          "TenantProvisioningServiceV2"
        ],
        "operationId": "deleteConnectorInstanceV2",
        "description": "The parameters and request body are for method: deleteConnectorInstanceV2. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "connectorInstanceId",
            "in": "path",
            "required": true,
            "schema": {
              "title": "connectorInstanceId",
              "type": "string"
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              },
              "example": {}
            }
          }
        }
      }
    },
    "/v2/dashboards": {
      "post": {
        "tags": [
          "TenantProvisioningServiceV2"
        ],
        "operationId": "createDashboardV2",
        "description": "The parameters and request body are for method: createDashboardV2. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "requestBody": {
          "description": "indeterminate body object",
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          }
        }
      },
      "get": {
        "tags": [
          "TenantProvisioningServiceV2"
        ],
        "operationId": "getAllDashboardsV2",
        "description": "The parameters and request body are for method: getAllDashboardsV2. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "zone",
            "in": "query",
            "required": true,
            "schema": {
              "type": "string"
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              },
              "example": {}
            }
          }
        }
      }
    },
    "/v2/dashboards/{dashboardId}": {
      "get": {
        "tags": [
          "TenantProvisioningServiceV2"
        ],
        "operationId": "getDashboardV2",
        "description": "The parameters and request body are for method: getDashboardV2. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "dashboardId",
            "in": "path",
            "required": true,
            "schema": {
              "title": "dashboardId",
              "type": "string"
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              },
              "example": {}
            }
          }
        }
      },
      "patch": {
        "tags": [
          "TenantProvisioningServiceV2"
        ],
        "operationId": "updateDashboardV2",
        "description": "The parameters and request body are for method: updateDashboardV2. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "dashboardId",
            "in": "path",
            "required": true,
            "schema": {
              "title": "dashboardId",
              "type": "string"
            }
          }
        ],
        "requestBody": {
          "description": "indeterminate body object",
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          }
        }
      },
      "delete": {
        "tags": [
          "TenantProvisioningServiceV2"
        ],
        "operationId": "deleteDashboardV2",
        "description": "The parameters and request body are for method: deleteDashboardV2. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "dashboardId",
            "in": "path",
            "required": true,
            "schema": {
              "title": "dashboardId",
              "type": "string"
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              },
              "example": {}
            }
          }
        }
      }
    },
    "/v2/cards": {
      "post": {
        "tags": [
          "TenantProvisioningServiceV2"
        ],
        "operationId": "createCardV2",
        "description": "The parameters and request body are for method: createCardV2. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "requestBody": {
          "description": "indeterminate body object",
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          }
        }
      },
      "get": {
        "tags": [
          "TenantProvisioningServiceV2"
        ],
        "operationId": "getAllCardsV2",
        "description": "The parameters and request body are for method: getAllCardsV2. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "zone",
            "in": "query",
            "required": true,
            "schema": {
              "type": "string"
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              },
              "example": {}
            }
          }
        }
      }
    },
    "/v2/cards/{cardId}": {
      "get": {
        "tags": [
          "TenantProvisioningServiceV2"
        ],
        "operationId": "getCardV2",
        "description": "The parameters and request body are for method: getCardV2. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "cardId",
            "in": "path",
            "required": true,
            "schema": {
              "title": "cardId",
              "type": "string"
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              },
              "example": {}
            }
          }
        }
      },
      "patch": {
        "tags": [
          "TenantProvisioningServiceV2"
        ],
        "operationId": "updateCardV2",
        "description": "The parameters and request body are for method: updateCardV2. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "cardId",
            "in": "path",
            "required": true,
            "schema": {
              "title": "cardId",
              "type": "string"
            }
          }
        ],
        "requestBody": {
          "description": "indeterminate body object",
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          }
        }
      },
      "delete": {
        "tags": [
          "TenantProvisioningServiceV2"
        ],
        "operationId": "deleteCardV2",
        "description": "The parameters and request body are for method: deleteCardV2. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "cardId",
            "in": "path",
            "required": true,
            "schema": {
              "title": "cardId",
              "type": "string"
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              },
              "example": {}
            }
          }
        }
      }
    },
    "/v2/data-cleaning-profiles": {
      "post": {
        "tags": [
          "TenantProvisioningServiceV2"
        ],
        "operationId": "createDataCleaningProfile",
        "description": "The parameters and request body are for method: createDataCleaningProfile. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "requestBody": {
          "description": "indeterminate body object",
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          }
        }
      },
      "get": {
        "tags": [
          "TenantProvisioningServiceV2"
        ],
        "operationId": "getDataCleaningProfiles",
        "description": "The parameters and request body are for method: getDataCleaningProfiles. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              },
              "example": {}
            }
          }
        }
      }
    },
    "/v2/data-cleaning-profiles/{profileId}": {
      "get": {
        "tags": [
          "TenantProvisioningServiceV2"
        ],
        "operationId": "getDataCleaningProfile",
        "description": "The parameters and request body are for method: getDataCleaningProfile. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "profileId",
            "in": "path",
            "required": true,
            "schema": {
              "title": "profileId",
              "type": "string"
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              },
              "example": {}
            }
          }
        }
      },
      "patch": {
        "tags": [
          "TenantProvisioningServiceV2"
        ],
        "operationId": "updateDataCleaningProfile",
        "description": "The parameters and request body are for method: updateDataCleaningProfile. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "profileId",
            "in": "path",
            "required": true,
            "schema": {
              "title": "profileId",
              "type": "string"
            }
          }
        ],
        "requestBody": {
          "description": "indeterminate body object",
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          }
        }
      },
      "delete": {
        "tags": [
          "TenantProvisioningServiceV2"
        ],
        "operationId": "deleteDataCleaningProfile",
        "description": "The parameters and request body are for method: deleteDataCleaningProfile. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "profileId",
            "in": "path",
            "required": true,
            "schema": {
              "title": "profileId",
              "type": "string"
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              },
              "example": {}
            }
          }
        }
      }
    },
    "/v2/data-cleaning-history": {
      "get": {
        "tags": [
          "TenantProvisioningServiceV2"
        ],
        "operationId": "getDataCleaningHistory",
        "description": "The parameters and request body are for method: getDataCleaningHistory. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "monitoredObjectId",
            "in": "query",
            "required": true,
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "interval",
            "in": "query",
            "required": true,
            "schema": {
              "type": "string"
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              },
              "example": {}
            }
          }
        }
      }
    },
    "/v2/distribution/download-roadrunner": {
      "get": {
        "tags": [
          "TenantProvisioningServiceV2"
        ],
        "operationId": "downloadRoadrunner",
        "description": "The parameters and request body are for method: downloadRoadrunner. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "zone",
            "in": "query",
            "required": true,
            "schema": {
              "type": "string"
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              },
              "example": {}
            }
          }
        }
      }
    },
    "/v2/ingestion-profiles": {
      "post": {
        "tags": [
          "TenantProvisioningServiceV2"
        ],
        "operationId": "createIngestionProfileV2",
        "description": "The parameters and request body are for method: createIngestionProfileV2. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "requestBody": {
          "description": "indeterminate body object",
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          }
        }
      },
      "get": {
        "tags": [
          "TenantProvisioningServiceV2"
        ],
        "operationId": "getAllIngestionProfilesV2",
        "description": "The parameters and request body are for method: getAllIngestionProfilesV2. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              },
              "example": {}
            }
          }
        }
      }
    },
    "/v2/ingestion-profiles/{ingestionProfileId}": {
      "get": {
        "tags": [
          "TenantProvisioningServiceV2"
        ],
        "operationId": "getIngestionProfileV2",
        "description": "The parameters and request body are for method: getIngestionProfileV2. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "ingestionProfileId",
            "in": "path",
            "required": true,
            "schema": {
              "title": "ingestionProfileId",
              "type": "string"
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              },
              "example": {}
            }
          }
        }
      },
      "patch": {
        "tags": [
          "TenantProvisioningServiceV2"
        ],
        "operationId": "updateIngestionProfileV2",
        "description": "The parameters and request body are for method: updateIngestionProfileV2. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "ingestionProfileId",
            "in": "path",
            "required": true,
            "schema": {
              "title": "ingestionProfileId",
              "type": "string"
            }
          }
        ],
        "requestBody": {
          "description": "indeterminate body object",
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          }
        }
      },
      "delete": {
        "tags": [
          "TenantProvisioningServiceV2"
        ],
        "operationId": "deleteIngestionProfileV2",
        "description": "The parameters and request body are for method: deleteIngestionProfileV2. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "ingestionProfileId",
            "in": "path",
            "required": true,
            "schema": {
              "title": "ingestionProfileId",
              "type": "string"
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              },
              "example": {}
            }
          }
        }
      }
    },
    "/v2/metadata-configs": {
      "post": {
        "tags": [
          "TenantProvisioningServiceV2"
        ],
        "operationId": "createMetadataConfigV2",
        "description": "The parameters and request body are for method: createMetadataConfigV2. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "requestBody": {
          "description": "indeterminate body object",
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          }
        }
      },
      "get": {
        "tags": [
          "TenantProvisioningServiceV2"
        ],
        "operationId": "getAllMetadataConfigsV2",
        "description": "The parameters and request body are for method: getAllMetadataConfigsV2. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              },
              "example": {}
            }
          }
        }
      }
    },
    "/v2/metadata-configs/{metadataConfigId}": {
      "get": {
        "tags": [
          "TenantProvisioningServiceV2"
        ],
        "operationId": "getMetadataConfigV2",
        "description": "The parameters and request body are for method: getMetadataConfigV2. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "metadataConfigId",
            "in": "path",
            "required": true,
            "schema": {
              "title": "metadataConfigId",
              "type": "string"
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              },
              "example": {}
            }
          }
        }
      },
      "patch": {
        "tags": [
          "TenantProvisioningServiceV2"
        ],
        "operationId": "updateMetadataConfigV2",
        "description": "The parameters and request body are for method: updateMetadataConfigV2. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "metadataConfigId",
            "in": "path",
            "required": true,
            "schema": {
              "title": "metadataConfigId",
              "type": "string"
            }
          }
        ],
        "requestBody": {
          "description": "indeterminate body object",
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          }
        }
      },
      "delete": {
        "tags": [
          "TenantProvisioningServiceV2"
        ],
        "operationId": "deleteMetadataConfigV2",
        "description": "The parameters and request body are for method: deleteMetadataConfigV2. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "metadataConfigId",
            "in": "path",
            "required": true,
            "schema": {
              "title": "metadataConfigId",
              "type": "string"
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              },
              "example": {}
            }
          }
        }
      }
    },
    "/v2/metric-baselines/by-monitored-object/{monitoredObjectId}": {
      "get": {
        "tags": [
          "TenantProvisioningServiceV2"
        ],
        "operationId": "getMetricBaselineByMonitoredObjectIdV2",
        "description": "The parameters and request body are for method: getMetricBaselineByMonitoredObjectIdV2. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "monitoredObjectId",
            "in": "path",
            "required": true,
            "schema": {
              "title": "monitoredObjectId",
              "type": "string"
            }
          },
          {
            "name": "interval",
            "in": "query",
            "required": true,
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "directions",
            "in": "query",
            "required": true,
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "metrics",
            "in": "query",
            "required": true,
            "schema": {
              "type": "string"
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              },
              "example": {}
            }
          }
        }
      }
    },
    "/v2/duplicate-monitored-object-reports": {
      "get": {
        "tags": [
          "TenantProvisioningServiceV2"
        ],
        "operationId": "getAllDuplicateMonitoredObjectReportsV2",
        "description": "The parameters and request body are for method: getAllDuplicateMonitoredObjectReportsV2. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              },
              "example": {}
            }
          }
        }
      },
      "post": {
        "tags": [
          "TenantProvisioningServiceV2"
        ],
        "operationId": "generateDuplicateMonitoredObjectReportV2",
        "description": "The parameters and request body are for method: generateDuplicateMonitoredObjectReportV2. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              },
              "example": {}
            }
          }
        }
      }
    },
    "/v2/duplicate-monitored-object-reports/{duplicateMonitoredObjectResportId}": {
      "get": {
        "tags": [
          "TenantProvisioningServiceV2"
        ],
        "operationId": "getDuplicateMonitoredObjectReportV2",
        "description": "The parameters and request body are for method: getDuplicateMonitoredObjectReportV2. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "duplicateMonitoredObjectResportId",
            "in": "path",
            "required": true,
            "schema": {
              "title": "duplicateMonitoredObjectResportId",
              "type": "string"
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              },
              "example": {}
            }
          }
        }
      }
    },
    "/v2/monitored-object-tag-mappings": {
      "post": {
        "tags": [
          "TenantProvisioningServiceV2"
        ],
        "operationId": "createMonitoredObjectTagMappingV2",
        "description": "The parameters and request body are for method: createMonitoredObjectTagMappingV2. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "requestBody": {
          "description": "indeterminate body object",
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          }
        }
      },
      "get": {
        "tags": [
          "TenantProvisioningServiceV2"
        ],
        "operationId": "getAllMonitoredObjectTagMappingsV2",
        "description": "The parameters and request body are for method: getAllMonitoredObjectTagMappingsV2. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "zone",
            "in": "query",
            "required": true,
            "schema": {
              "type": "string"
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              },
              "example": {}
            }
          }
        }
      }
    },
    "/v2/monitored-object-tag-mappings/{monitoredObjectTagMappingId}": {
      "get": {
        "tags": [
          "TenantProvisioningServiceV2"
        ],
        "operationId": "getMonitoredObjectTagMappingV2",
        "description": "The parameters and request body are for method: getMonitoredObjectTagMappingV2. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "monitoredObjectTagMappingId",
            "in": "path",
            "required": true,
            "schema": {
              "title": "monitoredObjectTagMappingId",
              "type": "string"
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              },
              "example": {}
            }
          }
        }
      },
      "patch": {
        "tags": [
          "TenantProvisioningServiceV2"
        ],
        "operationId": "updateMonitoredObjectTagMappingV2",
        "description": "The parameters and request body are for method: updateMonitoredObjectTagMappingV2. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "monitoredObjectTagMappingId",
            "in": "path",
            "required": true,
            "schema": {
              "title": "monitoredObjectTagMappingId",
              "type": "string"
            }
          }
        ],
        "requestBody": {
          "description": "indeterminate body object",
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          }
        }
      },
      "delete": {
        "tags": [
          "TenantProvisioningServiceV2"
        ],
        "operationId": "deleteMonitoredObjectTagMappingV2",
        "description": "The parameters and request body are for method: deleteMonitoredObjectTagMappingV2. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "monitoredObjectTagMappingId",
            "in": "path",
            "required": true,
            "schema": {
              "title": "monitoredObjectTagMappingId",
              "type": "string"
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              },
              "example": {}
            }
          }
        }
      }
    },
    "/v2/monitored-objects": {
      "get": {
        "tags": [
          "TenantProvisioningServiceV2"
        ],
        "operationId": "getAllMonitoredObjectsV2",
        "description": "The parameters and request body are for method: getAllMonitoredObjectsV2. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "startKey",
            "in": "query",
            "required": true,
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "limit",
            "in": "query",
            "required": true,
            "schema": {
              "type": "string"
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              },
              "example": {}
            }
          }
        }
      },
      "post": {
        "tags": [
          "TenantProvisioningServiceV2"
        ],
        "operationId": "createMonitoredObjectV2",
        "description": "The parameters and request body are for method: createMonitoredObjectV2. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "requestBody": {
          "description": "indeterminate body object",
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          }
        }
      }
    },
    "/v2/monitored-objects/count": {
      "post": {
        "tags": [
          "TenantProvisioningServiceV2"
        ],
        "operationId": "getFilteredMonitoredObjectCountV2",
        "description": "The parameters and request body are for method: getFilteredMonitoredObjectCountV2. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "groupBy",
            "in": "query",
            "required": true,
            "schema": {
              "type": "string"
            }
          }
        ],
        "requestBody": {
          "description": "indeterminate body object",
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          }
        }
      }
    },
    "/v2/monitored-objects/id-list": {
      "post": {
        "tags": [
          "TenantProvisioningServiceV2"
        ],
        "operationId": "getFilteredMonitoredObjectListV2",
        "description": "The parameters and request body are for method: getFilteredMonitoredObjectListV2. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "requestBody": {
          "description": "indeterminate body object",
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          }
        }
      }
    },
    "/v2/monitored-objects/reporting": {
      "post": {
        "tags": [
          "TenantProvisioningServiceV2"
        ],
        "operationId": "getMonitoredObjectReportingListV2",
        "description": "The parameters and request body are for method: getMonitoredObjectReportingListV2. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "requestBody": {
          "description": "indeterminate body object",
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          }
        }
      }
    },
    "/v2/monitored-object-geo-clusters": {
      "post": {
        "tags": [
          "TenantProvisioningServiceV2"
        ],
        "operationId": "getMonitoredObjectGeoClustersV2",
        "description": "The parameters and request body are for method: getMonitoredObjectGeoClustersV2. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "precision",
            "in": "query",
            "required": true,
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "location",
            "in": "query",
            "required": true,
            "schema": {
              "type": "string"
            }
          }
        ],
        "requestBody": {
          "description": "indeterminate body object",
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          }
        }
      }
    },
    "/v2/monitored-object-meta-details": {
      "get": {
        "tags": [
          "TenantProvisioningServiceV2"
        ],
        "operationId": "getMonitoredObjectMetadataDetailsV2",
        "description": "The parameters and request body are for method: getMonitoredObjectMetadataDetailsV2. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "meta",
            "in": "query",
            "required": true,
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "valuePrefix",
            "in": "query",
            "required": true,
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "categoriesOnly",
            "in": "query",
            "required": true,
            "schema": {
              "type": "string"
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              },
              "example": {}
            }
          }
        }
      },
      "post": {
        "tags": [
          "TenantProvisioningServiceV2"
        ],
        "operationId": "getFilteredMonitoredObjectMetadataDetailsV2",
        "description": "The parameters and request body are for method: getFilteredMonitoredObjectMetadataDetailsV2. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "requestBody": {
          "description": "indeterminate body object",
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          }
        }
      }
    },
    "/v2/monitored-objects/{monObjId}": {
      "get": {
        "tags": [
          "TenantProvisioningServiceV2"
        ],
        "operationId": "getMonitoredObjectV2",
        "description": "The parameters and request body are for method: getMonitoredObjectV2. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "monObjId",
            "in": "path",
            "required": true,
            "schema": {
              "title": "monObjId",
              "type": "string"
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              },
              "example": {}
            }
          }
        }
      },
      "patch": {
        "tags": [
          "TenantProvisioningServiceV2"
        ],
        "operationId": "updateMonitoredObjectV2",
        "description": "The parameters and request body are for method: updateMonitoredObjectV2. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "monObjId",
            "in": "path",
            "required": true,
            "schema": {
              "title": "monObjId",
              "type": "string"
            }
          }
        ],
        "requestBody": {
          "description": "indeterminate body object",
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          }
        }
      },
      "delete": {
        "tags": [
          "TenantProvisioningServiceV2"
        ],
        "operationId": "deleteMonitoredObjectV2",
        "description": "The parameters and request body are for method: deleteMonitoredObjectV2. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "monObjId",
            "in": "path",
            "required": true,
            "schema": {
              "title": "monObjId",
              "type": "string"
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              },
              "example": {}
            }
          }
        }
      }
    },
    "/v2/bulk/patch/monitored-objects": {
      "patch": {
        "tags": [
          "TenantProvisioningServiceV2"
        ],
        "operationId": "bulkPatchMonitoredObjectsV2",
        "description": "The parameters and request body are for method: bulkPatchMonitoredObjectsV2. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "requestBody": {
          "description": "indeterminate body object",
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          }
        }
      }
    },
    "/v2/bulk/insert/monitored-objects": {
      "post": {
        "tags": [
          "TenantProvisioningServiceV2"
        ],
        "operationId": "bulkInsertMonitoredObjectsV2",
        "description": "The parameters and request body are for method: bulkInsertMonitoredObjectsV2. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "requestBody": {
          "description": "indeterminate body object",
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          }
        }
      },
      "put": {
        "tags": [
          "TenantProvisioningServiceV2"
        ],
        "operationId": "bulkUpdateMonitoredObjectsV2",
        "description": "The parameters and request body are for method: bulkUpdateMonitoredObjectsV2. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "requestBody": {
          "description": "indeterminate body object",
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          }
        }
      }
    },
    "/v2/bulk/insert/monitored-objects/meta": {
      "post": {
        "tags": [
          "TenantProvisioningServiceV2"
        ],
        "operationId": "bulkInsertMonitoredObjectsMetaV2",
        "description": "The parameters and request body are for method: bulkInsertMonitoredObjectsMetaV2. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "requestBody": {
          "description": "indeterminate body object",
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          }
        }
      }
    },
    "/v2/monitored-object-summaries": {
      "get": {
        "tags": [
          "TenantProvisioningServiceV2"
        ],
        "operationId": "getAllMonitoredObjectSummariesV2",
        "description": "The parameters and request body are for method: getAllMonitoredObjectSummariesV2. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "startKey",
            "in": "query",
            "required": true,
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "limit",
            "in": "query",
            "required": true,
            "schema": {
              "type": "string"
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              },
              "example": {}
            }
          }
        }
      }
    },
    "/v2/monitored-object-summaries/{monObjId}": {
      "get": {
        "tags": [
          "TenantProvisioningServiceV2"
        ],
        "operationId": "getMonitoredObjectSummaryV2",
        "description": "The parameters and request body are for method: getMonitoredObjectSummaryV2. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "monObjId",
            "in": "path",
            "required": true,
            "schema": {
              "title": "monObjId",
              "type": "string"
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              },
              "example": {}
            }
          }
        }
      }
    },
    "/v2/metadata-category-mappings": {
      "get": {
        "tags": [
          "TenantProvisioningServiceV2"
        ],
        "operationId": "getAllMetadataCategoryMappingsV2",
        "description": "The parameters and request body are for method: getAllMetadataCategoryMappingsV2. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              },
              "example": {}
            }
          }
        }
      }
    },
    "/v2/metadata-category-mappings/{mappingType}": {
      "get": {
        "tags": [
          "TenantProvisioningServiceV2"
        ],
        "operationId": "getMetadataCategoryMappingV2",
        "description": "The parameters and request body are for method: getMetadataCategoryMappingV2. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "mappingType",
            "in": "path",
            "required": true,
            "schema": {
              "title": "mappingType",
              "type": "string"
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              },
              "example": {}
            }
          }
        }
      },
      "patch": {
        "tags": [
          "TenantProvisioningServiceV2"
        ],
        "operationId": "updateMetadataCategoryMappingV2",
        "description": "The parameters and request body are for method: updateMetadataCategoryMappingV2. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "mappingType",
            "in": "path",
            "required": true,
            "schema": {
              "title": "mappingType",
              "type": "string"
            }
          }
        ],
        "requestBody": {
          "description": "indeterminate body object",
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          }
        }
      }
    },
    "/v2/session-filter-profiles": {
      "post": {
        "tags": [
          "TenantProvisioningServiceV2"
        ],
        "operationId": "createSessionFilterProfileV2",
        "description": "The parameters and request body are for method: createSessionFilterProfileV2. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "requestBody": {
          "description": "indeterminate body object",
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          }
        }
      },
      "get": {
        "tags": [
          "TenantProvisioningServiceV2"
        ],
        "operationId": "getAllSessionFilterProfilesV2",
        "description": "The parameters and request body are for method: getAllSessionFilterProfilesV2. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              },
              "example": {}
            }
          }
        }
      }
    },
    "/v2/session-filter-profiles/{sessionFilterProfileId}": {
      "get": {
        "tags": [
          "TenantProvisioningServiceV2"
        ],
        "operationId": "getSessionFilterProfileV2",
        "description": "The parameters and request body are for method: getSessionFilterProfileV2. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "sessionFilterProfileId",
            "in": "path",
            "required": true,
            "schema": {
              "title": "sessionFilterProfileId",
              "type": "string"
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              },
              "example": {}
            }
          }
        }
      },
      "put": {
        "tags": [
          "TenantProvisioningServiceV2"
        ],
        "operationId": "updateSessionFilterProfileV2",
        "description": "The parameters and request body are for method: updateSessionFilterProfileV2. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "sessionFilterProfileId",
            "in": "path",
            "required": true,
            "schema": {
              "title": "sessionFilterProfileId",
              "type": "string"
            }
          }
        ],
        "requestBody": {
          "description": "indeterminate body object",
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          }
        }
      },
      "patch": {
        "tags": [
          "TenantProvisioningServiceV2"
        ],
        "operationId": "patchSessionFilterProfileV2",
        "description": "The parameters and request body are for method: patchSessionFilterProfileV2. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "sessionFilterProfileId",
            "in": "path",
            "required": true,
            "schema": {
              "title": "sessionFilterProfileId",
              "type": "string"
            }
          }
        ],
        "requestBody": {
          "description": "indeterminate body object",
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          }
        }
      },
      "delete": {
        "tags": [
          "TenantProvisioningServiceV2"
        ],
        "operationId": "deleteSessionFilterProfileV2",
        "description": "The parameters and request body are for method: deleteSessionFilterProfileV2. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "sessionFilterProfileId",
            "in": "path",
            "required": true,
            "schema": {
              "title": "sessionFilterProfileId",
              "type": "string"
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              },
              "example": {}
            }
          }
        }
      }
    },
    "/v2/session-filters": {
      "post": {
        "tags": [
          "TenantProvisioningServiceV2"
        ],
        "operationId": "createSessionFilterV2",
        "description": "The parameters and request body are for method: createSessionFilterV2. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "requestBody": {
          "description": "indeterminate body object",
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          }
        }
      },
      "get": {
        "tags": [
          "TenantProvisioningServiceV2"
        ],
        "operationId": "getAllSessionFiltersV2",
        "description": "The parameters and request body are for method: getAllSessionFiltersV2. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              },
              "example": {}
            }
          }
        }
      }
    },
    "/v2/session-filters/{sessionFilterId}": {
      "get": {
        "tags": [
          "TenantProvisioningServiceV2"
        ],
        "operationId": "getSessionFilterV2",
        "description": "The parameters and request body are for method: getSessionFilterV2. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "sessionFilterId",
            "in": "path",
            "required": true,
            "schema": {
              "title": "sessionFilterId",
              "type": "string"
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              },
              "example": {}
            }
          }
        }
      },
      "put": {
        "tags": [
          "TenantProvisioningServiceV2"
        ],
        "operationId": "updateSessionFilterV2",
        "description": "The parameters and request body are for method: updateSessionFilterV2. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "sessionFilterId",
            "in": "path",
            "required": true,
            "schema": {
              "title": "sessionFilterId",
              "type": "string"
            }
          }
        ],
        "requestBody": {
          "description": "indeterminate body object",
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          }
        }
      },
      "patch": {
        "tags": [
          "TenantProvisioningServiceV2"
        ],
        "operationId": "patchSessionFilterV2",
        "description": "The parameters and request body are for method: patchSessionFilterV2. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "sessionFilterId",
            "in": "path",
            "required": true,
            "schema": {
              "title": "sessionFilterId",
              "type": "string"
            }
          }
        ],
        "requestBody": {
          "description": "indeterminate body object",
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          }
        }
      },
      "delete": {
        "tags": [
          "TenantProvisioningServiceV2"
        ],
        "operationId": "deleteSessionFilterV2",
        "description": "The parameters and request body are for method: deleteSessionFilterV2. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "sessionFilterId",
            "in": "path",
            "required": true,
            "schema": {
              "title": "sessionFilterId",
              "type": "string"
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              },
              "example": {}
            }
          }
        }
      }
    },
    "/v2/threshold-profiles": {
      "post": {
        "tags": [
          "TenantProvisioningServiceV2"
        ],
        "operationId": "createThresholdProfileV2",
        "description": "The parameters and request body are for method: createThresholdProfileV2. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "requestBody": {
          "description": "indeterminate body object",
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          }
        }
      },
      "get": {
        "tags": [
          "TenantProvisioningServiceV2"
        ],
        "operationId": "getAllThresholdProfilesV2",
        "description": "The parameters and request body are for method: getAllThresholdProfilesV2. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              },
              "example": {}
            }
          }
        }
      }
    },
    "/v2/threshold-profiles/{thrPrfId}": {
      "get": {
        "tags": [
          "TenantProvisioningServiceV2"
        ],
        "operationId": "getThresholdProfileV2",
        "description": "The parameters and request body are for method: getThresholdProfileV2. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "thrPrfId",
            "in": "path",
            "required": true,
            "schema": {
              "title": "thrPrfId",
              "type": "string"
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              },
              "example": {}
            }
          }
        }
      },
      "patch": {
        "tags": [
          "TenantProvisioningServiceV2"
        ],
        "operationId": "updateThresholdProfileV2",
        "description": "The parameters and request body are for method: updateThresholdProfileV2. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "thrPrfId",
            "in": "path",
            "required": true,
            "schema": {
              "title": "thrPrfId",
              "type": "string"
            }
          }
        ],
        "requestBody": {
          "description": "indeterminate body object",
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          }
        }
      },
      "delete": {
        "tags": [
          "TenantProvisioningServiceV2"
        ],
        "operationId": "deleteThresholdProfileV2",
        "description": "The parameters and request body are for method: deleteThresholdProfileV2. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "thrPrfId",
            "in": "path",
            "required": true,
            "schema": {
              "title": "thrPrfId",
              "type": "string"
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              },
              "example": {}
            }
          }
        }
      }
    },
    "/v2/cyber/network-assets": {
      "post": {
        "tags": [
          "TenantCyberSecurityNetworkAssetServiceV2"
        ],
        "operationId": "createNetworkAssetV2",
        "description": "The parameters and request body are for method: createNetworkAssetV2. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "requestBody": {
          "description": "indeterminate body object",
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          }
        }
      },
      "get": {
        "tags": [
          "TenantCyberSecurityNetworkAssetServiceV2"
        ],
        "operationId": "getAllNetworkAssetsV2",
        "description": "The parameters and request body are for method: getAllNetworkAssetsV2. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              },
              "example": {}
            }
          }
        }
      }
    },
    "/v2/cyber/network-assets/{networkAssetId}": {
      "get": {
        "tags": [
          "TenantCyberSecurityNetworkAssetServiceV2"
        ],
        "operationId": "getNetworkAssetV2",
        "description": "The parameters and request body are for method: getNetworkAssetV2. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "networkAssetId",
            "in": "path",
            "required": true,
            "schema": {
              "title": "networkAssetId",
              "type": "string"
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              },
              "example": {}
            }
          }
        }
      },
      "patch": {
        "tags": [
          "TenantCyberSecurityNetworkAssetServiceV2"
        ],
        "operationId": "updateNetworkAssetV2",
        "description": "The parameters and request body are for method: updateNetworkAssetV2. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "networkAssetId",
            "in": "path",
            "required": true,
            "schema": {
              "title": "networkAssetId",
              "type": "string"
            }
          }
        ],
        "requestBody": {
          "description": "indeterminate body object",
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          }
        }
      },
      "delete": {
        "tags": [
          "TenantCyberSecurityNetworkAssetServiceV2"
        ],
        "operationId": "deleteNetworkAssetV2",
        "description": "The parameters and request body are for method: deleteNetworkAssetV2. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "networkAssetId",
            "in": "path",
            "required": true,
            "schema": {
              "title": "networkAssetId",
              "type": "string"
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              },
              "example": {}
            }
          }
        }
      }
    },
    "/v2/cyber/network-assets/count": {
      "post": {
        "tags": [
          "TenantCyberSecurityNetworkAssetServiceV2"
        ],
        "operationId": "getFilteredNetworkAssetCountV2",
        "description": "The parameters and request body are for method: getFilteredNetworkAssetCountV2. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "requestBody": {
          "description": "indeterminate body object",
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          }
        }
      }
    },
    "/v2/cyber/network-assets/list": {
      "post": {
        "tags": [
          "TenantCyberSecurityNetworkAssetServiceV2"
        ],
        "operationId": "getFilteredNetworkAssetListV2",
        "description": "The parameters and request body are for method: getFilteredNetworkAssetListV2. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "requestBody": {
          "description": "indeterminate body object",
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          }
        }
      }
    },
    "/v2/cyber/network-assets/groupBy": {
      "post": {
        "tags": [
          "TenantCyberSecurityNetworkAssetServiceV2"
        ],
        "operationId": "getNetworkAssetGroupByV2",
        "description": "The parameters and request body are for method: getNetworkAssetGroupByV2. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "requestBody": {
          "description": "indeterminate body object",
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          }
        }
      }
    },
    "/v2/manager/monitoredObjectCache/build": {
      "post": {
        "tags": [
          "ManagerV2"
        ],
        "operationId": "bootstrapsthemonitoredobjectcacheforalltenants",
        "description": "The parameters and request body are for method: bootstrapsthemonitoredobjectcacheforalltenants. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              },
              "example": {}
            }
          }
        }
      }
    },
    "/v2/manager/baseline/bulkUpdate": {
      "post": {
        "tags": [
          "ManagerV2"
        ],
        "operationId": "invokesbaselinebulkupdate",
        "description": "The parameters and request body are for method: invokesbaselinebulkupdate. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              },
              "example": {}
            }
          }
        }
      }
    },
    "/v2/manager/analytics/purgeRecords": {
      "post": {
        "tags": [
          "ManagerV2"
        ],
        "operationId": "purgesanalyticsreports",
        "description": "The parameters and request body are for method: purgesanalyticsreports. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              },
              "example": {}
            }
          }
        }
      }
    },
    "/v2/manager/networkAssetCache/build": {
      "post": {
        "tags": [
          "ManagerV2"
        ],
        "operationId": "bootstrapsthenetworkassetcacheforalltenants",
        "description": "The parameters and request body are for method: bootstrapsthenetworkassetcacheforalltenants. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              },
              "example": {}
            }
          }
        }
      }
    },
    "/v3/ingestion-dictionaries": {
      "post": {
        "tags": [
          "TenantProvisioningServiceV3"
        ],
        "operationId": "createIngestionDictionaryV3",
        "description": "The parameters and request body are for method: createIngestionDictionaryV3. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "requestBody": {
          "description": "indeterminate body object",
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          }
        }
      },
      "get": {
        "tags": [
          "TenantProvisioningServiceV3"
        ],
        "operationId": "getAllIngestionDictionariesV3",
        "description": "The parameters and request body are for method: getAllIngestionDictionariesV3. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              },
              "example": {}
            }
          }
        }
      }
    },
    "/v3/ingestion-dictionaries/{ingestionDictionaryId}": {
      "get": {
        "tags": [
          "TenantProvisioningServiceV3"
        ],
        "operationId": "getIngestionDictionaryV3",
        "description": "The parameters and request body are for method: getIngestionDictionaryV3. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "ingestionDictionaryId",
            "in": "path",
            "required": true,
            "schema": {
              "title": "ingestionDictionaryId",
              "type": "string"
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              },
              "example": {}
            }
          }
        }
      },
      "patch": {
        "tags": [
          "TenantProvisioningServiceV3"
        ],
        "operationId": "updateIngestionDictionaryV3",
        "description": "The parameters and request body are for method: updateIngestionDictionaryV3. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "ingestionDictionaryId",
            "in": "path",
            "required": true,
            "schema": {
              "title": "ingestionDictionaryId",
              "type": "string"
            }
          }
        ],
        "requestBody": {
          "description": "indeterminate body object",
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          }
        }
      },
      "delete": {
        "tags": [
          "TenantProvisioningServiceV3"
        ],
        "operationId": "deleteIngestionDictionaryV3",
        "description": "The parameters and request body are for method: deleteIngestionDictionaryV3. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "ingestionDictionaryId",
            "in": "path",
            "required": true,
            "schema": {
              "title": "ingestionDictionaryId",
              "type": "string"
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              },
              "example": {}
            }
          }
        }
      }
    },
    "/v3/metrics-admin/reconciliation/datasource/{datasource}": {
      "post": {
        "tags": [
          "MetricsServiceV3"
        ],
        "operationId": "createDatasourceReconciliationTasksV3",
        "description": "The parameters and request body are for method: createDatasourceReconciliationTasksV3. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "datasource",
            "in": "path",
            "required": true,
            "schema": {
              "title": "datasource",
              "type": "string"
            }
          },
          {
            "name": "taskCount",
            "in": "query",
            "required": true,
            "schema": {
              "type": "string"
            }
          }
        ],
        "requestBody": {
          "description": "indeterminate body object",
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          }
        }
      }
    },
    "/v3/metrics-admin/reindex/datasource/{datasource}": {
      "post": {
        "tags": [
          "MetricsServiceV3"
        ],
        "operationId": "createDatasourceReindexTasksV3",
        "description": "The parameters and request body are for method: createDatasourceReindexTasksV3. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "datasource",
            "in": "path",
            "required": true,
            "schema": {
              "title": "datasource",
              "type": "string"
            }
          },
          {
            "name": "taskCount",
            "in": "query",
            "required": true,
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "periodOffsetMultiplier",
            "in": "query",
            "required": true,
            "schema": {
              "type": "string"
            }
          }
        ],
        "requestBody": {
          "description": "indeterminate body object",
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          }
        }
      }
    },
    "/v3/metrics/groupBy": {
      "post": {
        "tags": [
          "MetricsServiceV3"
        ],
        "operationId": "getGroupByV3",
        "description": "The parameters and request body are for method: getGroupByV3. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "requestBody": {
          "description": "indeterminate body object",
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          }
        }
      }
    },
    "/v3/metrics/aggregate": {
      "post": {
        "tags": [
          "MetricsServiceV3"
        ],
        "operationId": "getAggregateV3",
        "description": "The parameters and request body are for method: getAggregateV3. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "requestBody": {
          "description": "indeterminate body object",
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          }
        }
      }
    },
    "/v3/tcpThroughput/tests": {
      "post": {
        "tags": [
          "TcpThroughputTestReportServiceV3"
        ],
        "operationId": "createTcpThroughputTestReportV3",
        "description": "The parameters and request body are for method: createTcpThroughputTestReportV3. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "requestBody": {
          "description": "indeterminate body object",
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          }
        }
      },
      "get": {
        "tags": [
          "TcpThroughputTestReportServiceV3"
        ],
        "operationId": "getAllTcpThroughputTestReportsV3",
        "description": "The parameters and request body are for method: getAllTcpThroughputTestReportsV3. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "shallow",
            "in": "query",
            "required": true,
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "token",
            "in": "query",
            "required": true,
            "schema": {
              "type": "string"
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              },
              "example": {}
            }
          }
        }
      }
    },
    "/v3/tcpThroughput/tests/{testId}/reports": {
      "get": {
        "tags": [
          "TcpThroughputTestReportServiceV3"
        ],
        "operationId": "getAllTcpThroughputReportsForTestV3",
        "description": "The parameters and request body are for method: getAllTcpThroughputReportsForTestV3. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "testId",
            "in": "path",
            "required": true,
            "schema": {
              "title": "testId",
              "type": "string"
            }
          },
          {
            "name": "shallow",
            "in": "query",
            "required": true,
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "token",
            "in": "query",
            "required": true,
            "schema": {
              "type": "string"
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              },
              "example": {}
            }
          }
        }
      }
    },
    "/v3/tcpThroughput/tests/{testId}/reports/{runId}": {
      "get": {
        "tags": [
          "TcpThroughputTestReportServiceV3"
        ],
        "operationId": "getTcpThroughputTestReportV3",
        "description": "The parameters and request body are for method: getTcpThroughputTestReportV3. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "testId",
            "in": "path",
            "required": true,
            "schema": {
              "title": "testId",
              "type": "string"
            }
          },
          {
            "name": "runId",
            "in": "path",
            "required": true,
            "schema": {
              "title": "runId",
              "type": "string"
            }
          },
          {
            "name": "shallow",
            "in": "query",
            "required": true,
            "schema": {
              "type": "string"
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              },
              "example": {}
            }
          }
        }
      },
      "patch": {
        "tags": [
          "TcpThroughputTestReportServiceV3"
        ],
        "operationId": "updateTcpThroughputTestReportV3",
        "description": "The parameters and request body are for method: updateTcpThroughputTestReportV3. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "testId",
            "in": "path",
            "required": true,
            "schema": {
              "title": "testId",
              "type": "string"
            }
          },
          {
            "name": "runId",
            "in": "path",
            "required": true,
            "schema": {
              "title": "runId",
              "type": "string"
            }
          }
        ],
        "requestBody": {
          "description": "indeterminate body object",
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          }
        }
      },
      "delete": {
        "tags": [
          "TcpThroughputTestReportServiceV3"
        ],
        "operationId": "deleteTcpThroughputTestReportV3",
        "description": "The parameters and request body are for method: deleteTcpThroughputTestReportV3. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "testId",
            "in": "path",
            "required": true,
            "schema": {
              "title": "testId",
              "type": "string"
            }
          },
          {
            "name": "runId",
            "in": "path",
            "required": true,
            "schema": {
              "title": "runId",
              "type": "string"
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              },
              "example": {}
            }
          }
        }
      }
    },
    "/v3/tcpThroughput/tests/count": {
      "post": {
        "tags": [
          "TcpThroughputTestReportServiceV3"
        ],
        "operationId": "getFilteredTcpThroughputCountV3",
        "description": "The parameters and request body are for method: getFilteredTcpThroughputCountV3. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "requestBody": {
          "description": "indeterminate body object",
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          }
        }
      }
    },
    "/v3/tcpThroughput/tests/list": {
      "post": {
        "tags": [
          "TcpThroughputTestReportServiceV3"
        ],
        "operationId": "getFilteredTcpThroughputListV3",
        "description": "The parameters and request body are for method: getFilteredTcpThroughputListV3. Same endpoint also used in methods:",
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "title": "result",
                  "type": "object"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "shallow",
            "in": "query",
            "required": true,
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "token",
            "in": "query",
            "required": true,
            "schema": {
              "type": "string"
            }
          }
        ],
        "requestBody": {
          "description": "indeterminate body object",
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          }
        }
      }
    }
  },
  "components": {
    "schemas": {}
  }
}