{

"get": {
  "operationId": "getSoftwares",
  "description": "List of softwares",
  "tags": ["Software"],
  "parameters": [
    { "$ref": "../../common/components.json#/components/request/parameters/token_param" }
  ],
  "responses": {
    "200": { 
      "description": "Object was returned correctly",
      "content": {
        "application/json": {
          "schema": {
            "description": "List of softwares",
            "type": "array",
            "items": { "$ref": "../../common/schemas/inventory/software.json#/components/schemas/response" }
          }
        },
       "application/xml": {
          "schema": {
            "description": "List of softwares",
            "type": "array",
            "xml": { "name": "/", "wrapped": true },
            "items": { "$ref": "../../common/schemas/inventory/software.json#/components/schemas/response" }
          }
        }
      }
    },
    "400": { "description": "Bad request" },
    "404": { "description": "Not found" },
    "500": { "description": "Server error" }
  }
}

}