{

"get": {
  "operationId": "getRisks",
  "description": "List of risks",
  "tags": ["Risk"],
  "parameters": [
    { "$ref": "../../common/components.json#/components/request/parameters/token_param" }
  ],
  "responses": {
    "200": { 
      "description": "Object was returned correctly",
      "content": {
        "application/json": {
          "schema": {
            "description": "List of risks",
            "type": "array",
            "items": { "$ref": "../../common/schemas/analytics/risk.json#/components/schemas/response" }
          }
        },
        "application/xml": {
          "schema": {
            "description": "List of risks",
            "type": "array",
            "xml": { "name": "/", "wrapped": true },
            "items": { "$ref": "../../common/schemas/analytics/risk.json#/components/schemas/response" }
          }
        }
      }
    },
    "400": { "description": "Bad request" },
    "500": { "description": "Server error" }
  }
}

}