{

"get": {
  "operationId": "getSoftwareById",
  "description": "Get software",
  "tags": ["Software"],
  "parameters": [
    { "$ref": "../../common/components.json#/components/request/parameters/token_param" },
    { "$ref": "../../common/components.json#/components/request/parameters/id_param" }
  ],
  "responses": {
    "200": {
      "description": "Object was returned correctly",
      "content": {
        "application/json": { "schema": { "$ref": "../../common/schemas/inventory/software.json#/components/schemas/response" } },
        "application/xml": { "schema": { "$ref": "../../common/schemas/inventory/software.json#/components/schemas/response" } }
      }
    },
    "400": { "description": "Bad request" },
    "404": { "description": "Not found" },
    "500": { "description": "Internal Server Error" }
  }
}

}