1# inventory
2
3## Description
4
5The relative path under inventory where the fan's inventory object exists on
6D-Bus. Inventory's base path is `/xyz/openbmc_project/inventory` resulting in
7the fan's inventory object path being the base path plus what's given here.
8i.e.) `/xyz/openbmc_project/inventory/system/chassis/motherboard/fan0`
9
10## Attribute Value(s)
11
12string
13
14## Example
15
16<pre><code>
17{
18  "fans": [
19    {
20      <b><i>"inventory": "/system/chassis/motherboard/fan0"</i></b>,
21      "allowed_out_of_range_time": 30,
22      "functional_delay": 5,
23      "deviation": 15,
24      "num_sensors_nonfunc_for_fan_nonfunc": 1,
25      "monitor_start_delay": 30,
26      "fan_missing_error_delay": 20,
27      "nonfunc_rotor_error_delay": 0,
28      "sensors": [
29        {
30          "name": "fan0_0",
31          "has_target": true
32        },
33        {
34          "name": "fan0_1",
35          "has_target": false,
36          "factor": 1.45,
37          "offset": -909
38        }
39      ]
40    }
41  ]
42}
43</code></pre>
44