{
  "openapi": "3.0.2",
  "info": {
   "title": "Accedian Skylight",
   "version": "1.0.0"
  },
  "paths": {
   "/endpoint": {
    "get": {
     "operationId": "getEndpoints",
     "responses": {
      "200": {
       "description": "Successful operation",
       "content": {
        "application/json": {
         "schema": {
          "title": "result",
          "type": "object"
         }
        }
       }
      }
     }
    }
   },
   "/endpoint/{id}": {
    "delete": {
     "operationId": "deleteEndpoint",
     "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"
       }
      }
     ]
    }
   },
   "/endpoint/{id}/description": {
    "put": {
     "operationId": "alterEndpointDescription",
     "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": "description",
       "in": "query",
       "required": false,
       "schema": {
        "title": "description",
        "type": "string"
       }
      }
     ],
     "requestBody": {
      "content": {
       "application/json": {
        "schema": {
         "type": "object"
        }
       }
      }
     }
    }
   },
   "/endpoint/{id}/endpointhead": {
    "get": {
     "operationId": "getEndpointInformation",
     "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"
       }
      }
     ]
    }
   },
   "/endpoint/{id}/name": {
    "put": {
     "operationId": "changeNameOfEndpoint",
     "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": "name",
       "in": "query",
       "required": false,
       "schema": {
        "title": "name",
        "type": "string"
       }
      }
     ],
     "requestBody": {
      "content": {
       "application/json": {
        "schema": {
         "type": "object"
        }
       }
      }
     }
    }
   },
   "/endpoint/{id}/operate": {
    "put": {
     "operationId": "operationOnEndpoint",
     "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": "action",
       "in": "query",
       "required": false,
       "schema": {
        "title": "action",
        "type": "string"
       }
      }
     ],
     "requestBody": {
      "content": {
       "application/json": {
        "schema": {
         "type": "object"
        }
       }
      }
     }
    }
   },
   "/endpoint/type/{type}": {
    "get": {
     "operationId": "getInformationOnEndpointsByType",
     "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"
       }
      }
     ]
    }
   },
   "/endpoint/reflector": {
    "post": {
     "operationId": "createNewReflectorEndpoint",
     "responses": {
      "200": {
       "description": "Successful operation",
       "content": {
        "application/json": {
         "schema": {
          "title": "result",
          "type": "object"
         }
        }
       }
      }
     },
     "requestBody": {
      "content": {
       "application/json": {
        "schema": {
         "type": "object"
        }
       }
      }
     }
    }
   },
   "/endpoint/reflector/{id}": {
    "get": {
     "operationId": "getReflectorEndpointByName",
     "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"
       }
      }
     ]
    }
   },
   "/endpoint/reflector/{id}/address": {
    "put": {
     "operationId": "changeIpAddressUnmanagedEndpoint",
     "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": "ipAddress",
       "in": "query",
       "required": false,
       "schema": {
        "title": "ipAddress",
        "type": "string"
       }
      }
     ],
     "requestBody": {
      "content": {
       "application/json": {
        "schema": {
         "type": "object"
        }
       }
      }
     }
    }
   },
   "/endpoint/reflector/{id}/capability": {
    "put": {
     "operationId": "changeCapabilityUnmanagedEndpoint",
     "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": "capabilities",
       "in": "query",
       "required": false,
       "schema": {
        "title": "capabilities",
        "type": "string"
       }
      }
     ],
     "requestBody": {
      "content": {
       "application/json": {
        "schema": {
         "type": "object"
        }
       }
      }
     }
    }
   },
   "/endpoint/reflector/{id}/mac": {
    "get": {
     "operationId": "getReflectorEndpointByMAC",
     "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"
       }
      }
     ]
    }
   },
   "/endpoint/reflector/{id}/twampcp": {
    "put": {
     "operationId": "changeTwampControlProtocolSettings",
     "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": "twampCp",
       "in": "query",
       "required": false,
       "schema": {
        "title": "twampCp",
        "type": "string"
       }
      }
     ],
     "requestBody": {
      "content": {
       "application/json": {
        "schema": {
         "type": "object"
        }
       }
      }
     }
    },
    "delete": {
     "operationId": "deleteTwampCp",
     "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"
       }
      }
     ]
    }
   },
   "/endpoint/supervision": {
    "post": {
     "operationId": "createSupervisonEndpoint",
     "responses": {
      "200": {
       "description": "Successful operation",
       "content": {
        "application/json": {
         "schema": {
          "title": "result",
          "type": "object"
         }
        }
       }
      }
     },
     "requestBody": {
      "content": {
       "application/json": {
        "schema": {
         "type": "object"
        }
       }
      }
     }
    }
   },
   "/endpoint/supervision/{id}": {
    "get": {
     "operationId": "getSupervisionEndpointByName",
     "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"
       }
      }
     ]
    }
   },
   "/session": {
    "get": {
     "operationId": "getSessionInformation",
     "responses": {
      "200": {
       "description": "Successful operation",
       "content": {
        "application/json": {
         "schema": {
          "title": "result",
          "type": "object"
         }
        }
       }
      }
     }
    }
   },
   "/session/{id}": {
    "delete": {
     "operationId": "deleteSession",
     "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"
       }
      }
     ]
    }
   },
   "/session/{id}/description": {
    "put": {
     "operationId": "alterSessionDescription",
     "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": "description",
       "in": "query",
       "required": false,
       "schema": {
        "title": "description",
        "type": "string"
       }
      }
     ],
     "requestBody": {
      "content": {
       "application/json": {
        "schema": {
         "type": "object"
        }
       }
      }
     }
    }
   },
   "/session/{id}/head": {
    "get": {
     "operationId": "getSessionHeadInformationByName",
     "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"
       }
      }
     ]
    }
   },
   "/session/{id}/lastrr": {
    "get": {
     "operationId": "getSessionLastRR",
     "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"
       }
      }
     ]
    }
   },
   "/session/{id}/name": {
    "put": {
     "operationId": "alterTerminatedNotResolvedSessionName",
     "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"
        }
       }
      }
     }
    }
   },
   "/session/{id}/operate": {
    "put": {
     "operationId": "operationOnSession",
     "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": "action",
       "in": "query",
       "required": false,
       "schema": {
        "title": "action",
        "type": "string"
       }
      }
     ],
     "requestBody": {
      "content": {
       "application/json": {
        "schema": {
         "type": "object"
        }
       }
      }
     }
    }
   },
   "/session/{id}/stream": {
    "put": {
     "operationId": "alterTerminatedNotResolvedSessionStream",
     "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": "stream",
       "in": "query",
       "required": false,
       "schema": {
        "title": "stream",
        "type": "string"
       }
      }
     ],
     "requestBody": {
      "content": {
       "application/json": {
        "schema": {
         "type": "object"
        }
       }
      }
     }
    }
   },
   "/session/echo": {
    "post": {
     "operationId": "createEchoSession",
     "responses": {
      "200": {
       "description": "Successful operation",
       "content": {
        "application/json": {
         "schema": {
          "title": "result",
          "type": "object"
         }
        }
       }
      }
     },
     "requestBody": {
      "content": {
       "application/json": {
        "schema": {
         "type": "object"
        }
       }
      }
     }
    }
   },
   "/session/echo/{id}": {
    "get": {
     "operationId": "getEchoSessionInformation",
     "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"
       }
      }
     ]
    }
   },
   "/session/ethoam": {
    "post": {
     "operationId": "createEthOamSession",
     "responses": {
      "200": {
       "description": "Successful operation",
       "content": {
        "application/json": {
         "schema": {
          "title": "result",
          "type": "object"
         }
        }
       }
      }
     },
     "requestBody": {
      "content": {
       "application/json": {
        "schema": {
         "type": "object"
        }
       }
      }
     }
    }
   },
   "/session/ethoam/{id}": {
    "get": {
     "operationId": "getEthOamSessionInformation",
     "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"
       }
      }
     ]
    }
   },
   "/session/twamp": {
    "post": {
     "operationId": "createTWAMPSession",
     "responses": {
      "200": {
       "description": "Successful operation",
       "content": {
        "application/json": {
         "schema": {
          "title": "result",
          "type": "object"
         }
        }
       }
      }
     },
     "requestBody": {
      "content": {
       "application/json": {
        "schema": {
         "type": "object"
        }
       }
      }
     }
    }
   },
   "/session/twamp/{id}": {
    "get": {
     "operationId": "getTWAMPSessionInformation",
     "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"
       }
      }
     ]
    }
   },
   "/sla": {
    "post": {
     "operationId": "createSLA",
     "responses": {
      "200": {
       "description": "Successful operation",
       "content": {
        "application/json": {
         "schema": {
          "title": "result",
          "type": "object"
         }
        }
       }
      }
     },
     "requestBody": {
      "content": {
       "application/json": {
        "schema": {
         "type": "object"
        }
       }
      }
     }
    },
    "get": {
     "operationId": "getSLAs",
     "responses": {
      "200": {
       "description": "Successful operation",
       "content": {
        "application/json": {
         "schema": {
          "title": "result",
          "type": "object"
         }
        }
       }
      }
     }
    }
   },
   "/sla/{id}": {
    "delete": {
     "operationId": "deleteSLA",
     "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"
       }
      }
     ]
    }
   },
   "/sla/{id}/session": {
    "put": {
     "operationId": "putSessionReferenceToSLA",
     "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": "sessionRef",
       "in": "query",
       "required": false,
       "schema": {
        "title": "sessionRef",
        "type": "string"
       }
      }
     ],
     "requestBody": {
      "content": {
       "application/json": {
        "schema": {
         "type": "object"
        }
       }
      }
     }
    },
    "get": {
     "operationId": "getSessionReferencesForSLA",
     "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"
       }
      }
     ]
    }
   },
   "/sla/{id}/session/{ref}": {
    "delete": {
     "operationId": "deleteSessionReferenceFromSLA",
     "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"
       }
      }
     ]
    }
   },
   "/version": {
    "get": {
     "operationId": "getSystemVersion",
     "responses": {
      "200": {
       "description": "Successful operation",
       "content": {
        "application/json": {
         "schema": {
          "title": "result",
          "type": "object"
         }
        }
       }
      }
     }
    }
   },
   "/orchestrate/v3/agents": {
    "get": {
     "operationId": "getApiOrchestrateV3Agents",
     "responses": {
      "200": {
       "description": "Successful operation",
       "content": {
        "application/json": {
         "schema": {
          "title": "result",
          "type": "object"
         }
        }
       }
      }
     },
     "parameters": [
      {
       "name": "page",
       "in": "query",
       "required": false,
       "schema": {
        "title": "page",
        "type": "number"
       }
      },
      {
       "name": "limit",
       "in": "query",
       "required": false,
       "schema": {
        "title": "limit",
        "type": "number"
       }
      }
     ]
    }
   },
   "/orchestrate/v3/agents/{agentId}": {
    "get": {
     "operationId": "getApiOrchestrateV3AgentsAgentId",
     "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"
       }
      }
     ]
    },
    "delete": {
     "operationId": "deleteApiOrchestrateV3AgentsAgentId",
     "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"
       }
      }
     ]
    }
   },
   "/orchestrate/v3/agents/configuration": {
    "post": {
     "operationId": "postApiOrchestrateV3AgentsConfiguration",
     "responses": {
      "200": {
       "description": "Successful operation",
       "content": {
        "application/json": {
         "schema": {
          "title": "result",
          "type": "object"
         }
        }
       }
      }
     },
     "parameters": [
      {
       "name": "page",
       "in": "query",
       "required": false,
       "schema": {
        "title": "page",
        "type": "number"
       }
      },
      {
       "name": "limit",
       "in": "query",
       "required": false,
       "schema": {
        "title": "limit",
        "type": "number"
       }
      }
     ],
     "requestBody": {
      "content": {
       "application/json": {
        "schema": {
         "type": "object"
        }
       }
      }
     }
    },
    "get": {
     "operationId": "getApiOrchestrateV3AgentsConfiguration",
     "responses": {
      "200": {
       "description": "Successful operation",
       "content": {
        "application/json": {
         "schema": {
          "title": "result",
          "type": "object"
         }
        }
       }
      }
     },
     "parameters": [
      {
       "name": "page",
       "in": "query",
       "required": false,
       "schema": {
        "title": "page",
        "type": "number"
       }
      },
      {
       "name": "limit",
       "in": "query",
       "required": false,
       "schema": {
        "title": "limit",
        "type": "number"
       }
      }
     ]
    }
   },
   "/orchestrate/v3/agents/configuration/{agentId}": {
    "get": {
     "operationId": "getApiOrchestrateV3AgentsConfigurationAgentId",
     "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"
       }
      }
     ]
    },
    "put": {
     "operationId": "putApiOrchestrateV3AgentsConfigurationAgentId",
     "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"
        }
       }
      }
     }
    },
    "delete": {
     "operationId": "deleteApiOrchestrateV3AgentsConfigurationAgentId",
     "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"
       }
      }
     ]
    }
   },
   "/orchestrate/v3/agents/{agentId}/command": {
    "post": {
     "operationId": "postApiOrchestrateV3AgentsAgentIdCommand",
     "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"
        }
       }
      }
     }
    }
   },
   "/orchestrate/v3/agents/sessions": {
    "get": {
     "operationId": "getApiOrchestrateV3AgentsSessions",
     "responses": {
      "200": {
       "description": "Successful operation",
       "content": {
        "application/json": {
         "schema": {
          "title": "result",
          "type": "object"
         }
        }
       }
      }
     },
     "parameters": [
      {
       "name": "page",
       "in": "query",
       "required": false,
       "schema": {
        "title": "page",
        "type": "number"
       }
      },
      {
       "name": "limit",
       "in": "query",
       "required": false,
       "schema": {
        "title": "limit",
        "type": "number"
       }
      }
     ]
    },
    "post": {
     "operationId": "postApiOrchestrateV3AgentsSessions",
     "responses": {
      "200": {
       "description": "Successful operation",
       "content": {
        "application/json": {
         "schema": {
          "title": "result",
          "type": "object"
         }
        }
       }
      }
     },
     "parameters": [
      {
       "name": "page",
       "in": "query",
       "required": false,
       "schema": {
        "title": "page",
        "type": "number"
       }
      },
      {
       "name": "limit",
       "in": "query",
       "required": false,
       "schema": {
        "title": "limit",
        "type": "number"
       }
      }
     ],
     "requestBody": {
      "content": {
       "application/json": {
        "schema": {
         "type": "object"
        }
       }
      }
     }
    }
   },
   "/orchestrate/v3/agents/session": {
    "post": {
     "operationId": "postApiOrchestrateV3AgentsSession",
     "responses": {
      "200": {
       "description": "Successful operation",
       "content": {
        "application/json": {
         "schema": {
          "title": "result",
          "type": "object"
         }
        }
       }
      }
     },
     "requestBody": {
      "content": {
       "application/json": {
        "schema": {
         "type": "object"
        }
       }
      }
     }
    },
    "put": {
     "operationId": "putApiOrchestrateV3AgentsSession",
     "responses": {
      "200": {
       "description": "Successful operation",
       "content": {
        "application/json": {
         "schema": {
          "title": "result",
          "type": "object"
         }
        }
       }
      }
     },
     "requestBody": {
      "content": {
       "application/json": {
        "schema": {
         "type": "object"
        }
       }
      }
     }
    }
   },
   "/orchestrate/v3/agents/session/{sessionId}": {
    "get": {
     "operationId": "getApiOrchestrateV3AgentsSessionSessionId",
     "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"
       }
      }
     ]
    },
    "delete": {
     "operationId": "deleteApiOrchestrateV3AgentsSessionSessionId",
     "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"
       }
      }
     ]
    }
   },
   "/orchestrate/v3/agents/sessions/{agentId}": {
    "get": {
     "operationId": "getApiOrchestrateV3AgentsSessionsAgentId",
     "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"
       }
      }
     ]
    },
    "delete": {
     "operationId": "deleteApiOrchestrateV3AgentsSessionsAgentId",
     "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"
       }
      }
     ]
    }
   },
   "/orchestrate/v3/agents/sessionstatus/{sessionId}": {
    "get": {
     "operationId": "getApiOrchestrateV3AgentsSessionstatusSessionId",
     "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"
       }
      }
     ]
    }
   },
   "/orchestrate/v3/agents/{agentId}/secrets": {
    "post": {
     "operationId": "postApiOrchestrateV3AgentsAgentIdSecrets",
     "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"
        }
       }
      }
     }
    }
   },
   "/openid-configuration/{clientName}": {
    "get": {
     "operationId": "openIDConfiguration",
     "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"
       }
      }
     ]
    }
   },
   "/openid-token/{clientName}": {
    "post": {
     "operationId": "openIDToken",
     "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"
       }
      },
      {
       "name": "grantType",
       "in": "query",
       "required": true,
       "schema": {
        "title": "grantType",
        "type": "string"
       }
      },
      {
       "name": "code",
       "in": "query",
       "required": true,
       "schema": {
        "title": "code",
        "type": "string"
       }
      },
      {
       "name": "clientId",
       "in": "query",
       "required": true,
       "schema": {
        "title": "clientId",
        "type": "string"
       }
      },
      {
       "name": "clientSecret",
       "in": "query",
       "required": true,
       "schema": {
        "title": "clientSecret",
        "type": "string"
       }
      }
     ]
    }
   },
   "/openid-auth": {
    "get": {
     "operationId": "openIDAuth",
     "responses": {
      "200": {
       "description": "Successful operation",
       "content": {
        "application/json": {
         "schema": {
          "title": "result",
          "type": "object"
         }
        }
       }
      }
     },
     "parameters": [
      {
       "name": "clientId",
       "in": "query",
       "required": true,
       "schema": {
        "title": "clientId",
        "type": "string"
       }
      },
      {
       "name": "redirectUri",
       "in": "query",
       "required": true,
       "schema": {
        "title": "redirectUri",
        "type": "string"
       }
      },
      {
       "name": "responseType",
       "in": "query",
       "required": true,
       "schema": {
        "title": "responseType",
        "type": "string"
       }
      },
      {
       "name": "state",
       "in": "query",
       "required": true,
       "schema": {
        "title": "state",
        "type": "string"
       }
      },
      {
       "name": "delegatedclientid",
       "in": "query",
       "required": false,
       "schema": {
        "title": "delegatedclientid",
        "type": "string"
       }
      },
      {
       "name": "scope",
       "in": "query",
       "required": true,
       "schema": {
        "title": "scope",
        "type": "string"
       }
      }
     ]
    }
   },
   "/saml-redirect": {
    "get": {
     "operationId": "samlRedirect",
     "responses": {
      "200": {
       "description": "Successful operation",
       "content": {
        "application/json": {
         "schema": {
          "title": "result",
          "type": "object"
         }
        }
       }
      }
     },
     "parameters": [
      {
       "name": "clientName",
       "in": "query",
       "required": true,
       "schema": {
        "title": "clientName",
        "type": "string"
       }
      }
     ]
    }
   },
   "/saml-callback": {
    "post": {
     "operationId": "samlCallback",
     "responses": {
      "200": {
       "description": "Successful operation",
       "content": {
        "application/json": {
         "schema": {
          "title": "result",
          "type": "object"
         }
        }
       }
      }
     },
     "parameters": [
      {
       "name": "sAMLResponse",
       "in": "query",
       "required": true,
       "schema": {
        "title": "sAMLResponse",
        "type": "string"
       }
      },
      {
       "name": "relayState",
       "in": "query",
       "required": true,
       "schema": {
        "title": "relayState",
        "type": "string"
       }
      }
     ]
    }
   },
   "/saml-metadata/{clientName}": {
    "get": {
     "operationId": "samlSpMetadata",
     "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"
       }
      }
     ]
    }
   },
   "/v1/grant": {
    "post": {
     "operationId": "createGrantingTicket",
     "responses": {
      "200": {
       "description": "Successful operation",
       "content": {
        "application/json": {
         "schema": {
          "title": "result",
          "type": "object"
         }
        }
       }
      }
     },
     "parameters": [
      {
       "name": "username",
       "in": "query",
       "required": true,
       "schema": {
        "title": "username",
        "type": "string"
       }
      },
      {
       "name": "password",
       "in": "query",
       "required": true,
       "schema": {
        "title": "password",
        "type": "string"
       }
      },
      {
       "name": "service",
       "in": "query",
       "required": true,
       "schema": {
        "title": "service",
        "type": "string"
       }
      }
     ]
    }
   },
   "/v1/service": {
    "post": {
     "operationId": "createServiceTicket",
     "responses": {
      "200": {
       "description": "Successful operation",
       "content": {
        "application/json": {
         "schema": {
          "title": "result",
          "type": "object"
         }
        }
       }
      }
     },
     "parameters": [
      {
       "name": "grantingTicket",
       "in": "query",
       "required": true,
       "schema": {
        "title": "grantingTicket",
        "type": "string"
       }
      },
      {
       "name": "service",
       "in": "query",
       "required": true,
       "schema": {
        "title": "service",
        "type": "string"
       }
      }
     ]
    }
   },
   "/v1/validate": {
    "post": {
     "operationId": "validateServiceTicket",
     "responses": {
      "200": {
       "description": "Successful operation",
       "content": {
        "application/json": {
         "schema": {
          "title": "result",
          "type": "object"
         }
        }
       }
      }
     },
     "parameters": [
      {
       "name": "ticket",
       "in": "query",
       "required": true,
       "schema": {
        "title": "ticket",
        "type": "string"
       }
      },
      {
       "name": "service",
       "in": "query",
       "required": true,
       "schema": {
        "title": "service",
        "type": "string"
       }
      },
      {
       "name": "format",
       "in": "query",
       "required": true,
       "schema": {
        "title": "format",
        "type": "string"
       }
      }
     ],
     "requestBody": {
      "content": {
       "application/json": {
        "schema": {
         "type": "object"
        }
       }
      }
     }
    }
   },
   "/v1/auth/users": {
    "post": {
     "operationId": "createUser",
     "responses": {
      "200": {
       "description": "Successful operation",
       "content": {
        "application/json": {
         "schema": {
          "title": "result",
          "type": "object"
         }
        }
       }
      }
     },
     "requestBody": {
      "content": {
       "application/json": {
        "schema": {
         "type": "object"
        }
       }
      }
     }
    },
    "get": {
     "operationId": "getAllUsers",
     "responses": {
      "200": {
       "description": "Successful operation",
       "content": {
        "application/json": {
         "schema": {
          "title": "result",
          "type": "object"
         }
        }
       }
      }
     }
    }
   },
   "/v1/auth/users/{userId}": {
    "put": {
     "operationId": "updateUser",
     "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"
        }
       }
      }
     }
    },
    "patch": {
     "operationId": "updateUserProperties",
     "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"
        }
       }
      }
     }
    },
    "get": {
     "operationId": "getUser",
     "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"
       }
      }
     ]
    },
    "delete": {
     "operationId": "deleteUser",
     "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"
       }
      }
     ]
    }
   },
   "/v1/auth/users/{userId}/password": {
    "patch": {
     "operationId": "resetPassword",
     "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"
        }
       }
      }
     }
    }
   },
   "/v1/auth/users/{userId}/email": {
    "patch": {
     "operationId": "changeEmailAddress",
     "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"
        }
       }
      }
     }
    }
   },
   "/v1/auth/me": {
    "patch": {
     "operationId": "updateAuthenticatedUserProperties",
     "responses": {
      "200": {
       "description": "Successful operation",
       "content": {
        "application/json": {
         "schema": {
          "title": "result",
          "type": "object"
         }
        }
       }
      }
     },
     "requestBody": {
      "content": {
       "application/json": {
        "schema": {
         "type": "object"
        }
       }
      }
     }
    },
    "get": {
     "operationId": "getAuthenticatedUser",
     "responses": {
      "200": {
       "description": "Successful operation",
       "content": {
        "application/json": {
         "schema": {
          "title": "result",
          "type": "object"
         }
        }
       }
      }
     }
    },
    "delete": {
     "operationId": "deleteAuthenticatedUser",
     "responses": {
      "200": {
       "description": "Successful operation",
       "content": {
        "application/json": {
         "schema": {
          "title": "result",
          "type": "object"
         }
        }
       }
      }
     }
    }
   },
   "/v1/auth/me/password": {
    "patch": {
     "operationId": "updateAuthenticatedUserPassword",
     "responses": {
      "200": {
       "description": "Successful operation",
       "content": {
        "application/json": {
         "schema": {
          "title": "result",
          "type": "object"
         }
        }
       }
      }
     },
     "requestBody": {
      "content": {
       "application/json": {
        "schema": {
         "type": "object"
        }
       }
      }
     }
    }
   },
   "/v1/auth/me/email": {
    "patch": {
     "operationId": "changeAuthenticatedUserEmailAddress",
     "responses": {
      "200": {
       "description": "Successful operation",
       "content": {
        "application/json": {
         "schema": {
          "title": "result",
          "type": "object"
         }
        }
       }
      }
     },
     "requestBody": {
      "content": {
       "application/json": {
        "schema": {
         "type": "object"
        }
       }
      }
     }
    }
   },
   "/v1/onboarding/{onboardingToken}": {
    "get": {
     "operationId": "getUserByToken",
     "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"
       }
      }
     ]
    }
   },
   "/v1/onboarding/password": {
    "post": {
     "operationId": "setUserPassword",
     "responses": {
      "200": {
       "description": "Successful operation",
       "content": {
        "application/json": {
         "schema": {
          "title": "result",
          "type": "object"
         }
        }
       }
      }
     },
     "requestBody": {
      "content": {
       "application/json": {
        "schema": {
         "type": "object"
        }
       }
      }
     }
    }
   },
   "/v1/auth/login": {
    "post": {
     "operationId": "login",
     "responses": {
      "200": {
       "description": "Successful operation",
       "content": {
        "application/json": {
         "schema": {
          "title": "result",
          "type": "object"
         }
        }
       }
      }
     },
     "parameters": [
      {
       "name": "username",
       "in": "query",
       "required": false,
       "schema": {
        "title": "username",
        "type": "string"
       }
      },
      {
       "name": "password",
       "in": "query",
       "required": false,
       "schema": {
        "title": "password",
        "type": "string"
       }
      },
      {
       "name": "token",
       "in": "query",
       "required": false,
       "schema": {
        "title": "token",
        "type": "string"
       }
      }
     ],
     "requestBody": {
      "content": {
       "application/json": {
        "schema": {
         "type": "object"
        }
       }
      }
     }
    }
   },
   "/v1/auth/logout": {
    "post": {
     "operationId": "logout",
     "responses": {
      "200": {
       "description": "Successful operation",
       "content": {
        "application/json": {
         "schema": {
          "title": "result",
          "type": "object"
         }
        }
       }
      }
     }
    }
   },
   "/v1/auth/session": {
    "get": {
     "operationId": "validate",
     "responses": {
      "200": {
       "description": "Successful operation",
       "content": {
        "application/json": {
         "schema": {
          "title": "result",
          "type": "object"
         }
        }
       }
      }
     }
    }
   },
   "/v1/auth/validate": {
    "get": {
     "operationId": "validateSessionForProxy",
     "responses": {
      "200": {
       "description": "Successful operation",
       "content": {
        "application/json": {
         "schema": {
          "title": "result",
          "type": "object"
         }
        }
       }
      }
     }
    }
   },
   "/v1/auth/service": {
    "post": {
     "operationId": "createService",
     "responses": {
      "200": {
       "description": "Successful operation",
       "content": {
        "application/json": {
         "schema": {
          "title": "result",
          "type": "object"
         }
        }
       }
      }
     },
     "parameters": [
      {
       "name": "serviceName",
       "in": "query",
       "required": true,
       "schema": {
        "title": "serviceName",
        "type": "string"
       }
      },
      {
       "name": "username",
       "in": "query",
       "required": true,
       "schema": {
        "title": "username",
        "type": "string"
       }
      },
      {
       "name": "password",
       "in": "query",
       "required": true,
       "schema": {
        "title": "password",
        "type": "string"
       }
      }
     ],
     "requestBody": {
      "content": {
       "application/json": {
        "schema": {
         "type": "object"
        }
       }
      }
     }
    }
   },
   "/v1/onboarding/tenant-info": {
    "get": {
     "operationId": "getTenantInfo",
     "responses": {
      "200": {
       "description": "Successful operation",
       "content": {
        "application/json": {
         "schema": {
          "title": "result",
          "type": "object"
         }
        }
       }
      }
     }
    }
   },
   "/v1/onboarding/tenant-identity": {
    "put": {
     "operationId": "setTenantIdentity",
     "responses": {
      "200": {
       "description": "Successful operation",
       "content": {
        "application/json": {
         "schema": {
          "title": "result",
          "type": "object"
         }
        }
       }
      }
     },
     "requestBody": {
      "content": {
       "application/json": {
        "schema": {
         "type": "object"
        }
       }
      }
     }
    },
    "delete": {
     "operationId": "deleteTenantIdentity",
     "responses": {
      "200": {
       "description": "Successful operation",
       "content": {
        "application/json": {
         "schema": {
          "title": "result",
          "type": "object"
         }
        }
       }
      }
     },
     "parameters": [
      {
       "name": "subdomain",
       "in": "query",
       "required": true,
       "schema": {
        "title": "subdomain",
        "type": "string"
       }
      }
     ]
    }
   },
   "/v1/auth/tokens": {
    "post": {
     "operationId": "createToken",
     "responses": {
      "200": {
       "description": "Successful operation",
       "content": {
        "application/json": {
         "schema": {
          "title": "result",
          "type": "object"
         }
        }
       }
      }
     },
     "requestBody": {
      "content": {
       "application/json": {
        "schema": {
         "type": "object"
        }
       }
      }
     }
    },
    "get": {
     "operationId": "getAllTokens",
     "responses": {
      "200": {
       "description": "Successful operation",
       "content": {
        "application/json": {
         "schema": {
          "title": "result",
          "type": "object"
         }
        }
       }
      }
     }
    }
   },
   "/v1/auth/tokens/{tokenId}": {
    "get": {
     "operationId": "getToken",
     "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"
       }
      }
     ]
    },
    "patch": {
     "operationId": "updateToken",
     "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"
        }
       }
      }
     }
    },
    "delete": {
     "operationId": "deleteToken",
     "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"
       }
      }
     ]
    }
   },
   "/v1/auth/method/{emailAddress}": {
    "get": {
     "operationId": "getAuthenticationMethod",
     "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"
       }
      }
     ]
    }
   },
   "/v1/auth/usergroups": {
    "post": {
     "operationId": "createUsergroup",
     "responses": {
      "200": {
       "description": "Successful operation",
       "content": {
        "application/json": {
         "schema": {
          "title": "result",
          "type": "object"
         }
        }
       }
      }
     },
     "requestBody": {
      "content": {
       "application/json": {
        "schema": {
         "type": "object"
        }
       }
      }
     }
    },
    "get": {
     "operationId": "getAllUsergroups",
     "responses": {
      "200": {
       "description": "Successful operation",
       "content": {
        "application/json": {
         "schema": {
          "title": "result",
          "type": "object"
         }
        }
       }
      }
     }
    }
   },
   "/v1/auth/usergroups/{usergroupId}": {
    "get": {
     "operationId": "getUsergroup",
     "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"
       }
      }
     ]
    },
    "patch": {
     "operationId": "updateUsergroup",
     "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"
        }
       }
      }
     }
    },
    "delete": {
     "operationId": "deleteUsergroup",
     "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"
       }
      }
     ]
    }
   },
   "/v1/auth/roles": {
    "post": {
     "operationId": "createRole",
     "responses": {
      "200": {
       "description": "Successful operation",
       "content": {
        "application/json": {
         "schema": {
          "title": "result",
          "type": "object"
         }
        }
       }
      }
     },
     "requestBody": {
      "content": {
       "application/json": {
        "schema": {
         "type": "object"
        }
       }
      }
     }
    },
    "get": {
     "operationId": "getAllRoles",
     "responses": {
      "200": {
       "description": "Successful operation",
       "content": {
        "application/json": {
         "schema": {
          "title": "result",
          "type": "object"
         }
        }
       }
      }
     }
    }
   },
   "/v1/auth/roles/{roleId}": {
    "get": {
     "operationId": "getRole",
     "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"
       }
      }
     ]
    },
    "patch": {
     "operationId": "updateRole",
     "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"
        }
       }
      }
     }
    },
    "delete": {
     "operationId": "deleteRole",
     "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"
       }
      }
     ]
    }
   },
   "/v1/auth/permissions": {
    "post": {
     "operationId": "createPermission",
     "responses": {
      "200": {
       "description": "Successful operation",
       "content": {
        "application/json": {
         "schema": {
          "title": "result",
          "type": "object"
         }
        }
       }
      }
     },
     "requestBody": {
      "content": {
       "application/json": {
        "schema": {
         "type": "object"
        }
       }
      }
     }
    },
    "get": {
     "operationId": "getAllPermissions",
     "responses": {
      "200": {
       "description": "Successful operation",
       "content": {
        "application/json": {
         "schema": {
          "title": "result",
          "type": "object"
         }
        }
       }
      }
     },
     "parameters": [
      {
       "name": "domains",
       "in": "query",
       "required": false,
       "schema": {
        "title": "domains",
        "type": "string"
       }
      },
      {
       "name": "app",
       "in": "query",
       "required": false,
       "schema": {
        "title": "app",
        "type": "string"
       }
      }
     ]
    }
   },
   "/v1/auth/permissions/{permissionId}": {
    "get": {
     "operationId": "getPermission",
     "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"
       }
      }
     ]
    },
    "patch": {
     "operationId": "updatePermission",
     "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"
        }
       }
      }
     }
    },
    "delete": {
     "operationId": "deletePermission",
     "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"
       }
      }
     ]
    }
   },
   "/v1/export/configurations": {
    "post": {
     "operationId": "createScheduledExport",
     "responses": {
      "200": {
       "description": "Successful operation",
       "content": {
        "application/json": {
         "schema": {
          "title": "result",
          "type": "object"
         }
        }
       }
      }
     },
     "requestBody": {
      "content": {
       "application/json": {
        "schema": {
         "type": "object"
        }
       }
      }
     }
    },
    "get": {
     "operationId": "getAllExportConfigurations",
     "responses": {
      "200": {
       "description": "Successful operation",
       "content": {
        "application/json": {
         "schema": {
          "type": "array",
          "items": {
           "title": "ExportReportsConfigurationModel",
           "type": "object",
           "properties": {
            "meta": {
             "title": "ExportConfigurationMeta",
             "type": "object",
             "properties": {
              "enabled": {
               "type": "boolean",
               "default": true
              },
              "createdBy": {
               "type": "string"
              },
              "everyone": {
               "title": "Everyone",
               "enum": [
                "none",
                "viewer",
                "editor",
                "manager"
               ],
               "type": "string",
               "example": "none"
              },
              "viewers": {
               "type": "array",
               "items": {
                "type": "string"
               },
               "description": ""
              },
              "editors": {
               "type": "array",
               "items": {
                "type": "string"
               },
               "description": ""
              },
              "managers": {
               "type": "array",
               "items": {
                "type": "string"
               },
               "description": ""
              }
             },
             "description": "Resuable block for users to see permission properties for a resource"
            },
            "data": {
             "title": "Data",
             "type": "object",
             "properties": {
              "id": {
               "type": "string",
               "description": "Export Configuration ID"
              },
              "type": {
               "title": "Type17",
               "enum": [
                "export-configs"
               ],
               "type": "string",
               "example": "export-configs"
              },
              "attributes": {
               "title": "Attributes9",
               "required": [
                "name",
                "schedule",
                "filters",
                "columns",
                "emails",
                "groupBy"
               ],
               "type": "object",
               "properties": {
                "name": {
                 "type": "string",
                 "example": "My first Export Job"
                },
                "tenantId": {
                 "type": "string"
                },
                "schedule": {
                 "title": "Schedule",
                 "type": "object",
                 "properties": {
                  "hour": {
                   "type": "number",
                   "description": "When the report interval should end at. Jobs are run when system is not busy so the hour is a best effort. Can't be 'star'"
                  },
                  "dayOfMonth": {
                   "type": "string",
                   "description": "On what date of the month should this run. Note that if you wish to run this once a month for the LAST month of data, you should specify the 1 (st) of every month with a duration of `P1M`. You can only specify dayOfMonth or dayOfWeek. If both are filled in, your request will be rejected.",
                   "example": "14"
                  },
                  "dayOfWeek": {
                   "type": "string",
                   "description": "On what day of the week to schedule the job on. 0 is sunday, 1 is monday, 2 is tuesday, 3 is wednesday, 4 si thursday, 5 is friday, 6 is saturday"
                  }
                 }
                },
                "duration": {
                 "type": "string",
                 "description": "The duration of the query. P1M means 1 month from the time before expected execution of the report schedule.",
                 "example": "P1M"
                },
                "filters": {
                 "title": "Filters",
                 "required": [
                  "objectType"
                 ],
                 "type": "object",
                 "properties": {
                  "includeOnlyCleanData": {
                   "type": "boolean",
                   "description": "If true, includes records marked clean record flag",
                   "default": false
                  },
                  "includeBusyHour": {
                   "type": "boolean",
                   "description": "If true, includes records marked with busy hour flag",
                   "default": false
                  },
                  "includeMaintenanceWindow": {
                   "type": "boolean",
                   "description": "If true, includes records marked with maintenance flag",
                   "default": false
                  },
                  "includeMetadata": {
                   "type": "object",
                   "additionalProperties": {},
                   "description": "Include metadata key-values that you want to filter on"
                  },
                  "objectType": {
                   "type": "string",
                   "description": "We must know the object type the export is for. We cannot run a single report against multiple object types in this version.",
                   "example": "twamp-sf"
                  },
                  "direction": {
                   "type": "array",
                   "items": {
                    "type": "string"
                   },
                   "description": ""
                  }
                 }
                },
                "columns": {
                 "title": "Columns",
                 "type": "object",
                 "properties": {
                  "metrics": {
                   "type": "array",
                   "items": {
                    "title": "ExportMetricSelector",
                    "required": [
                     "name",
                     "aggregator"
                    ],
                    "type": "object",
                    "properties": {
                     "name": {
                      "type": "string",
                      "example": "delayP95"
                     },
                     "aggregator": {
                      "title": "ExportAggregators",
                      "enum": [
                       "min",
                       "max",
                       "avg",
                       "sum"
                      ],
                      "type": "string",
                      "example": "min"
                     }
                    }
                   },
                   "description": ""
                  },
                  "metadata": {
                   "type": "array",
                   "items": {
                    "type": "string"
                   },
                   "description": ""
                  },
                  "topology": {
                   "type": "boolean",
                   "default": false
                  },
                  "thresholds": {
                   "type": "array",
                   "items": {
                    "title": "ExportThresholdModel",
                    "required": [
                     "comparator",
                     "metric",
                     "value",
                     "aggregator"
                    ],
                    "type": "object",
                    "properties": {
                     "comparator": {
                      "title": "Comparator",
                      "enum": [
                       "gte",
                       "lte"
                      ],
                      "type": "string",
                      "description": "The metric value can be greater or lesser (and equal) according to the operator",
                      "example": "gte"
                     },
                     "metric": {
                      "type": "string",
                      "description": "The metric you want to test the threshold against",
                      "example": "delayP95"
                     },
                     "value": {
                      "type": "number",
                      "description": "Value for the metric to compare to",
                      "example": 42
                     },
                     "aggregator": {
                      "title": "ExportAggregators",
                      "enum": [
                       "min",
                       "max",
                       "avg",
                       "sum"
                      ],
                      "type": "string",
                      "example": "min"
                     }
                    },
                    "description": "Model for Export Threshold Crossing columns, which will be a boolean type"
                   },
                   "description": ""
                  }
                 },
                 "description": "Columns you wish to see in the exported dataset, can be dimensions, metrics, metadata"
                },
                "emails": {
                 "type": "array",
                 "items": {
                  "type": "string"
                 },
                 "description": "List of emails that will get the report",
                 "example": [
                  "jon@doe.com",
                  "fancy@nancy.com"
                 ]
                },
                "groupBy": {
                 "title": "GroupBy",
                 "required": [
                  "type",
                  "granularity"
                 ],
                 "type": "object",
                 "properties": {
                  "type": {
                   "enum": [
                    "objectId"
                   ],
                   "type": "string",
                   "description": "The metric you want to group on",
                   "example": "objectId"
                  },
                  "granularity": {
                   "title": "Granularity",
                   "enum": [
                    "P1D",
                    "PT1H"
                   ],
                   "type": "string",
                   "description": "The granularity to be applied to the aggregation. Note that PT1H is only allowed when the interval is less than 1 day",
                   "example": "P1D"
                  }
                 }
                }
               }
              }
             }
            }
           },
           "description": "Model for the export configuration"
          },
          "description": ""
         }
        }
       }
      }
     },
     "parameters": [
      {
       "name": "includeDoc",
       "in": "query",
       "required": false,
       "schema": {
        "title": "includeDoc",
        "type": "boolean"
       }
      },
      {
       "name": "rawMetadataKey",
       "in": "query",
       "required": false,
       "schema": {
        "title": "rawMetadataKey",
        "type": "boolean"
       }
      },
      {
       "name": "enabled",
       "in": "query",
       "required": false,
       "schema": {
        "title": "enabled",
        "type": "boolean"
       }
      }
     ]
    }
   },
   "/v1/export/configurations/{confId}": {
    "get": {
     "operationId": "getExportConfiguration",
     "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": false,
       "schema": {
        "title": "rawMetadataKey",
        "type": "boolean"
       }
      }
     ]
    },
    "patch": {
     "operationId": "patchExportConfiguration",
     "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"
        }
       }
      }
     }
    },
    "delete": {
     "operationId": "disableExportConfiguration",
     "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"
       }
      }
     ]
    }
   },
   "/v1/export/{confId}/reports": {
    "get": {
     "operationId": "getAllExportReport",
     "responses": {
      "200": {
       "description": "Successful operation",
       "content": {
        "application/json": {
         "schema": {
          "type": "array",
          "items": {
           "title": "ExportReportModel",
           "type": "object",
           "properties": {
            "meta": {
             "title": "ExportConfigurationMeta",
             "type": "object",
             "properties": {
              "enabled": {
               "type": "boolean",
               "default": true
              },
              "createdBy": {
               "type": "string"
              },
              "everyone": {
               "title": "Everyone",
               "enum": [
                "none",
                "viewer",
                "editor",
                "manager"
               ],
               "type": "string",
               "example": "none"
              },
              "viewers": {
               "type": "array",
               "items": {
                "type": "string"
               },
               "description": ""
              },
              "editors": {
               "type": "array",
               "items": {
                "type": "string"
               },
               "description": ""
              },
              "managers": {
               "type": "array",
               "items": {
                "type": "string"
               },
               "description": ""
              }
             },
             "description": "Resuable block for users to see permission properties for a resource"
            },
            "data": {
             "title": "Data1",
             "required": [
              "id"
             ],
             "type": "object",
             "properties": {
              "id": {
               "type": "string",
               "description": "Export Configuration ID"
              },
              "type": {
               "title": "Type18",
               "enum": [
                "datasetExport"
               ],
               "type": "string",
               "example": "datasetExport"
              },
              "attributes": {
               "title": "Attributes10",
               "type": "object",
               "properties": {
                "format": {
                 "title": "Format",
                 "enum": [
                  "csv"
                 ],
                 "type": "string",
                 "description": "The format the payload is in.",
                 "example": "csv"
                },
                "lastModified": {
                 "type": "string",
                 "description": "The dataset's last modified timestamp",
                 "example": "2021-06-16T13:02:59.514Z"
                },
                "size": {
                 "type": "number",
                 "description": "Size of the payload attribute in bytes"
                },
                "compression": {
                 "type": "string",
                 "description": "The type of compression applied to the payload",
                 "example": "gzip"
                },
                "payload": {
                 "type": "string",
                 "description": "This is the dataset stored in BASE64. You must decode the BASE64 and then decompress it using the compression format defined in the 'compression' attribute. Example: `cat <file>.csv.gz.b64 | base64 -d | gzip -d > file.csv`"
                },
                "download": {
                 "type": "string",
                 "description": "Link to the file"
                }
               }
              }
             }
            }
           },
           "description": "Returns an exported dataset"
          },
          "description": ""
         }
        }
       }
      }
     },
     "parameters": [
      {
       "name": "confId",
       "in": "path",
       "required": true,
       "schema": {
        "title": "confId",
        "type": "string"
       }
      }
     ]
    }
   },
   "/v1/export/{confId}/report/{fileName}": {
    "get": {
     "operationId": "getExportReport",
     "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"
       }
      }
     ]
    }
   },
   "/v1/solution-version-manifest": {
    "get": {
     "operationId": "getSolutionManifest",
     "responses": {
      "200": {
       "description": "Successful operation",
       "content": {
        "application/json": {
         "schema": {
          "title": "result",
          "type": "object"
         }
        }
       }
      }
     }
    }
   },
   "/v3/twe": {
    "post": {
     "operationId": "createTimeExclusion",
     "responses": {
      "200": {
       "description": "Successful operation",
       "content": {
        "application/json": {
         "schema": {
          "title": "result",
          "type": "object"
         }
        }
       }
      }
     },
     "requestBody": {
      "content": {
       "application/json": {
        "schema": {
         "type": "object"
        }
       }
      }
     }
    },
    "get": {
     "operationId": "getAllTimeExclusion",
     "responses": {
      "200": {
       "description": "Successful operation",
       "content": {
        "application/json": {
         "schema": {
          "title": "result",
          "type": "object"
         }
        }
       }
      }
     }
    }
   },
   "/v3/twe/{id}": {
    "patch": {
     "operationId": "updateTimeExclusion",
     "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"
        }
       }
      }
     }
    },
    "get": {
     "operationId": "getTimeExclusion",
     "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"
       }
      }
     ]
    },
    "delete": {
     "operationId": "deleteTimeExclusion",
     "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"
       }
      }
     ]
    }
   },
   "/v3/twe/events": {
    "get": {
     "operationId": "timeExclusionEvents",
     "responses": {
      "200": {
       "description": "Successful operation",
       "content": {
        "application/json": {
         "schema": {
          "title": "result",
          "type": "object"
         }
        }
       }
      }
     },
     "parameters": [
      {
       "name": "start",
       "in": "query",
       "required": true,
       "schema": {
        "title": "start",
        "type": "number"
       }
      },
      {
       "name": "end",
       "in": "query",
       "required": true,
       "schema": {
        "title": "end",
        "type": "number"
       }
      },
      {
       "name": "monitoredObjectID",
       "in": "query",
       "required": false,
       "schema": {
        "title": "monitoredObjectID",
        "type": "string"
       }
      }
     ]
    }
   },
   "/v2/tenants": {
    "post": {
     "operationId": "createTenantV2",
     "responses": {
      "200": {
       "description": "Successful operation",
       "content": {
        "application/json": {
         "schema": {
          "title": "result",
          "type": "object"
         }
        }
       }
      }
     },
     "requestBody": {
      "content": {
       "application/json": {
        "schema": {
         "type": "object"
        }
       }
      }
     }
    },
    "get": {
     "operationId": "getAllTenantsV2",
     "responses": {
      "200": {
       "description": "Successful operation",
       "content": {
        "application/json": {
         "schema": {
          "title": "result",
          "type": "object"
         }
        }
       }
      }
     }
    }
   },
   "/v2/tenants/{tenantId}": {
    "get": {
     "operationId": "getTenantV2",
     "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"
       }
      }
     ]
    },
    "delete": {
     "operationId": "deleteTenantV2",
     "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"
       }
      }
     ]
    },
    "patch": {
     "operationId": "patchTenantV2",
     "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"
        }
       }
      }
     }
    }
   },
   "/v2/tenant-by-alias/{value}": {
    "get": {
     "operationId": "getTenantIdByAliasV2",
     "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"
       }
      }
     ]
    }
   },
   "/v2/tenant-summary-by-alias/{value}": {
    "get": {
     "operationId": "getTenantSummaryByAliasV2",
     "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"
       }
      }
     ]
    }
   },
   "/v2/ingestion-dictionaries": {
    "get": {
     "operationId": "getIngestionDictionaryV2",
     "responses": {
      "200": {
       "description": "Successful operation",
       "content": {
        "application/json": {
         "schema": {
          "title": "result",
          "type": "object"
         }
        }
       }
      }
     }
    }
   },
   "/v2/valid-types": {
    "get": {
     "operationId": "getValidTypesV2",
     "responses": {
      "200": {
       "description": "Successful operation",
       "content": {
        "application/json": {
         "schema": {
          "title": "result",
          "type": "object"
         }
        }
       }
      }
     }
    }
   },
   "/v2/tenant-metadata/{tenantId}": {
    "get": {
     "operationId": "getTenantMetadataV2",
     "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"
       }
      }
     ]
    },
    "patch": {
     "operationId": "updateTenantMetadataV2",
     "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"
        }
       }
      }
     }
    }
   },
   "/v2/alerts/monitoredObjectIds/{monitoredObjectId}": {
    "get": {
     "operationId": "getAlertsForMonitoredObject",
     "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": {
        "title": "interval",
        "type": "string"
       }
      },
      {
       "name": "alertState",
       "in": "query",
       "required": false,
       "schema": {
        "title": "alertState",
        "type": "string"
       }
      },
      {
       "name": "policyId",
       "in": "query",
       "required": false,
       "schema": {
        "title": "policyId",
        "type": "string"
       }
      }
     ]
    }
   },
   "/v2/alerts/active/monitoredObjectIds/{monitoredObjectId}": {
    "get": {
     "operationId": "getActiveAlertsForMonitoredObject",
     "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": false,
       "schema": {
        "title": "policyId",
        "type": "string"
       }
      }
     ]
    },
    "delete": {
     "operationId": "deleteActiveAlertsForMonitoredObject",
     "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": false,
       "schema": {
        "title": "policyId",
        "type": "string"
       }
      }
     ]
    }
   },
   "/v2/alerts/active/monitoredObjectIds": {
    "post": {
     "operationId": "createActiveAlertForMonitoredObject",
     "responses": {
      "200": {
       "description": "Successful operation",
       "content": {
        "application/json": {
         "schema": {
          "title": "result",
          "type": "object"
         }
        }
       }
      }
     },
     "requestBody": {
      "content": {
       "application/json": {
        "schema": {
         "type": "object"
        }
       }
      }
     }
    }
   },
   "/v2/alerts/active/policies/{policyId}": {
    "get": {
     "operationId": "getActiveAlertsForPolicy",
     "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"
       }
      }
     ]
    },
    "delete": {
     "operationId": "deleteActiveAlertsForPolicy",
     "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": false,
       "schema": {
        "title": "monitoredObjectId",
        "type": "string"
       }
      }
     ]
    }
   },
   "/v2/alerts/active/groupBy": {
    "post": {
     "operationId": "getActiveAlertGroupBy",
     "responses": {
      "200": {
       "description": "Successful operation",
       "content": {
        "application/json": {
         "schema": {
          "title": "result",
          "type": "object"
         }
        }
       }
      }
     },
     "requestBody": {
      "content": {
       "application/json": {
        "schema": {
         "type": "object"
        }
       }
      }
     }
    }
   },
   "/v2/alerts/active": {
    "post": {
     "operationId": "getActiveAlertsForMetaFilter",
     "responses": {
      "200": {
       "description": "Successful operation",
       "content": {
        "application/json": {
         "schema": {
          "title": "result",
          "type": "object"
         }
        }
       }
      }
     },
     "requestBody": {
      "content": {
       "application/json": {
        "schema": {
         "type": "object"
        }
       }
      }
     }
    }
   },
   "/v2/alerts/active/count": {
    "post": {
     "operationId": "getActiveAlertsFilteredCounts",
     "responses": {
      "200": {
       "description": "Successful operation",
       "content": {
        "application/json": {
         "schema": {
          "title": "result",
          "type": "object"
         }
        }
       }
      }
     },
     "requestBody": {
      "content": {
       "application/json": {
        "schema": {
         "type": "object"
        }
       }
      }
     }
    }
   },
   "/v2/alerts/active/securityState": {
    "post": {
     "operationId": "updateActiveAlertsSecurityState",
     "responses": {
      "200": {
       "description": "Successful operation",
       "content": {
        "application/json": {
         "schema": {
          "title": "result",
          "type": "object"
         }
        }
       }
      }
     },
     "requestBody": {
      "content": {
       "application/json": {
        "schema": {
         "type": "object"
        }
       }
      }
     }
    }
   },
   "/v2/policies/alerting": {
    "post": {
     "operationId": "createRequestAlertPolicy",
     "responses": {
      "200": {
       "description": "Successful operation",
       "content": {
        "application/json": {
         "schema": {
          "title": "result",
          "type": "object"
         }
        }
       }
      }
     },
     "requestBody": {
      "content": {
       "application/json": {
        "schema": {
         "type": "object"
        }
       }
      }
     }
    },
    "get": {
     "operationId": "getAllRequestAlertPolicy",
     "responses": {
      "200": {
       "description": "Successful operation",
       "content": {
        "application/json": {
         "schema": {
          "title": "result",
          "type": "object"
         }
        }
       }
      }
     },
     "parameters": [
      {
       "name": "useRawMetaKey",
       "in": "query",
       "required": false,
       "schema": {
        "title": "useRawMetaKey",
        "type": "boolean"
       }
      },
      {
       "name": "includeDeleted",
       "in": "query",
       "required": false,
       "schema": {
        "title": "includeDeleted",
        "type": "boolean"
       }
      },
      {
       "name": "policyType",
       "in": "query",
       "required": false,
       "schema": {
        "title": "policyType",
        "type": "string"
       }
      }
     ]
    }
   },
   "/v2/policies/alerting/automatic": {
    "patch": {
     "operationId": "patchAutomaticAlertPolicy",
     "responses": {
      "200": {
       "description": "Successful operation",
       "content": {
        "application/json": {
         "schema": {
          "title": "result",
          "type": "object"
         }
        }
       }
      }
     },
     "requestBody": {
      "content": {
       "application/json": {
        "schema": {
         "type": "object"
        }
       }
      }
     }
    },
    "get": {
     "operationId": "getAutomaticAlertPolicy",
     "responses": {
      "200": {
       "description": "Successful operation",
       "content": {
        "application/json": {
         "schema": {
          "title": "result",
          "type": "object"
         }
        }
       }
      }
     }
    }
   },
   "/v2/policies/alerting/{id}": {
    "get": {
     "operationId": "getRequestAlertPolicy",
     "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": false,
       "schema": {
        "title": "useRawMetaKey",
        "type": "boolean"
       }
      }
     ]
    },
    "delete": {
     "operationId": "deleteRequestAlertPolicy",
     "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"
       }
      }
     ]
    },
    "patch": {
     "operationId": "patchRequestAlertPolicy",
     "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": false,
       "schema": {
        "title": "force",
        "type": "string"
       }
      }
     ],
     "requestBody": {
      "content": {
       "application/json": {
        "schema": {
         "type": "object"
        }
       }
      }
     }
    }
   },
   "/v2/alerts/history/": {
    "get": {
     "operationId": "getAlertPolicyHistory",
     "responses": {
      "200": {
       "description": "Successful operation",
       "content": {
        "application/json": {
         "schema": {
          "title": "result",
          "type": "object"
         }
        }
       }
      }
     },
     "parameters": [
      {
       "name": "policyId",
       "in": "query",
       "required": false,
       "schema": {
        "title": "policyId",
        "type": "string"
       }
      },
      {
       "name": "interval",
       "in": "query",
       "required": false,
       "schema": {
        "title": "interval",
        "type": "string"
       }
      },
      {
       "name": "monitoredObjectId",
       "in": "query",
       "required": false,
       "schema": {
        "title": "monitoredObjectId",
        "type": "string"
       }
      },
      {
       "name": "alertState",
       "in": "query",
       "required": false,
       "schema": {
        "title": "alertState",
        "type": "string"
       }
      },
      {
       "name": "policyType",
       "in": "query",
       "required": false,
       "schema": {
        "title": "policyType",
        "type": "string"
       }
      },
      {
       "name": "limit",
       "in": "query",
       "required": false,
       "schema": {
        "title": "limit",
        "type": "number"
       }
      },
      {
       "name": "useRawMetaKey",
       "in": "query",
       "required": false,
       "schema": {
        "title": "useRawMetaKey",
        "type": "boolean"
       }
      },
      {
       "name": "category",
       "in": "query",
       "required": false,
       "schema": {
        "title": "category",
        "type": "string"
       }
      }
     ]
    }
   },
   "/v2/alerting/groupBy": {
    "post": {
     "operationId": "getAlertingGroupByV3",
     "responses": {
      "200": {
       "description": "Successful operation",
       "content": {
        "application/json": {
         "schema": {
          "title": "result",
          "type": "object"
         }
        }
       }
      }
     },
     "requestBody": {
      "content": {
       "application/json": {
        "schema": {
         "type": "object"
        }
       }
      }
     }
    }
   },
   "/v2/alerting/aggregate": {
    "post": {
     "operationId": "getAlertingAggregateV3",
     "responses": {
      "200": {
       "description": "Successful operation",
       "content": {
        "application/json": {
         "schema": {
          "title": "result",
          "type": "object"
         }
        }
       }
      }
     },
     "requestBody": {
      "content": {
       "application/json": {
        "schema": {
         "type": "object"
        }
       }
      }
     }
    }
   },
   "/v2/ramen/state/{tenantId}": {
    "get": {
     "operationId": "getRamenState",
     "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"
       }
      }
     ]
    }
   },
   "/v2/analytics": {
    "post": {
     "operationId": "createAnalyticsV2",
     "responses": {
      "200": {
       "description": "Successful operation",
       "content": {
        "application/json": {
         "schema": {
          "title": "result",
          "type": "object"
         }
        }
       }
      }
     },
     "requestBody": {
      "content": {
       "application/json": {
        "schema": {
         "type": "object"
        }
       }
      }
     }
    },
    "get": {
     "operationId": "getAllAnalyticsV2",
     "responses": {
      "200": {
       "description": "Successful operation",
       "content": {
        "application/json": {
         "schema": {
          "title": "result",
          "type": "object"
         }
        }
       }
      }
     }
    }
   },
   "/v2/analytics/{analyticsId}": {
    "get": {
     "operationId": "getAnalyticsV2",
     "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"
       }
      }
     ]
    },
    "delete": {
     "operationId": "deleteAnalyticsV2",
     "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"
       }
      }
     ]
    }
   },
   "/v2/brandings": {
    "post": {
     "operationId": "createBrandingV2",
     "responses": {
      "200": {
       "description": "Successful operation",
       "content": {
        "application/json": {
         "schema": {
          "title": "result",
          "type": "object"
         }
        }
       }
      }
     },
     "requestBody": {
      "content": {
       "application/json": {
        "schema": {
         "type": "object"
        }
       }
      }
     }
    },
    "get": {
     "operationId": "getAllBrandingsV2",
     "responses": {
      "200": {
       "description": "Successful operation",
       "content": {
        "application/json": {
         "schema": {
          "title": "result",
          "type": "object"
         }
        }
       }
      }
     },
     "parameters": [
      {
       "name": "zone",
       "in": "query",
       "required": false,
       "schema": {
        "title": "zone",
        "type": "string"
       }
      }
     ]
    }
   },
   "/v2/brandings/{brandingId}": {
    "get": {
     "operationId": "getBrandingV2",
     "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"
       }
      }
     ]
    },
    "patch": {
     "operationId": "updateBrandingV2",
     "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"
        }
       }
      }
     }
    },
    "delete": {
     "operationId": "deleteBrandingV2",
     "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"
       }
      }
     ]
    }
   },
   "/v2/locales": {
    "post": {
     "operationId": "createLocaleV2",
     "responses": {
      "200": {
       "description": "Successful operation",
       "content": {
        "application/json": {
         "schema": {
          "title": "result",
          "type": "object"
         }
        }
       }
      }
     },
     "requestBody": {
      "content": {
       "application/json": {
        "schema": {
         "type": "object"
        }
       }
      }
     }
    },
    "get": {
     "operationId": "getAllLocalesV2",
     "responses": {
      "200": {
       "description": "Successful operation",
       "content": {
        "application/json": {
         "schema": {
          "title": "result",
          "type": "object"
         }
        }
       }
      }
     }
    }
   },
   "/v2/locales/{localeId}": {
    "get": {
     "operationId": "getLocaleV2",
     "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"
       }
      }
     ]
    },
    "patch": {
     "operationId": "updateLocaleV2",
     "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"
        }
       }
      }
     }
    },
    "delete": {
     "operationId": "deleteLocaleV2",
     "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"
       }
      }
     ]
    }
   },
   "/v2/composite-metrics": {
    "post": {
     "operationId": "createCompositeMetricV2",
     "responses": {
      "200": {
       "description": "Successful operation",
       "content": {
        "application/json": {
         "schema": {
          "title": "result",
          "type": "object"
         }
        }
       }
      }
     },
     "requestBody": {
      "content": {
       "application/json": {
        "schema": {
         "type": "object"
        }
       }
      }
     }
    },
    "get": {
     "operationId": "getAllCompositeMetricsV2",
     "responses": {
      "200": {
       "description": "Successful operation",
       "content": {
        "application/json": {
         "schema": {
          "title": "result",
          "type": "object"
         }
        }
       }
      }
     }
    }
   },
   "/v2/composite-metrics/{compositeMetricId}": {
    "get": {
     "operationId": "getCompositeMetricV2",
     "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"
       }
      }
     ]
    },
    "patch": {
     "operationId": "updateCompositeMetricV2",
     "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"
        }
       }
      }
     }
    },
    "delete": {
     "operationId": "deleteCompositeMetricV2",
     "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"
       }
      }
     ]
    }
   },
   "/v2/connector-configs": {
    "post": {
     "operationId": "createConnectorConfigV2",
     "responses": {
      "200": {
       "description": "Successful operation",
       "content": {
        "application/json": {
         "schema": {
          "title": "result",
          "type": "object"
         }
        }
       }
      }
     },
     "requestBody": {
      "content": {
       "application/json": {
        "schema": {
         "type": "object"
        }
       }
      }
     }
    },
    "get": {
     "operationId": "getAllConnectorConfigsV2",
     "responses": {
      "200": {
       "description": "Successful operation",
       "content": {
        "application/json": {
         "schema": {
          "title": "result",
          "type": "object"
         }
        }
       }
      }
     },
     "parameters": [
      {
       "name": "zone",
       "in": "query",
       "required": false,
       "schema": {
        "title": "zone",
        "type": "string"
       }
      }
     ]
    }
   },
   "/v2/connector-configs/{connectorId}": {
    "get": {
     "operationId": "getConnectorConfigV2",
     "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"
       }
      }
     ]
    },
    "patch": {
     "operationId": "updateConnectorConfigV2",
     "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"
        }
       }
      }
     }
    },
    "delete": {
     "operationId": "deleteConnectorConfigV2",
     "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"
       }
      }
     ]
    }
   },
   "/v2/connector-instances": {
    "post": {
     "operationId": "createConnectorInstanceV2",
     "responses": {
      "200": {
       "description": "Successful operation",
       "content": {
        "application/json": {
         "schema": {
          "title": "result",
          "type": "object"
         }
        }
       }
      }
     },
     "requestBody": {
      "content": {
       "application/json": {
        "schema": {
         "type": "object"
        }
       }
      }
     }
    },
    "get": {
     "operationId": "getAllConnectorInstancesV2",
     "responses": {
      "200": {
       "description": "Successful operation",
       "content": {
        "application/json": {
         "schema": {
          "title": "result",
          "type": "object"
         }
        }
       }
      }
     }
    }
   },
   "/v2/connector-instances/{connectorInstanceId}": {
    "get": {
     "operationId": "getConnectorInstanceV2",
     "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"
       }
      }
     ]
    },
    "patch": {
     "operationId": "updateConnectorInstanceV2",
     "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"
        }
       }
      }
     }
    },
    "delete": {
     "operationId": "deleteConnectorInstanceV2",
     "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"
       }
      }
     ]
    }
   },
   "/v2/dashboards": {
    "post": {
     "operationId": "createDashboardV2",
     "responses": {
      "200": {
       "description": "Successful operation",
       "content": {
        "application/json": {
         "schema": {
          "title": "result",
          "type": "object"
         }
        }
       }
      }
     },
     "requestBody": {
      "content": {
       "application/json": {
        "schema": {
         "type": "object"
        }
       }
      }
     }
    },
    "get": {
     "operationId": "getAllDashboardsV2",
     "responses": {
      "200": {
       "description": "Successful operation",
       "content": {
        "application/json": {
         "schema": {
          "title": "result",
          "type": "object"
         }
        }
       }
      }
     },
     "parameters": [
      {
       "name": "zone",
       "in": "query",
       "required": false,
       "schema": {
        "title": "zone",
        "type": "string"
       }
      }
     ]
    }
   },
   "/v2/dashboards/{dashboardId}": {
    "get": {
     "operationId": "getDashboardV2",
     "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"
       }
      }
     ]
    },
    "patch": {
     "operationId": "updateDashboardV2",
     "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"
        }
       }
      }
     }
    },
    "delete": {
     "operationId": "deleteDashboardV2",
     "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"
       }
      }
     ]
    }
   },
   "/v2/cards": {
    "post": {
     "operationId": "createCardV2",
     "responses": {
      "200": {
       "description": "Successful operation",
       "content": {
        "application/json": {
         "schema": {
          "title": "result",
          "type": "object"
         }
        }
       }
      }
     },
     "requestBody": {
      "content": {
       "application/json": {
        "schema": {
         "type": "object"
        }
       }
      }
     }
    },
    "get": {
     "operationId": "getAllCardsV2",
     "responses": {
      "200": {
       "description": "Successful operation",
       "content": {
        "application/json": {
         "schema": {
          "title": "result",
          "type": "object"
         }
        }
       }
      }
     },
     "parameters": [
      {
       "name": "zone",
       "in": "query",
       "required": false,
       "schema": {
        "title": "zone",
        "type": "string"
       }
      }
     ]
    }
   },
   "/v2/cards/{cardId}": {
    "get": {
     "operationId": "getCardV2",
     "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"
       }
      }
     ]
    },
    "patch": {
     "operationId": "updateCardV2",
     "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"
        }
       }
      }
     }
    },
    "delete": {
     "operationId": "deleteCardV2",
     "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"
       }
      }
     ]
    }
   },
   "/v2/data-cleaning-profiles": {
    "post": {
     "operationId": "createDataCleaningProfile",
     "responses": {
      "200": {
       "description": "Successful operation",
       "content": {
        "application/json": {
         "schema": {
          "title": "result",
          "type": "object"
         }
        }
       }
      }
     },
     "requestBody": {
      "content": {
       "application/json": {
        "schema": {
         "type": "object"
        }
       }
      }
     }
    },
    "get": {
     "operationId": "getDataCleaningProfiles",
     "responses": {
      "200": {
       "description": "Successful operation",
       "content": {
        "application/json": {
         "schema": {
          "title": "result",
          "type": "object"
         }
        }
       }
      }
     }
    }
   },
   "/v2/data-cleaning-profiles/{profileId}": {
    "get": {
     "operationId": "getDataCleaningProfile",
     "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"
       }
      }
     ]
    },
    "patch": {
     "operationId": "updateDataCleaningProfile",
     "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"
        }
       }
      }
     }
    },
    "delete": {
     "operationId": "deleteDataCleaningProfile",
     "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"
       }
      }
     ]
    }
   },
   "/v2/data-cleaning-history": {
    "get": {
     "operationId": "getDataCleaningHistory",
     "responses": {
      "200": {
       "description": "Successful operation",
       "content": {
        "application/json": {
         "schema": {
          "title": "result",
          "type": "object"
         }
        }
       }
      }
     },
     "parameters": [
      {
       "name": "monitoredObjectId",
       "in": "query",
       "required": true,
       "schema": {
        "title": "monitoredObjectId",
        "type": "string"
       }
      },
      {
       "name": "interval",
       "in": "query",
       "required": true,
       "schema": {
        "title": "interval",
        "type": "string"
       }
      }
     ]
    }
   },
   "/v2/distribution/download-roadrunner": {
    "get": {
     "operationId": "downloadRoadrunner",
     "responses": {
      "200": {
       "description": "Successful operation",
       "content": {
        "application/json": {
         "schema": {
          "title": "result",
          "type": "object"
         }
        }
       }
      }
     },
     "parameters": [
      {
       "name": "zone",
       "in": "query",
       "required": true,
       "schema": {
        "title": "zone",
        "type": "string"
       }
      }
     ]
    }
   },
   "/v2/ingestion-profiles": {
    "post": {
     "operationId": "createIngestionProfileV2",
     "responses": {
      "200": {
       "description": "Successful operation",
       "content": {
        "application/json": {
         "schema": {
          "title": "result",
          "type": "object"
         }
        }
       }
      }
     },
     "requestBody": {
      "content": {
       "application/json": {
        "schema": {
         "type": "object"
        }
       }
      }
     }
    },
    "get": {
     "operationId": "getAllIngestionProfilesV2",
     "responses": {
      "200": {
       "description": "Successful operation",
       "content": {
        "application/json": {
         "schema": {
          "title": "result",
          "type": "object"
         }
        }
       }
      }
     }
    }
   },
   "/v2/ingestion-profiles/{ingestionProfileId}": {
    "get": {
     "operationId": "getIngestionProfileV2",
     "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"
       }
      }
     ]
    },
    "patch": {
     "operationId": "updateIngestionProfileV2",
     "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"
        }
       }
      }
     }
    },
    "delete": {
     "operationId": "deleteIngestionProfileV2",
     "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"
       }
      }
     ]
    }
   },
   "/v2/metadata-configs": {
    "post": {
     "operationId": "createMetadataConfigV2",
     "responses": {
      "200": {
       "description": "Successful operation",
       "content": {
        "application/json": {
         "schema": {
          "title": "result",
          "type": "object"
         }
        }
       }
      }
     },
     "requestBody": {
      "content": {
       "application/json": {
        "schema": {
         "type": "object"
        }
       }
      }
     }
    },
    "get": {
     "operationId": "getAllMetadataConfigsV2",
     "responses": {
      "200": {
       "description": "Successful operation",
       "content": {
        "application/json": {
         "schema": {
          "title": "result",
          "type": "object"
         }
        }
       }
      }
     }
    }
   },
   "/v2/metadata-configs/{metadataConfigId}": {
    "get": {
     "operationId": "getMetadataConfigV2",
     "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"
       }
      }
     ]
    },
    "patch": {
     "operationId": "updateMetadataConfigV2",
     "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"
        }
       }
      }
     }
    },
    "delete": {
     "operationId": "deleteMetadataConfigV2",
     "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"
       }
      }
     ]
    }
   },
   "/v2/metric-baselines/by-monitored-object/{monitoredObjectId}": {
    "get": {
     "operationId": "getMetricBaselineByMonitoredObjectIdV2",
     "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": false,
       "schema": {
        "title": "interval",
        "type": "string"
       }
      },
      {
       "name": "directions",
       "in": "query",
       "required": false,
       "schema": {
        "title": "directions",
        "type": "array",
        "items": {
          "type": "string"
        }
       }
      },
      {
       "name": "metrics",
       "in": "query",
       "required": true,
       "schema": {
        "title": "metrics",
        "type": "array",
        "items": {
          "type": "string"
        }
       }
      }
     ]
    }
   },
   "/v2/duplicate-monitored-object-reports": {
    "get": {
     "operationId": "getAllDuplicateMonitoredObjectReportsV2",
     "responses": {
      "200": {
       "description": "Successful operation",
       "content": {
        "application/json": {
         "schema": {
          "title": "result",
          "type": "object"
         }
        }
       }
      }
     }
    },
    "post": {
     "operationId": "generateDuplicateMonitoredObjectReportV2",
     "responses": {
      "200": {
       "description": "Successful operation",
       "content": {
        "application/json": {
         "schema": {
          "title": "result",
          "type": "object"
         }
        }
       }
      }
     }
    }
   },
   "/v2/duplicate-monitored-object-reports/{duplicateMonitoredObjectResportId}": {
    "get": {
     "operationId": "getDuplicateMonitoredObjectReportV2",
     "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"
       }
      }
     ]
    }
   },
   "/v2/monitored-object-tag-mappings": {
    "post": {
     "operationId": "createMonitoredObjectTagMappingV2",
     "responses": {
      "200": {
       "description": "Successful operation",
       "content": {
        "application/json": {
         "schema": {
          "title": "result",
          "type": "object"
         }
        }
       }
      }
     },
     "requestBody": {
      "content": {
       "application/json": {
        "schema": {
         "type": "object"
        }
       }
      }
     }
    },
    "get": {
     "operationId": "getAllMonitoredObjectTagMappingsV2",
     "responses": {
      "200": {
       "description": "Successful operation",
       "content": {
        "application/json": {
         "schema": {
          "title": "result",
          "type": "object"
         }
        }
       }
      }
     },
     "parameters": [
      {
       "name": "zone",
       "in": "query",
       "required": false,
       "schema": {
        "title": "zone",
        "type": "string"
       }
      }
     ]
    }
   },
   "/v2/monitored-object-tag-mappings/{monitoredObjectTagMappingId}": {
    "get": {
     "operationId": "getMonitoredObjectTagMappingV2",
     "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"
       }
      }
     ]
    },
    "patch": {
     "operationId": "updateMonitoredObjectTagMappingV2",
     "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"
        }
       }
      }
     }
    },
    "delete": {
     "operationId": "deleteMonitoredObjectTagMappingV2",
     "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"
       }
      }
     ]
    }
   },
   "/v2/monitored-objects": {
    "get": {
     "operationId": "getAllMonitoredObjectsV2",
     "responses": {
      "200": {
       "description": "Successful operation",
       "content": {
        "application/json": {
         "schema": {
          "title": "result",
          "type": "object"
         }
        }
       }
      }
     },
     "parameters": [
      {
       "name": "startKey",
       "in": "query",
       "required": false,
       "schema": {
        "title": "startKey",
        "type": "string"
       }
      },
      {
       "name": "limit",
       "in": "query",
       "required": false,
       "schema": {
        "title": "limit",
        "type": "number"
       }
      }
     ]
    },
    "post": {
     "operationId": "createMonitoredObjectV2",
     "responses": {
      "200": {
       "description": "Successful operation",
       "content": {
        "application/json": {
         "schema": {
          "title": "result",
          "type": "object"
         }
        }
       }
      }
     },
     "requestBody": {
      "content": {
       "application/json": {
        "schema": {
         "type": "object"
        }
       }
      }
     }
    }
   },
   "/v2/monitored-objects/count": {
    "post": {
     "operationId": "getFilteredMonitoredObjectCountV2",
     "responses": {
      "200": {
       "description": "Successful operation",
       "content": {
        "application/json": {
         "schema": {
          "title": "result",
          "type": "object"
         }
        }
       }
      }
     },
     "parameters": [
      {
       "name": "groupBy",
       "in": "query",
       "required": false,
       "schema": {
        "title": "groupBy",
        "type": "string"
       }
      }
     ],
     "requestBody": {
      "content": {
       "application/json": {
        "schema": {
         "type": "object"
        }
       }
      }
     }
    }
   },
   "/v2/monitored-objects/id-list": {
    "post": {
     "operationId": "getFilteredMonitoredObjectListV2",
     "responses": {
      "200": {
       "description": "Successful operation",
       "content": {
        "application/json": {
         "schema": {
          "title": "result",
          "type": "object"
         }
        }
       }
      }
     },
     "requestBody": {
      "content": {
       "application/json": {
        "schema": {
         "type": "object"
        }
       }
      }
     }
    }
   },
   "/v2/monitored-objects/reporting": {
    "post": {
     "operationId": "getMonitoredObjectReportingListV2",
     "responses": {
      "200": {
       "description": "Successful operation",
       "content": {
        "application/json": {
         "schema": {
          "title": "result",
          "type": "object"
         }
        }
       }
      }
     },
     "requestBody": {
      "content": {
       "application/json": {
        "schema": {
         "type": "object"
        }
       }
      }
     }
    }
   },
   "/v2/monitored-object-geo-clusters": {
    "post": {
     "operationId": "getMonitoredObjectGeoClustersV2",
     "responses": {
      "200": {
       "description": "Successful operation",
       "content": {
        "application/json": {
         "schema": {
          "title": "result",
          "type": "object"
         }
        }
       }
      }
     },
     "parameters": [
      {
       "name": "precision",
       "in": "query",
       "required": true,
       "schema": {
        "title": "precision",
        "type": "number"
       }
      },
      {
       "name": "location",
       "in": "query",
       "required": true,
       "schema": {
        "title": "location",
        "type": "string"
       }
      }
     ],
     "requestBody": {
      "content": {
       "application/json": {
        "schema": {
         "type": "object"
        }
       }
      }
     }
    }
   },
   "/v2/monitored-object-meta-details": {
    "get": {
     "operationId": "getMonitoredObjectMetadataDetailsV2",
     "responses": {
      "200": {
       "description": "Successful operation",
       "content": {
        "application/json": {
         "schema": {
          "title": "result",
          "type": "object"
         }
        }
       }
      }
     },
     "parameters": [
      {
       "name": "meta",
       "in": "query",
       "required": false,
       "schema": {
        "title": "meta",
        "type": "array",
        "items": {
          "type": "string"
        }
       }
      },
      {
       "name": "valuePrefix",
       "in": "query",
       "required": false,
       "schema": {
        "title": "valuePrefix",
        "type": "string"
       }
      },
      {
       "name": "categoriesOnly",
       "in": "query",
       "required": false,
       "schema": {
        "title": "categoriesOnly",
        "type": "boolean"
       }
      }
     ]
    },
    "post": {
     "operationId": "getFilteredMonitoredObjectMetadataDetailsV2",
     "responses": {
      "200": {
       "description": "Successful operation",
       "content": {
        "application/json": {
         "schema": {
          "title": "result",
          "type": "object"
         }
        }
       }
      }
     },
     "requestBody": {
      "content": {
       "application/json": {
        "schema": {
         "type": "object"
        }
       }
      }
     }
    }
   },
   "/v2/monitored-objects/{monObjId}": {
    "get": {
     "operationId": "getMonitoredObjectV2",
     "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"
       }
      }
     ]
    },
    "patch": {
     "operationId": "updateMonitoredObjectV2",
     "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"
        }
       }
      }
     }
    },
    "delete": {
     "operationId": "deleteMonitoredObjectV2",
     "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"
       }
      }
     ]
    }
   },
   "/v2/bulk/patch/monitored-objects": {
    "patch": {
     "operationId": "bulkPatchMonitoredObjectsV2",
     "responses": {
      "200": {
       "description": "Successful operation",
       "content": {
        "application/json": {
         "schema": {
          "title": "result",
          "type": "object"
         }
        }
       }
      }
     },
     "requestBody": {
      "content": {
       "application/json": {
        "schema": {
         "type": "object"
        }
       }
      }
     }
    }
   },
   "/v2/bulk/insert/monitored-objects": {
    "post": {
     "operationId": "bulkInsertMonitoredObjectsV2",
     "responses": {
      "200": {
       "description": "Successful operation",
       "content": {
        "application/json": {
         "schema": {
          "title": "result",
          "type": "object"
         }
        }
       }
      }
     },
     "requestBody": {
      "content": {
       "application/json": {
        "schema": {
         "type": "object"
        }
       }
      }
     }
    },
    "put": {
     "operationId": "bulkUpdateMonitoredObjectsV2",
     "responses": {
      "200": {
       "description": "Successful operation",
       "content": {
        "application/json": {
         "schema": {
          "title": "result",
          "type": "object"
         }
        }
       }
      }
     },
     "requestBody": {
      "content": {
       "application/json": {
        "schema": {
         "type": "object"
        }
       }
      }
     }
    }
   },
   "/v2/bulk/insert/monitored-objects/meta": {
    "post": {
     "operationId": "bulkInsertMonitoredObjectsMetaV2",
     "responses": {
      "200": {
       "description": "Successful operation",
       "content": {
        "application/json": {
         "schema": {
          "title": "result",
          "type": "object"
         }
        }
       }
      }
     },
     "requestBody": {
      "content": {
       "application/json": {
        "schema": {
         "type": "object"
        }
       }
      }
     }
    }
   },
   "/v2/monitored-object-summaries": {
    "get": {
     "operationId": "getAllMonitoredObjectSummariesV2",
     "responses": {
      "200": {
       "description": "Successful operation",
       "content": {
        "application/json": {
         "schema": {
          "title": "result",
          "type": "object"
         }
        }
       }
      }
     },
     "parameters": [
      {
       "name": "startKey",
       "in": "query",
       "required": false,
       "schema": {
        "title": "startKey",
        "type": "string"
       }
      },
      {
       "name": "limit",
       "in": "query",
       "required": false,
       "schema": {
        "title": "limit",
        "type": "number"
       }
      }
     ]
    }
   },
   "/v2/monitored-object-summaries/{monObjId}": {
    "get": {
     "operationId": "getMonitoredObjectSummaryV2",
     "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"
       }
      }
     ]
    }
   },
   "/v2/metadata-category-mappings": {
    "get": {
     "operationId": "getAllMetadataCategoryMappingsV2",
     "responses": {
      "200": {
       "description": "Successful operation",
       "content": {
        "application/json": {
         "schema": {
          "title": "result",
          "type": "object"
         }
        }
       }
      }
     }
    }
   },
   "/v2/metadata-category-mappings/{mappingType}": {
    "get": {
     "operationId": "getMetadataCategoryMappingV2",
     "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"
       }
      }
     ]
    },
    "patch": {
     "operationId": "updateMetadataCategoryMappingV2",
     "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"
        }
       }
      }
     }
    }
   },
   "/v2/session-filter-profiles": {
    "post": {
     "operationId": "createSessionFilterProfileV2",
     "responses": {
      "200": {
       "description": "Successful operation",
       "content": {
        "application/json": {
         "schema": {
          "title": "result",
          "type": "object"
         }
        }
       }
      }
     },
     "requestBody": {
      "content": {
       "application/json": {
        "schema": {
         "type": "object"
        }
       }
      }
     }
    },
    "get": {
     "operationId": "getAllSessionFilterProfilesV2",
     "responses": {
      "200": {
       "description": "Successful operation",
       "content": {
        "application/json": {
         "schema": {
          "title": "result",
          "type": "object"
         }
        }
       }
      }
     }
    }
   },
   "/v2/session-filter-profiles/{sessionFilterProfileId}": {
    "get": {
     "operationId": "getSessionFilterProfileV2",
     "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"
       }
      }
     ]
    },
    "put": {
     "operationId": "updateSessionFilterProfileV2",
     "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"
        }
       }
      }
     }
    },
    "patch": {
     "operationId": "patchSessionFilterProfileV2",
     "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"
        }
       }
      }
     }
    },
    "delete": {
     "operationId": "deleteSessionFilterProfileV2",
     "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"
       }
      }
     ]
    }
   },
   "/v2/session-filters": {
    "post": {
     "operationId": "createSessionFilterV2",
     "responses": {
      "200": {
       "description": "Successful operation",
       "content": {
        "application/json": {
         "schema": {
          "title": "result",
          "type": "object"
         }
        }
       }
      }
     },
     "requestBody": {
      "content": {
       "application/json": {
        "schema": {
         "type": "object"
        }
       }
      }
     }
    },
    "get": {
     "operationId": "getAllSessionFiltersV2",
     "responses": {
      "200": {
       "description": "Successful operation",
       "content": {
        "application/json": {
         "schema": {
          "title": "result",
          "type": "object"
         }
        }
       }
      }
     }
    }
   },
   "/v2/session-filters/{sessionFilterId}": {
    "get": {
     "operationId": "getSessionFilterV2",
     "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"
       }
      }
     ]
    },
    "put": {
     "operationId": "updateSessionFilterV2",
     "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"
        }
       }
      }
     }
    },
    "patch": {
     "operationId": "patchSessionFilterV2",
     "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"
        }
       }
      }
     }
    },
    "delete": {
     "operationId": "deleteSessionFilterV2",
     "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"
       }
      }
     ]
    }
   },
   "/v2/threshold-profiles": {
    "post": {
     "operationId": "createThresholdProfileV2",
     "responses": {
      "200": {
       "description": "Successful operation",
       "content": {
        "application/json": {
         "schema": {
          "title": "result",
          "type": "object"
         }
        }
       }
      }
     },
     "requestBody": {
      "content": {
       "application/json": {
        "schema": {
         "type": "object"
        }
       }
      }
     }
    },
    "get": {
     "operationId": "getAllThresholdProfilesV2",
     "responses": {
      "200": {
       "description": "Successful operation",
       "content": {
        "application/json": {
         "schema": {
          "title": "result",
          "type": "object"
         }
        }
       }
      }
     }
    }
   },
   "/v2/threshold-profiles/{thrPrfId}": {
    "get": {
     "operationId": "getThresholdProfileV2",
     "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"
       }
      }
     ]
    },
    "patch": {
     "operationId": "updateThresholdProfileV2",
     "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"
        }
       }
      }
     }
    },
    "delete": {
     "operationId": "deleteThresholdProfileV2",
     "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"
       }
      }
     ]
    }
   },
   "/v2/cyber/network-assets": {
    "post": {
     "operationId": "createNetworkAssetV2",
     "responses": {
      "200": {
       "description": "Successful operation",
       "content": {
        "application/json": {
         "schema": {
          "title": "result",
          "type": "object"
         }
        }
       }
      }
     },
     "requestBody": {
      "content": {
       "application/json": {
        "schema": {
         "type": "object"
        }
       }
      }
     }
    },
    "get": {
     "operationId": "getAllNetworkAssetsV2",
     "responses": {
      "200": {
       "description": "Successful operation",
       "content": {
        "application/json": {
         "schema": {
          "title": "result",
          "type": "object"
         }
        }
       }
      }
     }
    }
   },
   "/v2/cyber/network-assets/{networkAssetId}": {
    "get": {
     "operationId": "getNetworkAssetV2",
     "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"
       }
      }
     ]
    },
    "patch": {
     "operationId": "updateNetworkAssetV2",
     "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"
        }
       }
      }
     }
    },
    "delete": {
     "operationId": "deleteNetworkAssetV2",
     "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"
       }
      }
     ]
    }
   },
   "/v2/cyber/network-assets/count": {
    "post": {
     "operationId": "getFilteredNetworkAssetCountV2",
     "responses": {
      "200": {
       "description": "Successful operation",
       "content": {
        "application/json": {
         "schema": {
          "title": "result",
          "type": "object"
         }
        }
       }
      }
     },
     "requestBody": {
      "content": {
       "application/json": {
        "schema": {
         "type": "object"
        }
       }
      }
     }
    }
   },
   "/v2/cyber/network-assets/list": {
    "post": {
     "operationId": "getFilteredNetworkAssetListV2",
     "responses": {
      "200": {
       "description": "Successful operation",
       "content": {
        "application/json": {
         "schema": {
          "title": "result",
          "type": "object"
         }
        }
       }
      }
     },
     "requestBody": {
      "content": {
       "application/json": {
        "schema": {
         "type": "object"
        }
       }
      }
     }
    }
   },
   "/v2/cyber/network-assets/groupBy": {
    "post": {
     "operationId": "getNetworkAssetGroupByV2",
     "responses": {
      "200": {
       "description": "Successful operation",
       "content": {
        "application/json": {
         "schema": {
          "title": "result",
          "type": "object"
         }
        }
       }
      }
     },
     "requestBody": {
      "content": {
       "application/json": {
        "schema": {
         "type": "object"
        }
       }
      }
     }
    }
   },
   "/v2/manager/monitoredObjectCache/build": {
    "post": {
     "operationId": "bootstrapsthemonitoredobjectcacheforalltenants",
     "responses": {
      "200": {
       "description": "Successful operation",
       "content": {
        "application/json": {
         "schema": {
          "title": "result",
          "type": "object"
         }
        }
       }
      }
     }
    }
   },
   "/v2/manager/baseline/bulkUpdate": {
    "post": {
     "operationId": "invokesbaselinebulkupdate",
     "responses": {
      "200": {
       "description": "Successful operation",
       "content": {
        "application/json": {
         "schema": {
          "title": "result",
          "type": "object"
         }
        }
       }
      }
     }
    }
   },
   "/v2/manager/analytics/purgeRecords": {
    "post": {
     "operationId": "purgesanalyticsreports",
     "responses": {
      "200": {
       "description": "Successful operation",
       "content": {
        "application/json": {
         "schema": {
          "title": "result",
          "type": "object"
         }
        }
       }
      }
     }
    }
   },
   "/v2/manager/networkAssetCache/build": {
    "post": {
     "operationId": "bootstrapsthenetworkassetcacheforalltenants",
     "responses": {
      "200": {
       "description": "Successful operation",
       "content": {
        "application/json": {
         "schema": {
          "title": "result",
          "type": "object"
         }
        }
       }
      }
     }
    }
   },
   "/v3/ingestion-dictionaries": {
    "post": {
     "operationId": "createIngestionDictionaryV3",
     "responses": {
      "200": {
       "description": "Successful operation",
       "content": {
        "application/json": {
         "schema": {
          "title": "result",
          "type": "object"
         }
        }
       }
      }
     },
     "requestBody": {
      "content": {
       "application/json": {
        "schema": {
         "type": "object"
        }
       }
      }
     }
    },
    "get": {
     "operationId": "getAllIngestionDictionariesV3",
     "responses": {
      "200": {
       "description": "Successful operation",
       "content": {
        "application/json": {
         "schema": {
          "title": "result",
          "type": "object"
         }
        }
       }
      }
     }
    }
   },
   "/v3/ingestion-dictionaries/{ingestionDictionaryId}": {
    "get": {
     "operationId": "getIngestionDictionaryV3",
     "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"
       }
      }
     ]
    },
    "patch": {
     "operationId": "updateIngestionDictionaryV3",
     "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"
        }
       }
      }
     }
    },
    "delete": {
     "operationId": "deleteIngestionDictionaryV3",
     "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"
       }
      }
     ]
    }
   },
   "/v3/metrics-admin/reconciliation/datasource/{datasource}": {
    "post": {
     "operationId": "createDatasourceReconciliationTasksV3",
     "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": false,
       "schema": {
        "title": "taskCount",
        "type": "number"
       }
      }
     ],
     "requestBody": {
      "content": {
       "application/json": {
        "schema": {
         "type": "object"
        }
       }
      }
     }
    }
   },
   "/v3/metrics-admin/reindex/datasource/{datasource}": {
    "post": {
     "operationId": "createDatasourceReindexTasksV3",
     "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": false,
       "schema": {
        "title": "taskCount",
        "type": "number"
       }
      },
      {
       "name": "periodOffsetMultiplier",
       "in": "query",
       "required": false,
       "schema": {
        "title": "periodOffsetMultiplier",
        "type": "number"
       }
      }
     ],
     "requestBody": {
      "content": {
       "application/json": {
        "schema": {
         "type": "object"
        }
       }
      }
     }
    }
   },
   "/v3/metrics/groupBy": {
    "post": {
     "operationId": "getGroupByV3",
     "responses": {
      "200": {
       "description": "Successful operation",
       "content": {
        "application/json": {
         "schema": {
          "title": "result",
          "type": "object"
         }
        }
       }
      }
     },
     "requestBody": {
      "content": {
       "application/json": {
        "schema": {
         "type": "object"
        }
       }
      }
     }
    }
   },
   "/v3/metrics/aggregate": {
    "post": {
     "operationId": "getAggregateV3",
     "responses": {
      "200": {
       "description": "Successful operation",
       "content": {
        "application/json": {
         "schema": {
          "title": "result",
          "type": "object"
         }
        }
       }
      }
     },
     "requestBody": {
      "content": {
       "application/json": {
        "schema": {
         "type": "object"
        }
       }
      }
     }
    }
   },
   "/v3/tcpThroughput/tests": {
    "post": {
     "operationId": "createTcpThroughputTestReportV3",
     "responses": {
      "200": {
       "description": "Successful operation",
       "content": {
        "application/json": {
         "schema": {
          "title": "result",
          "type": "object"
         }
        }
       }
      }
     },
     "requestBody": {
      "content": {
       "application/json": {
        "schema": {
         "type": "object"
        }
       }
      }
     }
    },
    "get": {
     "operationId": "getAllTcpThroughputTestReportsV3",
     "responses": {
      "200": {
       "description": "Successful operation",
       "content": {
        "application/json": {
         "schema": {
          "title": "result",
          "type": "object"
         }
        }
       }
      }
     },
     "parameters": [
      {
       "name": "shallow",
       "in": "query",
       "required": false,
       "schema": {
        "title": "shallow",
        "type": "boolean"
       }
      },
      {
       "name": "token",
       "in": "query",
       "required": false,
       "schema": {
        "title": "token",
        "type": "string"
       }
      }
     ]
    }
   },
   "/v3/tcpThroughput/tests/{testId}/reports": {
    "get": {
     "operationId": "getAllTcpThroughputReportsForTestV3",
     "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": false,
       "schema": {
        "title": "shallow",
        "type": "boolean"
       }
      },
      {
       "name": "token",
       "in": "query",
       "required": false,
       "schema": {
        "title": "token",
        "type": "string"
       }
      }
     ]
    }
   },
   "/v3/tcpThroughput/tests/{testId}/reports/{runId}": {
    "get": {
     "operationId": "getTcpThroughputTestReportV3",
     "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": false,
       "schema": {
        "title": "shallow",
        "type": "boolean"
       }
      }
     ]
    },
    "patch": {
     "operationId": "updateTcpThroughputTestReportV3",
     "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"
        }
       }
      }
     }
    },
    "delete": {
     "operationId": "deleteTcpThroughputTestReportV3",
     "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"
       }
      }
     ]
    }
   },
   "/v3/tcpThroughput/tests/count": {
    "post": {
     "operationId": "getFilteredTcpThroughputCountV3",
     "responses": {
      "200": {
       "description": "Successful operation",
       "content": {
        "application/json": {
         "schema": {
          "title": "result",
          "type": "object"
         }
        }
       }
      }
     },
     "requestBody": {
      "content": {
       "application/json": {
        "schema": {
         "type": "object"
        }
       }
      }
     }
    }
   },
   "/v3/tcpThroughput/tests/list": {
    "post": {
     "operationId": "getFilteredTcpThroughputListV3",
     "responses": {
      "200": {
       "description": "Successful operation",
       "content": {
        "application/json": {
         "schema": {
          "title": "result",
          "type": "object"
         }
        }
       }
      }
     },
     "parameters": [
      {
       "name": "shallow",
       "in": "query",
       "required": false,
       "schema": {
        "title": "shallow",
        "type": "boolean"
       }
      },
      {
       "name": "token",
       "in": "query",
       "required": false,
       "schema": {
        "title": "token",
        "type": "string"
       }
      }
     ],
     "requestBody": {
      "content": {
       "application/json": {
        "schema": {
         "type": "object"
        }
       }
      }
     }
    }
   }
  },
  "components": {
   "schemas": {}
  }
 }