diff --git a/spec/oar_properties_spec.rb b/spec/oar_properties_spec.rb
index 6b7ccb0554898b8b05f7f565bd0a56442a6b9351..cf1e8cf0fc36cc0845fcea2cd9b5ad17dabad2b7 100644
--- a/spec/oar_properties_spec.rb
+++ b/spec/oar_properties_spec.rb
@@ -1335,4 +1335,238 @@ TXT
       expect(generator_output[:stdout]).to include(expected_clusterc1_diff)
     end
   end
+
+  context 'interracting with a configured OAR server (quirk cluster)' do
+    before do
+      prepare_stubs("dump_oar_api_configured_server_quirk_cluster.json", "load_data_hierarchy_stubbed_data_without_gpu.json")
+    end
+
+    it 'should generate correctly a table of nodes' do
+
+      uri = URI(conf["uri"])
+
+      response = Net::HTTP.get(uri)
+
+      expect(response).to be_an_instance_of(String)
+
+      options = {
+        :table => true,
+        :print => false,
+        :update => false,
+        :diff => false,
+        :site => "fakesite",
+        :clusters => ["clusterc"]
+      }
+
+      expected_header = <<-TXT
++---------- + -------------------- + ----- + ----- + -------- + ---- + -------------------- + ------------------------------ + ------------------------------+
+|   cluster | host                 | cpu   | core  | cpuset   | gpu  | gpudevice            | cpumodel                       | gpumodel                      |
++---------- + -------------------- + ----- + ----- + -------- + ---- + -------------------- + ------------------------------ + ------------------------------+
+      TXT
+
+      expected_clusterc1_desc = <<-TXT
+|  clusterc | clusterc-1           | 1     | 1     | 0        |      |                      | Intel Xeon Silver 4110         |                               |
+|  clusterc | clusterc-1           | 1     | 3     | 1        |      |                      | Intel Xeon Silver 4110         |                               |
+|  clusterc | clusterc-1           | 1     | 2     | 2        |      |                      | Intel Xeon Silver 4110         |                               |
+|  clusterc | clusterc-1           | 1     | 4     | 3        |      |                      | Intel Xeon Silver 4110         |                               |
+|  clusterc | clusterc-1           | 1     | 5     | 4        |      |                      | Intel Xeon Silver 4110         |                               |
+|  clusterc | clusterc-1           | 1     | 6     | 5        |      |                      | Intel Xeon Silver 4110         |                               |
+      TXT
+
+      expected_clusterc2_desc = <<-TXT
+|  clusterc | clusterc-2           | 4     | 26    | 9        |      |                      | Intel Xeon Silver 4110         |                               |
+|  clusterc | clusterc-2           | 4     | 27    | 10       |      |                      | Intel Xeon Silver 4110         |                               |
+|  clusterc | clusterc-2           | 4     | 28    | 11       |      |                      | Intel Xeon Silver 4110         |                               |
+|  clusterc | clusterc-2           | 4     | 29    | 12       |      |                      | Intel Xeon Silver 4110         |                               |
+|  clusterc | clusterc-2           | 4     | 30    | 13       |      |                      | Intel Xeon Silver 4110         |                               |
+|  clusterc | clusterc-2           | 4     | 31    | 14       |      |                      | Intel Xeon Silver 4110         |                               |
+|  clusterc | clusterc-2           | 4     | 32    | 15       |      |                      | Intel Xeon Silver 4110         |                               |
+TXT
+      generator_output = capture do
+        generate_oar_properties(options)
+      end
+
+      expect(generator_output[:stdout]).to include(expected_header)
+      expect(generator_output[:stdout]).to include(expected_clusterc1_desc)
+      expect(generator_output[:stdout]).to include(expected_clusterc2_desc)
+    end
+
+    it 'should generate correctly all the commands to update OAR' do
+
+      uri = URI(conf["uri"])
+
+      response = Net::HTTP.get(uri)
+
+      expect(response).to be_an_instance_of(String)
+
+      options = {
+        :table => false,
+        :print => true,
+        :update => false,
+        :diff => false,
+        :site => "fakesite",
+        :clusters => ["clusterc"]
+      }
+
+      expected_header = <<-TXT
+#############################################
+# Create OAR properties that were created by 'oar_resources_add'
+#############################################
+property_exist 'host' || oarproperty -a host --varchar
+property_exist 'cpu' || oarproperty -a cpu
+property_exist 'core' || oarproperty -a core
+property_exist 'gpudevice' || oarproperty -a gpudevice
+property_exist 'gpu' || oarproperty -a gpu
+property_exist 'gpu_model' || oarproperty -a gpu_model --varchar
+TXT
+
+      expected_clusterc1_cmds = <<-TXT
+###################################
+# clusterc-1.fakesite.grid5000.fr
+###################################
+oarnodesetting --sql "host='clusterc-1.fakesite.grid5000.fr' AND resource_id='1' AND type='default'" -p cpu=1 -p core=1 -p cpuset=0
+oarnodesetting --sql "host='clusterc-1.fakesite.grid5000.fr' AND resource_id='2' AND type='default'" -p cpu=1 -p core=3 -p cpuset=1
+oarnodesetting --sql "host='clusterc-1.fakesite.grid5000.fr' AND resource_id='3' AND type='default'" -p cpu=1 -p core=2 -p cpuset=2
+TXT
+
+      expected_clusterc2_cmds = <<-TXT
+oarnodesetting --sql "host='clusterc-2.fakesite.grid5000.fr' AND resource_id='32' AND type='default'" -p cpu=4 -p core=29 -p cpuset=12
+oarnodesetting --sql "host='clusterc-2.fakesite.grid5000.fr' AND resource_id='33' AND type='default'" -p cpu=4 -p core=30 -p cpuset=13
+oarnodesetting --sql "host='clusterc-2.fakesite.grid5000.fr' AND resource_id='34' AND type='default'" -p cpu=4 -p core=31 -p cpuset=14
+oarnodesetting --sql "host='clusterc-2.fakesite.grid5000.fr' AND resource_id='35' AND type='default'" -p cpu=4 -p core=32 -p cpuset=15
+TXT
+      expected_clusterc3_cmds = <<-TXT
+oarnodesetting --sql "host='clusterc-2.fakesite.grid5000.fr' and type='default'" -p ip='172.16.64.2' -p cluster='clusterc' -p nodemodel='Dell PowerEdge T640' -p virtual='ivt' -p cpuarch='x86_64' -p cpucore=8 -p cputype='Intel Xeon Silver 4110' -p cpufreq='2.1' -p disktype='SATA' -p eth_count=1 -p eth_rate=10 -p ib_count=0 -p ib_rate=0 -p ib='NO' -p opa_count=0 -p opa_rate=0 -p opa='NO' -p myri_count=0 -p myri_rate=0 -p myri='NO' -p memcore=8192 -p memcpu=65536 -p memnode=131072 -p gpu_count=0 -p mic='NO' -p wattmeter='MULTIPLE' -p cluster_priority=201906 -p max_walltime=86400 -p production='YES' -p maintenance='NO' -p disk_reservation_count=3
+TXT
+
+      generator_output = capture do
+        generate_oar_properties(options)
+      end
+
+      expect(generator_output[:stdout]).to include(expected_header)
+      expect(generator_output[:stdout]).to include(expected_clusterc1_cmds)
+      expect(generator_output[:stdout]).to include(expected_clusterc2_cmds)
+      expect(generator_output[:stdout]).to include(expected_clusterc3_cmds)
+    end
+
+    it 'should generate correctly a diff with the OAR server' do
+
+      uri = URI(conf["uri"])
+
+      response = Net::HTTP.get(uri)
+
+      expect(response).to be_an_instance_of(String)
+
+      options = {
+        :table => false,
+        :print => false,
+        :update => false,
+        :diff => true,
+        :site => "fakesite",
+        :clusters => ["clusterc"],
+        :verbose => 2
+      }
+
+      expected_clusterc1_diff = <<-TXT
+Output format: [ '-', 'key', 'value'] for missing, [ '+', 'key', 'value'] for added, ['~', 'key', 'old value', 'new value'] for changed
+  clusterc-1: OK
+  clusterc-2: OK
+  ["clusterc-1", "sdb.clusterc-1"]: OK
+  ["clusterc-1", "sdc.clusterc-1"]: OK
+  ["clusterc-1", "sdd.clusterc-1"]: OK
+  ["clusterc-2", "sdb.clusterc-2"]: OK
+  ["clusterc-2", "sdc.clusterc-2"]: OK
+  ["clusterc-2", "sdd.clusterc-2"]: OK
+TXT
+
+
+      generator_output = capture do
+        generate_oar_properties(options)
+      end
+
+      expect(generator_output[:stdout]).to include(expected_clusterc1_diff)
+    end
+  end
+
+  context 'interracting with a configured OAR server (misconfigured cores)' do
+    before do
+      prepare_stubs("dump_oar_api_configured_server_misconfigured_cores.json", "load_data_hierarchy_stubbed_data_without_gpu.json")
+    end
+
+    it 'should generate generate an error' do
+
+      uri = URI(conf["uri"])
+
+      response = Net::HTTP.get(uri)
+
+      expect(response).to be_an_instance_of(String)
+
+      options = {
+        :table => false,
+        :print => true,
+        :update => false,
+        :diff => false,
+        :site => "fakesite",
+        :clusters => ["clusterc"]
+      }
+
+      expected_output = <<-TXT
+################################
+# Error: resources with ids [2, 3] have the same value for core (core is equal to 3)
+# You can review this situation via the following command:
+################################
+oarnodes -Y --sql "resource_id='2' OR resource_id='3'"
+TXT
+
+      has_encountered_an_error = false
+      generator_output = capture do
+        begin
+          generate_oar_properties(options)
+        rescue
+          has_encountered_an_error = true
+        end
+      end
+
+      expect(generator_output[:stdout]).to include(expected_output)
+      expect(has_encountered_an_error).to be true
+    end
+  end
+
+  context 'interracting with a configured OAR server (misconfigured gpu)' do
+    before do
+      prepare_stubs("dump_oar_api_configured_server_misconfigured_gpu.json", "load_data_hierarchy_stubbed_data_without_gpu.json")
+    end
+
+    it 'should propose a correction' do
+
+      uri = URI(conf["uri"])
+
+      response = Net::HTTP.get(uri)
+
+      expect(response).to be_an_instance_of(String)
+
+      options = {
+        :table => false,
+        :print => false,
+        :update => false,
+        :diff => true,
+        :site => "fakesite",
+        :clusters => ["clustera"]
+      }
+
+      expected_output = <<-TXT
+Error: resource 9 is associated to GPU (2), while I computed that it should be associated to 3
+TXT
+      expected_output2 = <<-TXT
+oarnodesetting --sql "resource_id='9' AND type='default'" -p gpu=3
+TXT
+
+      generator_output = capture do
+        generate_oar_properties(options)
+      end
+
+      expect(generator_output[:stdout]).to include(expected_output)
+      expect(generator_output[:stdout]).to include(expected_output2)
+    end
+  end
 end
diff --git a/spec/stub_oar_properties/dump_oar_api_configured_server_misconfigured_cores.json b/spec/stub_oar_properties/dump_oar_api_configured_server_misconfigured_cores.json
new file mode 100644
index 0000000000000000000000000000000000000000..f3fe880a92335064f983bdc5d64bcae66d2f296d
--- /dev/null
+++ b/spec/stub_oar_properties/dump_oar_api_configured_server_misconfigured_cores.json
@@ -0,0 +1,2978 @@
+{
+   "links" : [
+      {
+         "href" : "//oarapi/resources/details.json?limit=999999&offset=0",
+         "rel" : "self"
+      }
+   ],
+   "total" : 38,
+   "offset" : 0,
+   "items" : [
+      {
+         "opa" : "NO",
+         "myri_count" : 0,
+         "cluster" : "clusterc",
+         "cputype" : "Intel Xeon Silver 4110",
+         "api_timestamp" : 1569605253,
+         "cpuset" : 0,
+         "ib_count" : 0,
+         "state" : "Alive",
+         "cpuarch" : "x86_64",
+         "eth_rate" : 10,
+         "nodemodel" : "Dell PowerEdge T640",
+         "gpu" : null,
+         "max_walltime" : 86400,
+         "besteffort" : "YES",
+         "host" : "clusterc-1.fakesite.grid5000.fr",
+         "maintenance" : "NO",
+         "cpucore" : 8,
+         "gpu_model" : null,
+         "opa_rate" : 0,
+         "state_num" : 1,
+         "myri" : "NO",
+         "disktype" : "SATA",
+         "myri_rate" : 0,
+         "next_finaud_decision" : "NO",
+         "cpu" : 1,
+         "drain" : "NO",
+         "core" : 1,
+         "scheduler_priority" : 0,
+         "type" : "default",
+         "cpufreq" : "2.1",
+         "disk_reservation_count" : 3,
+         "eth_count" : 1,
+         "finaud_decision" : "NO",
+         "last_available_upto" : 0,
+         "expiry_date" : 0,
+         "ip" : "172.16.64.1",
+         "suspended_jobs" : "NO",
+         "available_upto" : 2147483647,
+         "deploy" : "NO",
+         "links" : [
+            {
+               "href" : "//oarapi/resources/nodes/clusterc-1.fakesite.grid5000.fr",
+               "rel" : "member",
+               "title" : "node"
+            },
+            {
+               "rel" : "self",
+               "href" : "//oarapi/resources/1"
+            },
+            {
+               "rel" : "collection",
+               "title" : "jobs",
+               "href" : "//oarapi/resources/1/jobs"
+            }
+         ],
+         "last_job_date" : 0,
+         "id" : 1,
+         "memnode" : 131072,
+         "cluster_priority" : 201906,
+         "disk" : null,
+         "switch" : null,
+         "gpu_count" : 0,
+         "wattmeter" : "MULTIPLE",
+         "memcore" : 8192,
+         "diskpath" : null,
+         "virtual" : "ivt",
+         "network_address" : "clusterc-1.fakesite.grid5000.fr",
+         "ib_rate" : 0,
+         "mic" : "NO",
+         "gpudevice" : null,
+         "desktop_computing" : "NO",
+         "next_state" : "UnChanged",
+         "memcpu" : 65536,
+         "opa_count" : 0,
+         "production" : "YES",
+         "ib" : "NO"
+      },
+      {
+         "cpu" : 1,
+         "next_finaud_decision" : "NO",
+         "scheduler_priority" : 0,
+         "type" : "default",
+         "core" : 3,
+         "drain" : "NO",
+         "disktype" : "SATA",
+         "myri" : "NO",
+         "myri_rate" : 0,
+         "last_available_upto" : 0,
+         "expiry_date" : 0,
+         "disk_reservation_count" : 3,
+         "cpufreq" : "2.1",
+         "finaud_decision" : "NO",
+         "eth_count" : 1,
+         "state" : "Alive",
+         "ib_count" : 0,
+         "cpuset" : 1,
+         "eth_rate" : 10,
+         "cpuarch" : "x86_64",
+         "cluster" : "clusterc",
+         "cputype" : "Intel Xeon Silver 4110",
+         "myri_count" : 0,
+         "opa" : "NO",
+         "api_timestamp" : 1569605253,
+         "maintenance" : "NO",
+         "gpu_model" : null,
+         "host" : "clusterc-1.fakesite.grid5000.fr",
+         "cpucore" : 8,
+         "besteffort" : "YES",
+         "state_num" : 1,
+         "opa_rate" : 0,
+         "gpu" : null,
+         "max_walltime" : 86400,
+         "nodemodel" : "Dell PowerEdge T640",
+         "gpudevice" : null,
+         "desktop_computing" : "NO",
+         "mic" : "NO",
+         "ib_rate" : 0,
+         "network_address" : "clusterc-1.fakesite.grid5000.fr",
+         "virtual" : "ivt",
+         "ib" : "NO",
+         "production" : "YES",
+         "memcpu" : 65536,
+         "next_state" : "UnChanged",
+         "opa_count" : 0,
+         "id" : 2,
+         "links" : [
+            {
+               "href" : "//oarapi/resources/nodes/clusterc-1.fakesite.grid5000.fr",
+               "rel" : "member",
+               "title" : "node"
+            },
+            {
+               "rel" : "self",
+               "href" : "//oarapi/resources/2"
+            },
+            {
+               "href" : "//oarapi/resources/2/jobs",
+               "title" : "jobs",
+               "rel" : "collection"
+            }
+         ],
+         "last_job_date" : 0,
+         "memnode" : 131072,
+         "cluster_priority" : 201906,
+         "ip" : "172.16.64.1",
+         "available_upto" : 2147483647,
+         "deploy" : "NO",
+         "suspended_jobs" : "NO",
+         "memcore" : 8192,
+         "gpu_count" : 0,
+         "wattmeter" : "MULTIPLE",
+         "diskpath" : null,
+         "disk" : null,
+         "switch" : null
+      },
+      {
+         "disk" : null,
+         "switch" : null,
+         "memcore" : 8192,
+         "gpu_count" : 0,
+         "wattmeter" : "MULTIPLE",
+         "diskpath" : null,
+         "ip" : "172.16.64.1",
+         "deploy" : "NO",
+         "available_upto" : 2147483647,
+         "suspended_jobs" : "NO",
+         "links" : [
+            {
+               "rel" : "member",
+               "title" : "node",
+               "href" : "//oarapi/resources/nodes/clusterc-1.fakesite.grid5000.fr"
+            },
+            {
+               "rel" : "self",
+               "href" : "//oarapi/resources/3"
+            },
+            {
+               "href" : "//oarapi/resources/3/jobs",
+               "rel" : "collection",
+               "title" : "jobs"
+            }
+         ],
+         "id" : 3,
+         "last_job_date" : 0,
+         "cluster_priority" : 201906,
+         "memnode" : 131072,
+         "next_state" : "UnChanged",
+         "memcpu" : 65536,
+         "opa_count" : 0,
+         "ib" : "NO",
+         "production" : "YES",
+         "ib_rate" : 0,
+         "virtual" : "ivt",
+         "network_address" : "clusterc-1.fakesite.grid5000.fr",
+         "desktop_computing" : "NO",
+         "gpudevice" : null,
+         "mic" : "NO",
+         "gpu" : null,
+         "max_walltime" : 86400,
+         "nodemodel" : "Dell PowerEdge T640",
+         "gpu_model" : null,
+         "maintenance" : "NO",
+         "host" : "clusterc-1.fakesite.grid5000.fr",
+         "cpucore" : 8,
+         "besteffort" : "YES",
+         "state_num" : 1,
+         "opa_rate" : 0,
+         "cputype" : "Intel Xeon Silver 4110",
+         "cluster" : "clusterc",
+         "opa" : "NO",
+         "myri_count" : 0,
+         "api_timestamp" : 1569605253,
+         "state" : "Alive",
+         "ib_count" : 0,
+         "cpuset" : 2,
+         "cpuarch" : "x86_64",
+         "eth_rate" : 10,
+         "disk_reservation_count" : 3,
+         "cpufreq" : "2.1",
+         "finaud_decision" : "NO",
+         "eth_count" : 1,
+         "last_available_upto" : 0,
+         "expiry_date" : 0,
+         "disktype" : "SATA",
+         "myri" : "NO",
+         "myri_rate" : 0,
+         "cpu" : 1,
+         "next_finaud_decision" : "NO",
+         "scheduler_priority" : 0,
+         "type" : "default",
+         "drain" : "NO",
+         "core" : 3
+      },
+      {
+         "cluster_priority" : 201906,
+         "memnode" : 131072,
+         "links" : [
+            {
+               "href" : "//oarapi/resources/nodes/clusterc-1.fakesite.grid5000.fr",
+               "title" : "node",
+               "rel" : "member"
+            },
+            {
+               "rel" : "self",
+               "href" : "//oarapi/resources/4"
+            },
+            {
+               "href" : "//oarapi/resources/4/jobs",
+               "title" : "jobs",
+               "rel" : "collection"
+            }
+         ],
+         "last_job_date" : 0,
+         "id" : 4,
+         "available_upto" : 2147483647,
+         "deploy" : "NO",
+         "suspended_jobs" : "NO",
+         "ip" : "172.16.64.1",
+         "diskpath" : null,
+         "memcore" : 8192,
+         "gpu_count" : 0,
+         "wattmeter" : "MULTIPLE",
+         "switch" : null,
+         "disk" : null,
+         "gpudevice" : null,
+         "desktop_computing" : "NO",
+         "mic" : "NO",
+         "ib_rate" : 0,
+         "network_address" : "clusterc-1.fakesite.grid5000.fr",
+         "virtual" : "ivt",
+         "production" : "YES",
+         "ib" : "NO",
+         "opa_count" : 0,
+         "next_state" : "UnChanged",
+         "memcpu" : 65536,
+         "cpuarch" : "x86_64",
+         "eth_rate" : 10,
+         "state" : "Alive",
+         "ib_count" : 0,
+         "cpuset" : 3,
+         "api_timestamp" : 1569605253,
+         "cluster" : "clusterc",
+         "cputype" : "Intel Xeon Silver 4110",
+         "opa" : "NO",
+         "myri_count" : 0,
+         "state_num" : 1,
+         "opa_rate" : 0,
+         "maintenance" : "NO",
+         "host" : "clusterc-1.fakesite.grid5000.fr",
+         "gpu_model" : null,
+         "cpucore" : 8,
+         "besteffort" : "YES",
+         "gpu" : null,
+         "max_walltime" : 86400,
+         "nodemodel" : "Dell PowerEdge T640",
+         "type" : "default",
+         "scheduler_priority" : 0,
+         "core" : 4,
+         "drain" : "NO",
+         "cpu" : 1,
+         "next_finaud_decision" : "NO",
+         "myri_rate" : 0,
+         "disktype" : "SATA",
+         "myri" : "NO",
+         "expiry_date" : 0,
+         "last_available_upto" : 0,
+         "finaud_decision" : "NO",
+         "eth_count" : 1,
+         "disk_reservation_count" : 3,
+         "cpufreq" : "2.1"
+      },
+      {
+         "finaud_decision" : "NO",
+         "eth_count" : 1,
+         "disk_reservation_count" : 3,
+         "cpufreq" : "2.1",
+         "expiry_date" : 0,
+         "last_available_upto" : 0,
+         "myri_rate" : 0,
+         "disktype" : "SATA",
+         "myri" : "NO",
+         "scheduler_priority" : 0,
+         "type" : "default",
+         "drain" : "NO",
+         "core" : 5,
+         "next_finaud_decision" : "NO",
+         "cpu" : 1,
+         "gpu" : null,
+         "max_walltime" : 86400,
+         "nodemodel" : "Dell PowerEdge T640",
+         "state_num" : 1,
+         "opa_rate" : 0,
+         "host" : "clusterc-1.fakesite.grid5000.fr",
+         "maintenance" : "NO",
+         "cpucore" : 8,
+         "gpu_model" : null,
+         "besteffort" : "YES",
+         "api_timestamp" : 1569605253,
+         "cluster" : "clusterc",
+         "cputype" : "Intel Xeon Silver 4110",
+         "myri_count" : 0,
+         "opa" : "NO",
+         "eth_rate" : 10,
+         "cpuarch" : "x86_64",
+         "state" : "Alive",
+         "ib_count" : 0,
+         "cpuset" : 4,
+         "opa_count" : 0,
+         "next_state" : "UnChanged",
+         "memcpu" : 65536,
+         "ib" : "NO",
+         "production" : "YES",
+         "ib_rate" : 0,
+         "virtual" : "ivt",
+         "network_address" : "clusterc-1.fakesite.grid5000.fr",
+         "gpudevice" : null,
+         "desktop_computing" : "NO",
+         "mic" : "NO",
+         "switch" : null,
+         "disk" : null,
+         "diskpath" : null,
+         "memcore" : 8192,
+         "gpu_count" : 0,
+         "wattmeter" : "MULTIPLE",
+         "deploy" : "NO",
+         "available_upto" : 2147483647,
+         "suspended_jobs" : "NO",
+         "ip" : "172.16.64.1",
+         "memnode" : 131072,
+         "cluster_priority" : 201906,
+         "last_job_date" : 0,
+         "links" : [
+            {
+               "href" : "//oarapi/resources/nodes/clusterc-1.fakesite.grid5000.fr",
+               "title" : "node",
+               "rel" : "member"
+            },
+            {
+               "rel" : "self",
+               "href" : "//oarapi/resources/5"
+            },
+            {
+               "title" : "jobs",
+               "rel" : "collection",
+               "href" : "//oarapi/resources/5/jobs"
+            }
+         ],
+         "id" : 5
+      },
+      {
+         "besteffort" : "YES",
+         "host" : "clusterc-1.fakesite.grid5000.fr",
+         "maintenance" : "NO",
+         "gpu_model" : null,
+         "cpucore" : 8,
+         "opa_rate" : 0,
+         "state_num" : 1,
+         "nodemodel" : "Dell PowerEdge T640",
+         "gpu" : null,
+         "max_walltime" : 86400,
+         "cpuset" : 5,
+         "ib_count" : 0,
+         "state" : "Alive",
+         "eth_rate" : 10,
+         "cpuarch" : "x86_64",
+         "opa" : "NO",
+         "myri_count" : 0,
+         "cputype" : "Intel Xeon Silver 4110",
+         "cluster" : "clusterc",
+         "api_timestamp" : 1569605253,
+         "last_available_upto" : 0,
+         "expiry_date" : 0,
+         "cpufreq" : "2.1",
+         "disk_reservation_count" : 3,
+         "eth_count" : 1,
+         "finaud_decision" : "NO",
+         "cpu" : 1,
+         "next_finaud_decision" : "NO",
+         "core" : 6,
+         "drain" : "NO",
+         "type" : "default",
+         "scheduler_priority" : 0,
+         "myri" : "NO",
+         "disktype" : "SATA",
+         "myri_rate" : 0,
+         "wattmeter" : "MULTIPLE",
+         "gpu_count" : 0,
+         "memcore" : 8192,
+         "diskpath" : null,
+         "disk" : null,
+         "switch" : null,
+         "links" : [
+            {
+               "href" : "//oarapi/resources/nodes/clusterc-1.fakesite.grid5000.fr",
+               "title" : "node",
+               "rel" : "member"
+            },
+            {
+               "href" : "//oarapi/resources/6",
+               "rel" : "self"
+            },
+            {
+               "rel" : "collection",
+               "title" : "jobs",
+               "href" : "//oarapi/resources/6/jobs"
+            }
+         ],
+         "last_job_date" : 0,
+         "id" : 6,
+         "cluster_priority" : 201906,
+         "memnode" : 131072,
+         "ip" : "172.16.64.1",
+         "suspended_jobs" : "NO",
+         "available_upto" : 2147483647,
+         "deploy" : "NO",
+         "ib" : "NO",
+         "production" : "YES",
+         "next_state" : "UnChanged",
+         "memcpu" : 65536,
+         "opa_count" : 0,
+         "mic" : "NO",
+         "gpudevice" : null,
+         "desktop_computing" : "NO",
+         "virtual" : "ivt",
+         "network_address" : "clusterc-1.fakesite.grid5000.fr",
+         "ib_rate" : 0
+      },
+      {
+         "next_state" : "UnChanged",
+         "memcpu" : 65536,
+         "opa_count" : 0,
+         "ib" : "NO",
+         "production" : "YES",
+         "ib_rate" : 0,
+         "virtual" : "ivt",
+         "network_address" : "clusterc-1.fakesite.grid5000.fr",
+         "desktop_computing" : "NO",
+         "gpudevice" : null,
+         "mic" : "NO",
+         "disk" : null,
+         "switch" : null,
+         "memcore" : 8192,
+         "gpu_count" : 0,
+         "wattmeter" : "MULTIPLE",
+         "diskpath" : null,
+         "ip" : "172.16.64.1",
+         "available_upto" : 2147483647,
+         "deploy" : "NO",
+         "suspended_jobs" : "NO",
+         "last_job_date" : 0,
+         "links" : [
+            {
+               "href" : "//oarapi/resources/nodes/clusterc-1.fakesite.grid5000.fr",
+               "title" : "node",
+               "rel" : "member"
+            },
+            {
+               "rel" : "self",
+               "href" : "//oarapi/resources/7"
+            },
+            {
+               "href" : "//oarapi/resources/7/jobs",
+               "title" : "jobs",
+               "rel" : "collection"
+            }
+         ],
+         "id" : 7,
+         "cluster_priority" : 201906,
+         "memnode" : 131072,
+         "disk_reservation_count" : 3,
+         "cpufreq" : "2.1",
+         "finaud_decision" : "NO",
+         "eth_count" : 1,
+         "last_available_upto" : 0,
+         "expiry_date" : 0,
+         "myri" : "NO",
+         "disktype" : "SATA",
+         "myri_rate" : 0,
+         "cpu" : 1,
+         "next_finaud_decision" : "NO",
+         "scheduler_priority" : 0,
+         "type" : "default",
+         "drain" : "NO",
+         "core" : 7,
+         "gpu" : null,
+         "max_walltime" : 86400,
+         "nodemodel" : "Dell PowerEdge T640",
+         "gpu_model" : null,
+         "maintenance" : "NO",
+         "host" : "clusterc-1.fakesite.grid5000.fr",
+         "cpucore" : 8,
+         "besteffort" : "YES",
+         "state_num" : 1,
+         "opa_rate" : 0,
+         "cputype" : "Intel Xeon Silver 4110",
+         "cluster" : "clusterc",
+         "opa" : "NO",
+         "myri_count" : 0,
+         "api_timestamp" : 1569605253,
+         "ib_count" : 0,
+         "state" : "Alive",
+         "cpuset" : 6,
+         "cpuarch" : "x86_64",
+         "eth_rate" : 10
+      },
+      {
+         "cputype" : "Intel Xeon Silver 4110",
+         "cluster" : "clusterc",
+         "myri_count" : 0,
+         "opa" : "NO",
+         "api_timestamp" : 1569605253,
+         "state" : "Alive",
+         "ib_count" : 0,
+         "cpuset" : 7,
+         "cpuarch" : "x86_64",
+         "eth_rate" : 10,
+         "gpu" : null,
+         "max_walltime" : 86400,
+         "nodemodel" : "Dell PowerEdge T640",
+         "maintenance" : "NO",
+         "cpucore" : 8,
+         "host" : "clusterc-1.fakesite.grid5000.fr",
+         "gpu_model" : null,
+         "besteffort" : "YES",
+         "state_num" : 1,
+         "opa_rate" : 0,
+         "myri" : "NO",
+         "disktype" : "SATA",
+         "myri_rate" : 0,
+         "cpu" : 1,
+         "next_finaud_decision" : "NO",
+         "type" : "default",
+         "scheduler_priority" : 0,
+         "drain" : "NO",
+         "core" : 8,
+         "disk_reservation_count" : 3,
+         "cpufreq" : "2.1",
+         "finaud_decision" : "NO",
+         "eth_count" : 1,
+         "last_available_upto" : 0,
+         "expiry_date" : 0,
+         "ip" : "172.16.64.1",
+         "available_upto" : 2147483647,
+         "deploy" : "NO",
+         "suspended_jobs" : "NO",
+         "id" : 8,
+         "links" : [
+            {
+               "rel" : "member",
+               "title" : "node",
+               "href" : "//oarapi/resources/nodes/clusterc-1.fakesite.grid5000.fr"
+            },
+            {
+               "href" : "//oarapi/resources/8",
+               "rel" : "self"
+            },
+            {
+               "rel" : "collection",
+               "title" : "jobs",
+               "href" : "//oarapi/resources/8/jobs"
+            }
+         ],
+         "last_job_date" : 0,
+         "memnode" : 131072,
+         "cluster_priority" : 201906,
+         "disk" : null,
+         "switch" : null,
+         "memcore" : 8192,
+         "wattmeter" : "MULTIPLE",
+         "gpu_count" : 0,
+         "diskpath" : null,
+         "ib_rate" : 0,
+         "network_address" : "clusterc-1.fakesite.grid5000.fr",
+         "virtual" : "ivt",
+         "gpudevice" : null,
+         "desktop_computing" : "NO",
+         "mic" : "NO",
+         "next_state" : "UnChanged",
+         "memcpu" : 65536,
+         "opa_count" : 0,
+         "production" : "YES",
+         "ib" : "NO"
+      },
+      {
+         "production" : "YES",
+         "ib" : "NO",
+         "opa_count" : 0,
+         "next_state" : "UnChanged",
+         "memcpu" : 65536,
+         "mic" : "NO",
+         "gpudevice" : null,
+         "desktop_computing" : "NO",
+         "virtual" : "ivt",
+         "network_address" : "clusterc-1.fakesite.grid5000.fr",
+         "ib_rate" : 0,
+         "diskpath" : null,
+         "wattmeter" : "MULTIPLE",
+         "gpu_count" : 0,
+         "memcore" : 8192,
+         "switch" : null,
+         "disk" : null,
+         "cluster_priority" : 201906,
+         "memnode" : 131072,
+         "links" : [
+            {
+               "rel" : "member",
+               "title" : "node",
+               "href" : "//oarapi/resources/nodes/clusterc-1.fakesite.grid5000.fr"
+            },
+            {
+               "rel" : "self",
+               "href" : "//oarapi/resources/9"
+            },
+            {
+               "href" : "//oarapi/resources/9/jobs",
+               "rel" : "collection",
+               "title" : "jobs"
+            }
+         ],
+         "last_job_date" : 0,
+         "id" : 9,
+         "suspended_jobs" : "NO",
+         "available_upto" : 2147483647,
+         "deploy" : "NO",
+         "ip" : "172.16.64.1",
+         "expiry_date" : 0,
+         "last_available_upto" : 0,
+         "eth_count" : 1,
+         "finaud_decision" : "NO",
+         "cpufreq" : "2.1",
+         "disk_reservation_count" : 3,
+         "core" : 9,
+         "drain" : "NO",
+         "scheduler_priority" : 0,
+         "type" : "default",
+         "next_finaud_decision" : "NO",
+         "cpu" : 2,
+         "myri_rate" : 0,
+         "myri" : "NO",
+         "disktype" : "SATA",
+         "opa_rate" : 0,
+         "state_num" : 1,
+         "besteffort" : "YES",
+         "maintenance" : "NO",
+         "host" : "clusterc-1.fakesite.grid5000.fr",
+         "cpucore" : 8,
+         "gpu_model" : null,
+         "nodemodel" : "Dell PowerEdge T640",
+         "gpu" : null,
+         "max_walltime" : 86400,
+         "cpuarch" : "x86_64",
+         "eth_rate" : 10,
+         "cpuset" : 8,
+         "ib_count" : 0,
+         "state" : "Alive",
+         "api_timestamp" : 1569605253,
+         "myri_count" : 0,
+         "opa" : "NO",
+         "cputype" : "Intel Xeon Silver 4110",
+         "cluster" : "clusterc"
+      },
+      {
+         "next_state" : "UnChanged",
+         "memcpu" : 65536,
+         "opa_count" : 0,
+         "ib" : "NO",
+         "production" : "YES",
+         "network_address" : "clusterc-1.fakesite.grid5000.fr",
+         "virtual" : "ivt",
+         "ib_rate" : 0,
+         "mic" : "NO",
+         "gpudevice" : null,
+         "desktop_computing" : "NO",
+         "disk" : null,
+         "switch" : null,
+         "wattmeter" : "MULTIPLE",
+         "gpu_count" : 0,
+         "memcore" : 8192,
+         "diskpath" : null,
+         "ip" : "172.16.64.1",
+         "suspended_jobs" : "NO",
+         "available_upto" : 2147483647,
+         "deploy" : "NO",
+         "last_job_date" : 0,
+         "links" : [
+            {
+               "href" : "//oarapi/resources/nodes/clusterc-1.fakesite.grid5000.fr",
+               "title" : "node",
+               "rel" : "member"
+            },
+            {
+               "href" : "//oarapi/resources/10",
+               "rel" : "self"
+            },
+            {
+               "href" : "//oarapi/resources/10/jobs",
+               "title" : "jobs",
+               "rel" : "collection"
+            }
+         ],
+         "id" : 10,
+         "cluster_priority" : 201906,
+         "memnode" : 131072,
+         "cpufreq" : "2.1",
+         "disk_reservation_count" : 3,
+         "eth_count" : 1,
+         "finaud_decision" : "NO",
+         "last_available_upto" : 0,
+         "expiry_date" : 0,
+         "disktype" : "SATA",
+         "myri" : "NO",
+         "myri_rate" : 0,
+         "next_finaud_decision" : "NO",
+         "cpu" : 2,
+         "drain" : "NO",
+         "core" : 10,
+         "type" : "default",
+         "scheduler_priority" : 0,
+         "nodemodel" : "Dell PowerEdge T640",
+         "max_walltime" : 86400,
+         "gpu" : null,
+         "besteffort" : "YES",
+         "maintenance" : "NO",
+         "host" : "clusterc-1.fakesite.grid5000.fr",
+         "gpu_model" : null,
+         "cpucore" : 8,
+         "opa_rate" : 0,
+         "state_num" : 1,
+         "myri_count" : 0,
+         "opa" : "NO",
+         "cluster" : "clusterc",
+         "cputype" : "Intel Xeon Silver 4110",
+         "api_timestamp" : 1569605253,
+         "cpuset" : 9,
+         "ib_count" : 0,
+         "state" : "Alive",
+         "eth_rate" : 10,
+         "cpuarch" : "x86_64"
+      },
+      {
+         "cpu" : 2,
+         "next_finaud_decision" : "NO",
+         "core" : 11,
+         "drain" : "NO",
+         "scheduler_priority" : 0,
+         "type" : "default",
+         "myri" : "NO",
+         "disktype" : "SATA",
+         "myri_rate" : 0,
+         "last_available_upto" : 0,
+         "expiry_date" : 0,
+         "cpufreq" : "2.1",
+         "disk_reservation_count" : 3,
+         "eth_count" : 1,
+         "finaud_decision" : "NO",
+         "cpuset" : 10,
+         "state" : "Alive",
+         "ib_count" : 0,
+         "eth_rate" : 10,
+         "cpuarch" : "x86_64",
+         "opa" : "NO",
+         "myri_count" : 0,
+         "cluster" : "clusterc",
+         "cputype" : "Intel Xeon Silver 4110",
+         "api_timestamp" : 1569605253,
+         "besteffort" : "YES",
+         "gpu_model" : null,
+         "maintenance" : "NO",
+         "cpucore" : 8,
+         "host" : "clusterc-1.fakesite.grid5000.fr",
+         "opa_rate" : 0,
+         "state_num" : 1,
+         "nodemodel" : "Dell PowerEdge T640",
+         "max_walltime" : 86400,
+         "gpu" : null,
+         "mic" : "NO",
+         "gpudevice" : null,
+         "desktop_computing" : "NO",
+         "network_address" : "clusterc-1.fakesite.grid5000.fr",
+         "virtual" : "ivt",
+         "ib_rate" : 0,
+         "production" : "YES",
+         "ib" : "NO",
+         "next_state" : "UnChanged",
+         "memcpu" : 65536,
+         "opa_count" : 0,
+         "links" : [
+            {
+               "href" : "//oarapi/resources/nodes/clusterc-1.fakesite.grid5000.fr",
+               "title" : "node",
+               "rel" : "member"
+            },
+            {
+               "rel" : "self",
+               "href" : "//oarapi/resources/11"
+            },
+            {
+               "href" : "//oarapi/resources/11/jobs",
+               "rel" : "collection",
+               "title" : "jobs"
+            }
+         ],
+         "last_job_date" : 0,
+         "id" : 11,
+         "cluster_priority" : 201906,
+         "memnode" : 131072,
+         "ip" : "172.16.64.1",
+         "suspended_jobs" : "NO",
+         "deploy" : "NO",
+         "available_upto" : 2147483647,
+         "wattmeter" : "MULTIPLE",
+         "gpu_count" : 0,
+         "memcore" : 8192,
+         "diskpath" : null,
+         "disk" : null,
+         "switch" : null
+      },
+      {
+         "myri_rate" : 0,
+         "myri" : "NO",
+         "disktype" : "SATA",
+         "drain" : "NO",
+         "core" : 12,
+         "scheduler_priority" : 0,
+         "type" : "default",
+         "next_finaud_decision" : "NO",
+         "cpu" : 2,
+         "eth_count" : 1,
+         "finaud_decision" : "NO",
+         "cpufreq" : "2.1",
+         "disk_reservation_count" : 3,
+         "expiry_date" : 0,
+         "last_available_upto" : 0,
+         "api_timestamp" : 1569605253,
+         "myri_count" : 0,
+         "opa" : "NO",
+         "cluster" : "clusterc",
+         "cputype" : "Intel Xeon Silver 4110",
+         "cpuarch" : "x86_64",
+         "eth_rate" : 10,
+         "cpuset" : 11,
+         "ib_count" : 0,
+         "state" : "Alive",
+         "nodemodel" : "Dell PowerEdge T640",
+         "max_walltime" : 86400,
+         "gpu" : null,
+         "opa_rate" : 0,
+         "state_num" : 1,
+         "besteffort" : "YES",
+         "maintenance" : "NO",
+         "host" : "clusterc-1.fakesite.grid5000.fr",
+         "gpu_model" : null,
+         "cpucore" : 8,
+         "virtual" : "ivt",
+         "network_address" : "clusterc-1.fakesite.grid5000.fr",
+         "ib_rate" : 0,
+         "mic" : "NO",
+         "desktop_computing" : "NO",
+         "gpudevice" : null,
+         "opa_count" : 0,
+         "memcpu" : 65536,
+         "next_state" : "UnChanged",
+         "ib" : "NO",
+         "production" : "YES",
+         "suspended_jobs" : "NO",
+         "available_upto" : 2147483647,
+         "deploy" : "NO",
+         "ip" : "172.16.64.1",
+         "memnode" : 131072,
+         "cluster_priority" : 201906,
+         "id" : 12,
+         "links" : [
+            {
+               "rel" : "member",
+               "title" : "node",
+               "href" : "//oarapi/resources/nodes/clusterc-1.fakesite.grid5000.fr"
+            },
+            {
+               "href" : "//oarapi/resources/12",
+               "rel" : "self"
+            },
+            {
+               "title" : "jobs",
+               "rel" : "collection",
+               "href" : "//oarapi/resources/12/jobs"
+            }
+         ],
+         "last_job_date" : 0,
+         "switch" : null,
+         "disk" : null,
+         "diskpath" : null,
+         "wattmeter" : "MULTIPLE",
+         "gpu_count" : 0,
+         "memcore" : 8192
+      },
+      {
+         "expiry_date" : 0,
+         "last_available_upto" : 0,
+         "eth_count" : 1,
+         "finaud_decision" : "NO",
+         "cpufreq" : "2.1",
+         "disk_reservation_count" : 3,
+         "core" : 13,
+         "drain" : "NO",
+         "scheduler_priority" : 0,
+         "type" : "default",
+         "cpu" : 2,
+         "next_finaud_decision" : "NO",
+         "myri_rate" : 0,
+         "disktype" : "SATA",
+         "myri" : "NO",
+         "opa_rate" : 0,
+         "state_num" : 1,
+         "besteffort" : "YES",
+         "host" : "clusterc-1.fakesite.grid5000.fr",
+         "maintenance" : "NO",
+         "gpu_model" : null,
+         "cpucore" : 8,
+         "nodemodel" : "Dell PowerEdge T640",
+         "gpu" : null,
+         "max_walltime" : 86400,
+         "eth_rate" : 10,
+         "cpuarch" : "x86_64",
+         "cpuset" : 12,
+         "ib_count" : 0,
+         "state" : "Alive",
+         "api_timestamp" : 1569605253,
+         "opa" : "NO",
+         "myri_count" : 0,
+         "cputype" : "Intel Xeon Silver 4110",
+         "cluster" : "clusterc",
+         "ib" : "NO",
+         "production" : "YES",
+         "opa_count" : 0,
+         "next_state" : "UnChanged",
+         "memcpu" : 65536,
+         "mic" : "NO",
+         "desktop_computing" : "NO",
+         "gpudevice" : null,
+         "network_address" : "clusterc-1.fakesite.grid5000.fr",
+         "virtual" : "ivt",
+         "ib_rate" : 0,
+         "diskpath" : null,
+         "wattmeter" : "MULTIPLE",
+         "gpu_count" : 0,
+         "memcore" : 8192,
+         "switch" : null,
+         "disk" : null,
+         "cluster_priority" : 201906,
+         "memnode" : 131072,
+         "last_job_date" : 0,
+         "links" : [
+            {
+               "href" : "//oarapi/resources/nodes/clusterc-1.fakesite.grid5000.fr",
+               "title" : "node",
+               "rel" : "member"
+            },
+            {
+               "rel" : "self",
+               "href" : "//oarapi/resources/13"
+            },
+            {
+               "title" : "jobs",
+               "rel" : "collection",
+               "href" : "//oarapi/resources/13/jobs"
+            }
+         ],
+         "id" : 13,
+         "suspended_jobs" : "NO",
+         "available_upto" : 2147483647,
+         "deploy" : "NO",
+         "ip" : "172.16.64.1"
+      },
+      {
+         "cluster" : "clusterc",
+         "cputype" : "Intel Xeon Silver 4110",
+         "opa" : "NO",
+         "myri_count" : 0,
+         "api_timestamp" : 1569605253,
+         "state" : "Alive",
+         "ib_count" : 0,
+         "cpuset" : 13,
+         "cpuarch" : "x86_64",
+         "eth_rate" : 10,
+         "max_walltime" : 86400,
+         "gpu" : null,
+         "nodemodel" : "Dell PowerEdge T640",
+         "host" : "clusterc-1.fakesite.grid5000.fr",
+         "maintenance" : "NO",
+         "gpu_model" : null,
+         "cpucore" : 8,
+         "besteffort" : "YES",
+         "state_num" : 1,
+         "opa_rate" : 0,
+         "myri" : "NO",
+         "disktype" : "SATA",
+         "myri_rate" : 0,
+         "next_finaud_decision" : "NO",
+         "cpu" : 2,
+         "scheduler_priority" : 0,
+         "type" : "default",
+         "core" : 14,
+         "drain" : "NO",
+         "disk_reservation_count" : 3,
+         "cpufreq" : "2.1",
+         "finaud_decision" : "NO",
+         "eth_count" : 1,
+         "last_available_upto" : 0,
+         "expiry_date" : 0,
+         "ip" : "172.16.64.1",
+         "available_upto" : 2147483647,
+         "deploy" : "NO",
+         "suspended_jobs" : "NO",
+         "links" : [
+            {
+               "title" : "node",
+               "rel" : "member",
+               "href" : "//oarapi/resources/nodes/clusterc-1.fakesite.grid5000.fr"
+            },
+            {
+               "href" : "//oarapi/resources/14",
+               "rel" : "self"
+            },
+            {
+               "rel" : "collection",
+               "title" : "jobs",
+               "href" : "//oarapi/resources/14/jobs"
+            }
+         ],
+         "last_job_date" : 0,
+         "id" : 14,
+         "memnode" : 131072,
+         "cluster_priority" : 201906,
+         "disk" : null,
+         "switch" : null,
+         "memcore" : 8192,
+         "gpu_count" : 0,
+         "wattmeter" : "MULTIPLE",
+         "diskpath" : null,
+         "ib_rate" : 0,
+         "network_address" : "clusterc-1.fakesite.grid5000.fr",
+         "virtual" : "ivt",
+         "gpudevice" : null,
+         "desktop_computing" : "NO",
+         "mic" : "NO",
+         "memcpu" : 65536,
+         "next_state" : "UnChanged",
+         "opa_count" : 0,
+         "production" : "YES",
+         "ib" : "NO"
+      },
+      {
+         "besteffort" : "YES",
+         "maintenance" : "NO",
+         "host" : "clusterc-1.fakesite.grid5000.fr",
+         "cpucore" : 8,
+         "gpu_model" : null,
+         "opa_rate" : 0,
+         "state_num" : 1,
+         "nodemodel" : "Dell PowerEdge T640",
+         "max_walltime" : 86400,
+         "gpu" : null,
+         "cpuset" : 14,
+         "ib_count" : 0,
+         "state" : "Alive",
+         "cpuarch" : "x86_64",
+         "eth_rate" : 10,
+         "myri_count" : 0,
+         "opa" : "NO",
+         "cputype" : "Intel Xeon Silver 4110",
+         "cluster" : "clusterc",
+         "api_timestamp" : 1569605253,
+         "last_available_upto" : 0,
+         "expiry_date" : 0,
+         "cpufreq" : "2.1",
+         "disk_reservation_count" : 3,
+         "eth_count" : 1,
+         "finaud_decision" : "NO",
+         "next_finaud_decision" : "NO",
+         "cpu" : 2,
+         "core" : 15,
+         "drain" : "NO",
+         "type" : "default",
+         "scheduler_priority" : 0,
+         "myri" : "NO",
+         "disktype" : "SATA",
+         "myri_rate" : 0,
+         "gpu_count" : 0,
+         "wattmeter" : "MULTIPLE",
+         "memcore" : 8192,
+         "diskpath" : null,
+         "disk" : null,
+         "switch" : null,
+         "links" : [
+            {
+               "href" : "//oarapi/resources/nodes/clusterc-1.fakesite.grid5000.fr",
+               "rel" : "member",
+               "title" : "node"
+            },
+            {
+               "rel" : "self",
+               "href" : "//oarapi/resources/15"
+            },
+            {
+               "title" : "jobs",
+               "rel" : "collection",
+               "href" : "//oarapi/resources/15/jobs"
+            }
+         ],
+         "last_job_date" : 0,
+         "id" : 15,
+         "cluster_priority" : 201906,
+         "memnode" : 131072,
+         "ip" : "172.16.64.1",
+         "suspended_jobs" : "NO",
+         "deploy" : "NO",
+         "available_upto" : 2147483647,
+         "production" : "YES",
+         "ib" : "NO",
+         "next_state" : "UnChanged",
+         "memcpu" : 65536,
+         "opa_count" : 0,
+         "mic" : "NO",
+         "gpudevice" : null,
+         "desktop_computing" : "NO",
+         "network_address" : "clusterc-1.fakesite.grid5000.fr",
+         "virtual" : "ivt",
+         "ib_rate" : 0
+      },
+      {
+         "ib" : "NO",
+         "production" : "YES",
+         "next_state" : "UnChanged",
+         "memcpu" : 65536,
+         "opa_count" : 0,
+         "mic" : "NO",
+         "gpudevice" : null,
+         "desktop_computing" : "NO",
+         "virtual" : "ivt",
+         "network_address" : "clusterc-1.fakesite.grid5000.fr",
+         "ib_rate" : 0,
+         "wattmeter" : "MULTIPLE",
+         "gpu_count" : 0,
+         "memcore" : 8192,
+         "diskpath" : null,
+         "disk" : null,
+         "switch" : null,
+         "links" : [
+            {
+               "href" : "//oarapi/resources/nodes/clusterc-1.fakesite.grid5000.fr",
+               "title" : "node",
+               "rel" : "member"
+            },
+            {
+               "href" : "//oarapi/resources/16",
+               "rel" : "self"
+            },
+            {
+               "href" : "//oarapi/resources/16/jobs",
+               "title" : "jobs",
+               "rel" : "collection"
+            }
+         ],
+         "id" : 16,
+         "last_job_date" : 0,
+         "cluster_priority" : 201906,
+         "memnode" : 131072,
+         "ip" : "172.16.64.1",
+         "suspended_jobs" : "NO",
+         "available_upto" : 2147483647,
+         "deploy" : "NO",
+         "last_available_upto" : 0,
+         "expiry_date" : 0,
+         "cpufreq" : "2.1",
+         "disk_reservation_count" : 3,
+         "eth_count" : 1,
+         "finaud_decision" : "NO",
+         "next_finaud_decision" : "NO",
+         "cpu" : 2,
+         "drain" : "NO",
+         "core" : 16,
+         "type" : "default",
+         "scheduler_priority" : 0,
+         "myri" : "NO",
+         "disktype" : "SATA",
+         "myri_rate" : 0,
+         "besteffort" : "YES",
+         "maintenance" : "NO",
+         "host" : "clusterc-1.fakesite.grid5000.fr",
+         "gpu_model" : null,
+         "cpucore" : 8,
+         "opa_rate" : 0,
+         "state_num" : 1,
+         "nodemodel" : "Dell PowerEdge T640",
+         "max_walltime" : 86400,
+         "gpu" : null,
+         "cpuset" : 15,
+         "ib_count" : 0,
+         "state" : "Alive",
+         "cpuarch" : "x86_64",
+         "eth_rate" : 10,
+         "opa" : "NO",
+         "myri_count" : 0,
+         "cluster" : "clusterc",
+         "cputype" : "Intel Xeon Silver 4110",
+         "api_timestamp" : 1569605253
+      },
+      {
+         "opa_count" : null,
+         "next_state" : "UnChanged",
+         "memcpu" : null,
+         "ib" : null,
+         "production" : "YES",
+         "ib_rate" : null,
+         "virtual" : null,
+         "network_address" : "",
+         "gpudevice" : null,
+         "desktop_computing" : "NO",
+         "mic" : null,
+         "switch" : null,
+         "disk" : "sdb.clusterc-1",
+         "diskpath" : "/dev/disk/by-path/pci-0000:02:00.0-scsi-0:0:1:0",
+         "memcore" : null,
+         "wattmeter" : null,
+         "gpu_count" : null,
+         "deploy" : "YES",
+         "available_upto" : 0,
+         "suspended_jobs" : "NO",
+         "ip" : null,
+         "memnode" : null,
+         "cluster_priority" : null,
+         "links" : [
+            {
+               "href" : "//oarapi/resources/nodes/",
+               "title" : "node",
+               "rel" : "member"
+            },
+            {
+               "href" : "//oarapi/resources/17",
+               "rel" : "self"
+            },
+            {
+               "href" : "//oarapi/resources/17/jobs",
+               "rel" : "collection",
+               "title" : "jobs"
+            }
+         ],
+         "id" : 17,
+         "last_job_date" : 0,
+         "finaud_decision" : "NO",
+         "eth_count" : null,
+         "disk_reservation_count" : null,
+         "cpufreq" : null,
+         "expiry_date" : 0,
+         "last_available_upto" : 0,
+         "myri_rate" : null,
+         "myri" : null,
+         "disktype" : null,
+         "scheduler_priority" : 0,
+         "type" : "disk",
+         "core" : null,
+         "drain" : "NO",
+         "cpu" : null,
+         "next_finaud_decision" : "NO",
+         "gpu" : null,
+         "max_walltime" : null,
+         "nodemodel" : null,
+         "state_num" : 1,
+         "opa_rate" : null,
+         "cpucore" : null,
+         "maintenance" : "NO",
+         "host" : "clusterc-1.fakesite.grid5000.fr",
+         "gpu_model" : null,
+         "besteffort" : "YES",
+         "api_timestamp" : 1569605253,
+         "cputype" : null,
+         "cluster" : "clusterc",
+         "myri_count" : null,
+         "opa" : null,
+         "eth_rate" : null,
+         "cpuarch" : null,
+         "state" : "Alive",
+         "ib_count" : null,
+         "cpuset" : -1
+      },
+      {
+         "type" : "disk",
+         "scheduler_priority" : 0,
+         "core" : null,
+         "drain" : "NO",
+         "next_finaud_decision" : "NO",
+         "cpu" : null,
+         "myri_rate" : null,
+         "myri" : null,
+         "disktype" : null,
+         "expiry_date" : 0,
+         "last_available_upto" : 0,
+         "finaud_decision" : "NO",
+         "eth_count" : null,
+         "disk_reservation_count" : null,
+         "cpufreq" : null,
+         "cpuarch" : null,
+         "eth_rate" : null,
+         "ib_count" : null,
+         "state" : "Alive",
+         "cpuset" : -1,
+         "api_timestamp" : 1569605253,
+         "cluster" : "clusterc",
+         "cputype" : null,
+         "myri_count" : null,
+         "opa" : null,
+         "state_num" : 1,
+         "opa_rate" : null,
+         "maintenance" : "NO",
+         "cpucore" : null,
+         "host" : "clusterc-1.fakesite.grid5000.fr",
+         "gpu_model" : null,
+         "besteffort" : "YES",
+         "gpu" : null,
+         "max_walltime" : null,
+         "nodemodel" : null,
+         "gpudevice" : null,
+         "desktop_computing" : "NO",
+         "mic" : null,
+         "ib_rate" : null,
+         "network_address" : "",
+         "virtual" : null,
+         "production" : "YES",
+         "ib" : null,
+         "opa_count" : null,
+         "memcpu" : null,
+         "next_state" : "UnChanged",
+         "memnode" : null,
+         "cluster_priority" : null,
+         "last_job_date" : 0,
+         "links" : [
+            {
+               "href" : "//oarapi/resources/nodes/",
+               "title" : "node",
+               "rel" : "member"
+            },
+            {
+               "rel" : "self",
+               "href" : "//oarapi/resources/18"
+            },
+            {
+               "title" : "jobs",
+               "rel" : "collection",
+               "href" : "//oarapi/resources/18/jobs"
+            }
+         ],
+         "id" : 18,
+         "available_upto" : 0,
+         "deploy" : "YES",
+         "suspended_jobs" : "NO",
+         "ip" : null,
+         "diskpath" : "/dev/disk/by-path/pci-0000:02:00.0-scsi-0:0:2:0",
+         "memcore" : null,
+         "gpu_count" : null,
+         "wattmeter" : null,
+         "switch" : null,
+         "disk" : "sdc.clusterc-1"
+      },
+      {
+         "expiry_date" : 0,
+         "last_available_upto" : 0,
+         "eth_count" : null,
+         "finaud_decision" : "NO",
+         "cpufreq" : null,
+         "disk_reservation_count" : null,
+         "drain" : "NO",
+         "core" : null,
+         "scheduler_priority" : 0,
+         "type" : "disk",
+         "next_finaud_decision" : "NO",
+         "cpu" : null,
+         "myri_rate" : null,
+         "disktype" : null,
+         "myri" : null,
+         "opa_rate" : null,
+         "state_num" : 1,
+         "besteffort" : "YES",
+         "maintenance" : "NO",
+         "host" : "clusterc-1.fakesite.grid5000.fr",
+         "cpucore" : null,
+         "gpu_model" : null,
+         "nodemodel" : null,
+         "max_walltime" : null,
+         "gpu" : null,
+         "eth_rate" : null,
+         "cpuarch" : null,
+         "cpuset" : -1,
+         "state" : "Alive",
+         "ib_count" : null,
+         "api_timestamp" : 1569605253,
+         "myri_count" : null,
+         "opa" : null,
+         "cputype" : null,
+         "cluster" : "clusterc",
+         "ib" : null,
+         "production" : "YES",
+         "opa_count" : null,
+         "next_state" : "UnChanged",
+         "memcpu" : null,
+         "mic" : null,
+         "gpudevice" : null,
+         "desktop_computing" : "NO",
+         "network_address" : "",
+         "virtual" : null,
+         "ib_rate" : null,
+         "diskpath" : "/dev/disk/by-path/pci-0000:02:00.0-scsi-0:0:3:0",
+         "gpu_count" : null,
+         "wattmeter" : null,
+         "memcore" : null,
+         "switch" : null,
+         "disk" : "sdd.clusterc-1",
+         "cluster_priority" : null,
+         "memnode" : null,
+         "links" : [
+            {
+               "title" : "node",
+               "rel" : "member",
+               "href" : "//oarapi/resources/nodes/"
+            },
+            {
+               "rel" : "self",
+               "href" : "//oarapi/resources/19"
+            },
+            {
+               "rel" : "collection",
+               "title" : "jobs",
+               "href" : "//oarapi/resources/19/jobs"
+            }
+         ],
+         "id" : 19,
+         "last_job_date" : 0,
+         "suspended_jobs" : "NO",
+         "available_upto" : 0,
+         "deploy" : "YES",
+         "ip" : null
+      },
+      {
+         "eth_count" : 1,
+         "finaud_decision" : "NO",
+         "cpufreq" : "2.1",
+         "disk_reservation_count" : 3,
+         "expiry_date" : 0,
+         "last_available_upto" : 0,
+         "myri_rate" : 0,
+         "disktype" : "SATA",
+         "myri" : "NO",
+         "drain" : "NO",
+         "core" : 17,
+         "type" : "default",
+         "scheduler_priority" : 0,
+         "next_finaud_decision" : "NO",
+         "cpu" : 3,
+         "nodemodel" : "Dell PowerEdge T640",
+         "max_walltime" : 86400,
+         "gpu" : null,
+         "opa_rate" : 0,
+         "state_num" : 1,
+         "besteffort" : "YES",
+         "maintenance" : "NO",
+         "cpucore" : 8,
+         "host" : "clusterc-2.fakesite.grid5000.fr",
+         "gpu_model" : null,
+         "api_timestamp" : 1569605253,
+         "myri_count" : 0,
+         "opa" : "NO",
+         "cputype" : "Intel Xeon Silver 4110",
+         "cluster" : "clusterc",
+         "eth_rate" : 10,
+         "cpuarch" : "x86_64",
+         "cpuset" : 0,
+         "state" : "Alive",
+         "ib_count" : 0,
+         "opa_count" : 0,
+         "next_state" : "UnChanged",
+         "memcpu" : 65536,
+         "production" : "YES",
+         "ib" : "NO",
+         "virtual" : "ivt",
+         "network_address" : "clusterc-2.fakesite.grid5000.fr",
+         "ib_rate" : 0,
+         "mic" : "NO",
+         "gpudevice" : null,
+         "desktop_computing" : "NO",
+         "switch" : null,
+         "disk" : null,
+         "diskpath" : null,
+         "gpu_count" : 0,
+         "wattmeter" : "MULTIPLE",
+         "memcore" : 8192,
+         "suspended_jobs" : "NO",
+         "deploy" : "NO",
+         "available_upto" : 2147483647,
+         "ip" : "172.16.64.2",
+         "cluster_priority" : 201906,
+         "memnode" : 131072,
+         "id" : 20,
+         "links" : [
+            {
+               "href" : "//oarapi/resources/nodes/clusterc-2.fakesite.grid5000.fr",
+               "title" : "node",
+               "rel" : "member"
+            },
+            {
+               "href" : "//oarapi/resources/20",
+               "rel" : "self"
+            },
+            {
+               "title" : "jobs",
+               "rel" : "collection",
+               "href" : "//oarapi/resources/20/jobs"
+            }
+         ],
+         "last_job_date" : 0
+      },
+      {
+         "gpudevice" : null,
+         "desktop_computing" : "NO",
+         "mic" : "NO",
+         "ib_rate" : 0,
+         "network_address" : "clusterc-2.fakesite.grid5000.fr",
+         "virtual" : "ivt",
+         "production" : "YES",
+         "ib" : "NO",
+         "next_state" : "UnChanged",
+         "memcpu" : 65536,
+         "opa_count" : 0,
+         "links" : [
+            {
+               "rel" : "member",
+               "title" : "node",
+               "href" : "//oarapi/resources/nodes/clusterc-2.fakesite.grid5000.fr"
+            },
+            {
+               "href" : "//oarapi/resources/21",
+               "rel" : "self"
+            },
+            {
+               "rel" : "collection",
+               "title" : "jobs",
+               "href" : "//oarapi/resources/21/jobs"
+            }
+         ],
+         "id" : 21,
+         "last_job_date" : 0,
+         "cluster_priority" : 201906,
+         "memnode" : 131072,
+         "ip" : "172.16.64.2",
+         "deploy" : "NO",
+         "available_upto" : 2147483647,
+         "suspended_jobs" : "NO",
+         "memcore" : 8192,
+         "gpu_count" : 0,
+         "wattmeter" : "MULTIPLE",
+         "diskpath" : null,
+         "disk" : null,
+         "switch" : null,
+         "cpu" : 3,
+         "next_finaud_decision" : "NO",
+         "type" : "default",
+         "scheduler_priority" : 0,
+         "drain" : "NO",
+         "core" : 18,
+         "disktype" : "SATA",
+         "myri" : "NO",
+         "myri_rate" : 0,
+         "last_available_upto" : 0,
+         "expiry_date" : 0,
+         "disk_reservation_count" : 3,
+         "cpufreq" : "2.1",
+         "finaud_decision" : "NO",
+         "eth_count" : 1,
+         "state" : "Alive",
+         "ib_count" : 0,
+         "cpuset" : 1,
+         "cpuarch" : "x86_64",
+         "eth_rate" : 10,
+         "cluster" : "clusterc",
+         "cputype" : "Intel Xeon Silver 4110",
+         "myri_count" : 0,
+         "opa" : "NO",
+         "api_timestamp" : 1569605253,
+         "cpucore" : 8,
+         "maintenance" : "NO",
+         "host" : "clusterc-2.fakesite.grid5000.fr",
+         "gpu_model" : null,
+         "besteffort" : "YES",
+         "state_num" : 1,
+         "opa_rate" : 0,
+         "gpu" : null,
+         "max_walltime" : 86400,
+         "nodemodel" : "Dell PowerEdge T640"
+      },
+      {
+         "ib_rate" : 0,
+         "virtual" : "ivt",
+         "network_address" : "clusterc-2.fakesite.grid5000.fr",
+         "gpudevice" : null,
+         "desktop_computing" : "NO",
+         "mic" : "NO",
+         "opa_count" : 0,
+         "next_state" : "UnChanged",
+         "memcpu" : 65536,
+         "production" : "YES",
+         "ib" : "NO",
+         "available_upto" : 2147483647,
+         "deploy" : "NO",
+         "suspended_jobs" : "NO",
+         "ip" : "172.16.64.2",
+         "cluster_priority" : 201906,
+         "memnode" : 131072,
+         "last_job_date" : 0,
+         "links" : [
+            {
+               "href" : "//oarapi/resources/nodes/clusterc-2.fakesite.grid5000.fr",
+               "title" : "node",
+               "rel" : "member"
+            },
+            {
+               "rel" : "self",
+               "href" : "//oarapi/resources/22"
+            },
+            {
+               "rel" : "collection",
+               "title" : "jobs",
+               "href" : "//oarapi/resources/22/jobs"
+            }
+         ],
+         "id" : 22,
+         "switch" : null,
+         "disk" : null,
+         "diskpath" : null,
+         "memcore" : 8192,
+         "wattmeter" : "MULTIPLE",
+         "gpu_count" : 0,
+         "myri_rate" : 0,
+         "disktype" : "SATA",
+         "myri" : "NO",
+         "type" : "default",
+         "scheduler_priority" : 0,
+         "core" : 19,
+         "drain" : "NO",
+         "next_finaud_decision" : "NO",
+         "cpu" : 3,
+         "finaud_decision" : "NO",
+         "eth_count" : 1,
+         "disk_reservation_count" : 3,
+         "cpufreq" : "2.1",
+         "expiry_date" : 0,
+         "last_available_upto" : 0,
+         "api_timestamp" : 1569605253,
+         "cluster" : "clusterc",
+         "cputype" : "Intel Xeon Silver 4110",
+         "opa" : "NO",
+         "myri_count" : 0,
+         "eth_rate" : 10,
+         "cpuarch" : "x86_64",
+         "ib_count" : 0,
+         "state" : "Alive",
+         "cpuset" : 2,
+         "gpu" : null,
+         "max_walltime" : 86400,
+         "nodemodel" : "Dell PowerEdge T640",
+         "state_num" : 1,
+         "opa_rate" : 0,
+         "maintenance" : "NO",
+         "gpu_model" : null,
+         "host" : "clusterc-2.fakesite.grid5000.fr",
+         "cpucore" : 8,
+         "besteffort" : "YES"
+      },
+      {
+         "gpudevice" : null,
+         "desktop_computing" : "NO",
+         "mic" : "NO",
+         "ib_rate" : 0,
+         "network_address" : "clusterc-2.fakesite.grid5000.fr",
+         "virtual" : "ivt",
+         "production" : "YES",
+         "ib" : "NO",
+         "opa_count" : 0,
+         "memcpu" : 65536,
+         "next_state" : "UnChanged",
+         "memnode" : 131072,
+         "cluster_priority" : 201906,
+         "last_job_date" : 0,
+         "links" : [
+            {
+               "rel" : "member",
+               "title" : "node",
+               "href" : "//oarapi/resources/nodes/clusterc-2.fakesite.grid5000.fr"
+            },
+            {
+               "href" : "//oarapi/resources/23",
+               "rel" : "self"
+            },
+            {
+               "href" : "//oarapi/resources/23/jobs",
+               "rel" : "collection",
+               "title" : "jobs"
+            }
+         ],
+         "id" : 23,
+         "available_upto" : 2147483647,
+         "deploy" : "NO",
+         "suspended_jobs" : "NO",
+         "ip" : "172.16.64.2",
+         "diskpath" : null,
+         "memcore" : 8192,
+         "gpu_count" : 0,
+         "wattmeter" : "MULTIPLE",
+         "switch" : null,
+         "disk" : null,
+         "type" : "default",
+         "scheduler_priority" : 0,
+         "core" : 20,
+         "drain" : "NO",
+         "cpu" : 3,
+         "next_finaud_decision" : "NO",
+         "myri_rate" : 0,
+         "myri" : "NO",
+         "disktype" : "SATA",
+         "expiry_date" : 0,
+         "last_available_upto" : 0,
+         "finaud_decision" : "NO",
+         "eth_count" : 1,
+         "disk_reservation_count" : 3,
+         "cpufreq" : "2.1",
+         "eth_rate" : 10,
+         "cpuarch" : "x86_64",
+         "state" : "Alive",
+         "ib_count" : 0,
+         "cpuset" : 3,
+         "api_timestamp" : 1569605253,
+         "cluster" : "clusterc",
+         "cputype" : "Intel Xeon Silver 4110",
+         "opa" : "NO",
+         "myri_count" : 0,
+         "state_num" : 1,
+         "opa_rate" : 0,
+         "maintenance" : "NO",
+         "gpu_model" : null,
+         "cpucore" : 8,
+         "host" : "clusterc-2.fakesite.grid5000.fr",
+         "besteffort" : "YES",
+         "max_walltime" : 86400,
+         "gpu" : null,
+         "nodemodel" : "Dell PowerEdge T640"
+      },
+      {
+         "mic" : "NO",
+         "desktop_computing" : "NO",
+         "gpudevice" : null,
+         "network_address" : "clusterc-2.fakesite.grid5000.fr",
+         "virtual" : "ivt",
+         "ib_rate" : 0,
+         "production" : "YES",
+         "ib" : "NO",
+         "opa_count" : 0,
+         "memcpu" : 65536,
+         "next_state" : "UnChanged",
+         "memnode" : 131072,
+         "cluster_priority" : 201906,
+         "links" : [
+            {
+               "href" : "//oarapi/resources/nodes/clusterc-2.fakesite.grid5000.fr",
+               "title" : "node",
+               "rel" : "member"
+            },
+            {
+               "href" : "//oarapi/resources/24",
+               "rel" : "self"
+            },
+            {
+               "href" : "//oarapi/resources/24/jobs",
+               "title" : "jobs",
+               "rel" : "collection"
+            }
+         ],
+         "id" : 24,
+         "last_job_date" : 0,
+         "suspended_jobs" : "NO",
+         "available_upto" : 2147483647,
+         "deploy" : "NO",
+         "ip" : "172.16.64.2",
+         "diskpath" : null,
+         "gpu_count" : 0,
+         "wattmeter" : "MULTIPLE",
+         "memcore" : 8192,
+         "switch" : null,
+         "disk" : null,
+         "drain" : "NO",
+         "core" : 21,
+         "scheduler_priority" : 0,
+         "type" : "default",
+         "next_finaud_decision" : "NO",
+         "cpu" : 3,
+         "myri_rate" : 0,
+         "disktype" : "SATA",
+         "myri" : "NO",
+         "expiry_date" : 0,
+         "last_available_upto" : 0,
+         "eth_count" : 1,
+         "finaud_decision" : "NO",
+         "cpufreq" : "2.1",
+         "disk_reservation_count" : 3,
+         "eth_rate" : 10,
+         "cpuarch" : "x86_64",
+         "cpuset" : 4,
+         "state" : "Alive",
+         "ib_count" : 0,
+         "api_timestamp" : 1569605253,
+         "opa" : "NO",
+         "myri_count" : 0,
+         "cluster" : "clusterc",
+         "cputype" : "Intel Xeon Silver 4110",
+         "opa_rate" : 0,
+         "state_num" : 1,
+         "besteffort" : "YES",
+         "host" : "clusterc-2.fakesite.grid5000.fr",
+         "maintenance" : "NO",
+         "cpucore" : 8,
+         "gpu_model" : null,
+         "nodemodel" : "Dell PowerEdge T640",
+         "max_walltime" : 86400,
+         "gpu" : null
+      },
+      {
+         "ib_rate" : 0,
+         "virtual" : "ivt",
+         "network_address" : "clusterc-2.fakesite.grid5000.fr",
+         "gpudevice" : null,
+         "desktop_computing" : "NO",
+         "mic" : "NO",
+         "next_state" : "UnChanged",
+         "memcpu" : 65536,
+         "opa_count" : 0,
+         "ib" : "NO",
+         "production" : "YES",
+         "ip" : "172.16.64.2",
+         "deploy" : "NO",
+         "available_upto" : 2147483647,
+         "suspended_jobs" : "NO",
+         "links" : [
+            {
+               "rel" : "member",
+               "title" : "node",
+               "href" : "//oarapi/resources/nodes/clusterc-2.fakesite.grid5000.fr"
+            },
+            {
+               "href" : "//oarapi/resources/25",
+               "rel" : "self"
+            },
+            {
+               "href" : "//oarapi/resources/25/jobs",
+               "rel" : "collection",
+               "title" : "jobs"
+            }
+         ],
+         "last_job_date" : 0,
+         "id" : 25,
+         "cluster_priority" : 201906,
+         "memnode" : 131072,
+         "disk" : null,
+         "switch" : null,
+         "memcore" : 8192,
+         "gpu_count" : 0,
+         "wattmeter" : "MULTIPLE",
+         "diskpath" : null,
+         "disktype" : "SATA",
+         "myri" : "NO",
+         "myri_rate" : 0,
+         "cpu" : 3,
+         "next_finaud_decision" : "NO",
+         "type" : "default",
+         "scheduler_priority" : 0,
+         "core" : 22,
+         "drain" : "NO",
+         "disk_reservation_count" : 3,
+         "cpufreq" : "2.1",
+         "finaud_decision" : "NO",
+         "eth_count" : 1,
+         "last_available_upto" : 0,
+         "expiry_date" : 0,
+         "cputype" : "Intel Xeon Silver 4110",
+         "cluster" : "clusterc",
+         "myri_count" : 0,
+         "opa" : "NO",
+         "api_timestamp" : 1569605253,
+         "ib_count" : 0,
+         "state" : "Alive",
+         "cpuset" : 5,
+         "cpuarch" : "x86_64",
+         "eth_rate" : 10,
+         "max_walltime" : 86400,
+         "gpu" : null,
+         "nodemodel" : "Dell PowerEdge T640",
+         "maintenance" : "NO",
+         "cpucore" : 8,
+         "host" : "clusterc-2.fakesite.grid5000.fr",
+         "gpu_model" : null,
+         "besteffort" : "YES",
+         "state_num" : 1,
+         "opa_rate" : 0
+      },
+      {
+         "disk" : null,
+         "switch" : null,
+         "memcore" : 8192,
+         "gpu_count" : 0,
+         "wattmeter" : "MULTIPLE",
+         "diskpath" : null,
+         "ip" : "172.16.64.2",
+         "deploy" : "NO",
+         "available_upto" : 2147483647,
+         "suspended_jobs" : "NO",
+         "id" : 26,
+         "links" : [
+            {
+               "title" : "node",
+               "rel" : "member",
+               "href" : "//oarapi/resources/nodes/clusterc-2.fakesite.grid5000.fr"
+            },
+            {
+               "href" : "//oarapi/resources/26",
+               "rel" : "self"
+            },
+            {
+               "rel" : "collection",
+               "title" : "jobs",
+               "href" : "//oarapi/resources/26/jobs"
+            }
+         ],
+         "last_job_date" : 0,
+         "cluster_priority" : 201906,
+         "memnode" : 131072,
+         "memcpu" : 65536,
+         "next_state" : "UnChanged",
+         "opa_count" : 0,
+         "production" : "YES",
+         "ib" : "NO",
+         "ib_rate" : 0,
+         "virtual" : "ivt",
+         "network_address" : "clusterc-2.fakesite.grid5000.fr",
+         "desktop_computing" : "NO",
+         "gpudevice" : null,
+         "mic" : "NO",
+         "max_walltime" : 86400,
+         "gpu" : null,
+         "nodemodel" : "Dell PowerEdge T640",
+         "gpu_model" : null,
+         "maintenance" : "NO",
+         "host" : "clusterc-2.fakesite.grid5000.fr",
+         "cpucore" : 8,
+         "besteffort" : "YES",
+         "state_num" : 1,
+         "opa_rate" : 0,
+         "cluster" : "clusterc",
+         "cputype" : "Intel Xeon Silver 4110",
+         "myri_count" : 0,
+         "opa" : "NO",
+         "api_timestamp" : 1569605253,
+         "ib_count" : 0,
+         "state" : "Alive",
+         "cpuset" : 6,
+         "eth_rate" : 10,
+         "cpuarch" : "x86_64",
+         "disk_reservation_count" : 3,
+         "cpufreq" : "2.1",
+         "finaud_decision" : "NO",
+         "eth_count" : 1,
+         "last_available_upto" : 0,
+         "expiry_date" : 0,
+         "myri" : "NO",
+         "disktype" : "SATA",
+         "myri_rate" : 0,
+         "next_finaud_decision" : "NO",
+         "cpu" : 3,
+         "scheduler_priority" : 0,
+         "type" : "default",
+         "core" : 23,
+         "drain" : "NO"
+      },
+      {
+         "nodemodel" : "Dell PowerEdge T640",
+         "gpu" : null,
+         "max_walltime" : 86400,
+         "opa_rate" : 0,
+         "state_num" : 1,
+         "besteffort" : "YES",
+         "maintenance" : "NO",
+         "gpu_model" : null,
+         "host" : "clusterc-2.fakesite.grid5000.fr",
+         "cpucore" : 8,
+         "api_timestamp" : 1569605253,
+         "opa" : "NO",
+         "myri_count" : 0,
+         "cluster" : "clusterc",
+         "cputype" : "Intel Xeon Silver 4110",
+         "eth_rate" : 10,
+         "cpuarch" : "x86_64",
+         "cpuset" : 7,
+         "ib_count" : 0,
+         "state" : "Alive",
+         "eth_count" : 1,
+         "finaud_decision" : "NO",
+         "cpufreq" : "2.1",
+         "disk_reservation_count" : 3,
+         "expiry_date" : 0,
+         "last_available_upto" : 0,
+         "myri_rate" : 0,
+         "myri" : "NO",
+         "disktype" : "SATA",
+         "core" : 24,
+         "drain" : "NO",
+         "scheduler_priority" : 0,
+         "type" : "default",
+         "next_finaud_decision" : "NO",
+         "cpu" : 3,
+         "switch" : null,
+         "disk" : null,
+         "diskpath" : null,
+         "gpu_count" : 0,
+         "wattmeter" : "MULTIPLE",
+         "memcore" : 8192,
+         "suspended_jobs" : "NO",
+         "available_upto" : 2147483647,
+         "deploy" : "NO",
+         "ip" : "172.16.64.2",
+         "cluster_priority" : 201906,
+         "memnode" : 131072,
+         "last_job_date" : 0,
+         "links" : [
+            {
+               "href" : "//oarapi/resources/nodes/clusterc-2.fakesite.grid5000.fr",
+               "title" : "node",
+               "rel" : "member"
+            },
+            {
+               "rel" : "self",
+               "href" : "//oarapi/resources/27"
+            },
+            {
+               "href" : "//oarapi/resources/27/jobs",
+               "rel" : "collection",
+               "title" : "jobs"
+            }
+         ],
+         "id" : 27,
+         "opa_count" : 0,
+         "next_state" : "UnChanged",
+         "memcpu" : 65536,
+         "production" : "YES",
+         "ib" : "NO",
+         "network_address" : "clusterc-2.fakesite.grid5000.fr",
+         "virtual" : "ivt",
+         "ib_rate" : 0,
+         "mic" : "NO",
+         "gpudevice" : null,
+         "desktop_computing" : "NO"
+      },
+      {
+         "disktype" : "SATA",
+         "myri" : "NO",
+         "myri_rate" : 0,
+         "cpu" : 4,
+         "next_finaud_decision" : "NO",
+         "drain" : "NO",
+         "core" : 25,
+         "type" : "default",
+         "scheduler_priority" : 0,
+         "cpufreq" : "2.1",
+         "disk_reservation_count" : 3,
+         "eth_count" : 1,
+         "finaud_decision" : "NO",
+         "last_available_upto" : 0,
+         "expiry_date" : 0,
+         "myri_count" : 0,
+         "opa" : "NO",
+         "cputype" : "Intel Xeon Silver 4110",
+         "cluster" : "clusterc",
+         "api_timestamp" : 1569605253,
+         "cpuset" : 8,
+         "ib_count" : 0,
+         "state" : "Alive",
+         "cpuarch" : "x86_64",
+         "eth_rate" : 10,
+         "nodemodel" : "Dell PowerEdge T640",
+         "gpu" : null,
+         "max_walltime" : 86400,
+         "besteffort" : "YES",
+         "host" : "clusterc-2.fakesite.grid5000.fr",
+         "maintenance" : "NO",
+         "gpu_model" : null,
+         "cpucore" : 8,
+         "opa_rate" : 0,
+         "state_num" : 1,
+         "virtual" : "ivt",
+         "network_address" : "clusterc-2.fakesite.grid5000.fr",
+         "ib_rate" : 0,
+         "mic" : "NO",
+         "gpudevice" : null,
+         "desktop_computing" : "NO",
+         "next_state" : "UnChanged",
+         "memcpu" : 65536,
+         "opa_count" : 0,
+         "ib" : "NO",
+         "production" : "YES",
+         "ip" : "172.16.64.2",
+         "suspended_jobs" : "NO",
+         "available_upto" : 2147483647,
+         "deploy" : "NO",
+         "id" : 28,
+         "links" : [
+            {
+               "href" : "//oarapi/resources/nodes/clusterc-2.fakesite.grid5000.fr",
+               "title" : "node",
+               "rel" : "member"
+            },
+            {
+               "href" : "//oarapi/resources/28",
+               "rel" : "self"
+            },
+            {
+               "rel" : "collection",
+               "title" : "jobs",
+               "href" : "//oarapi/resources/28/jobs"
+            }
+         ],
+         "last_job_date" : 0,
+         "cluster_priority" : 201906,
+         "memnode" : 131072,
+         "disk" : null,
+         "switch" : null,
+         "wattmeter" : "MULTIPLE",
+         "gpu_count" : 0,
+         "memcore" : 8192,
+         "diskpath" : null
+      },
+      {
+         "next_finaud_decision" : "NO",
+         "cpu" : 4,
+         "core" : 26,
+         "drain" : "NO",
+         "type" : "default",
+         "scheduler_priority" : 0,
+         "myri" : "NO",
+         "disktype" : "SATA",
+         "myri_rate" : 0,
+         "last_available_upto" : 0,
+         "expiry_date" : 0,
+         "cpufreq" : "2.1",
+         "disk_reservation_count" : 3,
+         "eth_count" : 1,
+         "finaud_decision" : "NO",
+         "cpuset" : 9,
+         "state" : "Alive",
+         "ib_count" : 0,
+         "cpuarch" : "x86_64",
+         "eth_rate" : 10,
+         "myri_count" : 0,
+         "opa" : "NO",
+         "cputype" : "Intel Xeon Silver 4110",
+         "cluster" : "clusterc",
+         "api_timestamp" : 1569605253,
+         "besteffort" : "YES",
+         "maintenance" : "NO",
+         "gpu_model" : null,
+         "host" : "clusterc-2.fakesite.grid5000.fr",
+         "cpucore" : 8,
+         "opa_rate" : 0,
+         "state_num" : 1,
+         "nodemodel" : "Dell PowerEdge T640",
+         "max_walltime" : 86400,
+         "gpu" : null,
+         "mic" : "NO",
+         "desktop_computing" : "NO",
+         "gpudevice" : null,
+         "network_address" : "clusterc-2.fakesite.grid5000.fr",
+         "virtual" : "ivt",
+         "ib_rate" : 0,
+         "ib" : "NO",
+         "production" : "YES",
+         "next_state" : "UnChanged",
+         "memcpu" : 65536,
+         "opa_count" : 0,
+         "last_job_date" : 0,
+         "links" : [
+            {
+               "rel" : "member",
+               "title" : "node",
+               "href" : "//oarapi/resources/nodes/clusterc-2.fakesite.grid5000.fr"
+            },
+            {
+               "rel" : "self",
+               "href" : "//oarapi/resources/29"
+            },
+            {
+               "href" : "//oarapi/resources/29/jobs",
+               "rel" : "collection",
+               "title" : "jobs"
+            }
+         ],
+         "id" : 29,
+         "memnode" : 131072,
+         "cluster_priority" : 201906,
+         "ip" : "172.16.64.2",
+         "suspended_jobs" : "NO",
+         "available_upto" : 2147483647,
+         "deploy" : "NO",
+         "gpu_count" : 0,
+         "wattmeter" : "MULTIPLE",
+         "memcore" : 8192,
+         "diskpath" : null,
+         "disk" : null,
+         "switch" : null
+      },
+      {
+         "cpuset" : 10,
+         "ib_count" : 0,
+         "state" : "Alive",
+         "eth_rate" : 10,
+         "cpuarch" : "x86_64",
+         "opa" : "NO",
+         "myri_count" : 0,
+         "cluster" : "clusterc",
+         "cputype" : "Intel Xeon Silver 4110",
+         "api_timestamp" : 1569605253,
+         "besteffort" : "YES",
+         "maintenance" : "NO",
+         "host" : "clusterc-2.fakesite.grid5000.fr",
+         "cpucore" : 8,
+         "gpu_model" : null,
+         "opa_rate" : 0,
+         "state_num" : 1,
+         "nodemodel" : "Dell PowerEdge T640",
+         "gpu" : null,
+         "max_walltime" : 86400,
+         "cpu" : 4,
+         "next_finaud_decision" : "NO",
+         "core" : 27,
+         "drain" : "NO",
+         "type" : "default",
+         "scheduler_priority" : 0,
+         "disktype" : "SATA",
+         "myri" : "NO",
+         "myri_rate" : 0,
+         "last_available_upto" : 0,
+         "expiry_date" : 0,
+         "cpufreq" : "2.1",
+         "disk_reservation_count" : 3,
+         "eth_count" : 1,
+         "finaud_decision" : "NO",
+         "last_job_date" : 0,
+         "links" : [
+            {
+               "href" : "//oarapi/resources/nodes/clusterc-2.fakesite.grid5000.fr",
+               "title" : "node",
+               "rel" : "member"
+            },
+            {
+               "rel" : "self",
+               "href" : "//oarapi/resources/30"
+            },
+            {
+               "href" : "//oarapi/resources/30/jobs",
+               "rel" : "collection",
+               "title" : "jobs"
+            }
+         ],
+         "id" : 30,
+         "cluster_priority" : 201906,
+         "memnode" : 131072,
+         "ip" : "172.16.64.2",
+         "suspended_jobs" : "NO",
+         "available_upto" : 2147483647,
+         "deploy" : "NO",
+         "wattmeter" : "MULTIPLE",
+         "gpu_count" : 0,
+         "memcore" : 8192,
+         "diskpath" : null,
+         "disk" : null,
+         "switch" : null,
+         "mic" : "NO",
+         "gpudevice" : null,
+         "desktop_computing" : "NO",
+         "virtual" : "ivt",
+         "network_address" : "clusterc-2.fakesite.grid5000.fr",
+         "ib_rate" : 0,
+         "ib" : "NO",
+         "production" : "YES",
+         "next_state" : "UnChanged",
+         "memcpu" : 65536,
+         "opa_count" : 0
+      },
+      {
+         "expiry_date" : 0,
+         "last_available_upto" : 0,
+         "eth_count" : 1,
+         "finaud_decision" : "NO",
+         "cpufreq" : "2.1",
+         "disk_reservation_count" : 3,
+         "core" : 28,
+         "drain" : "NO",
+         "type" : "default",
+         "scheduler_priority" : 0,
+         "next_finaud_decision" : "NO",
+         "cpu" : 4,
+         "myri_rate" : 0,
+         "myri" : "NO",
+         "disktype" : "SATA",
+         "opa_rate" : 0,
+         "state_num" : 1,
+         "besteffort" : "YES",
+         "maintenance" : "NO",
+         "host" : "clusterc-2.fakesite.grid5000.fr",
+         "gpu_model" : null,
+         "cpucore" : 8,
+         "nodemodel" : "Dell PowerEdge T640",
+         "max_walltime" : 86400,
+         "gpu" : null,
+         "cpuarch" : "x86_64",
+         "eth_rate" : 10,
+         "cpuset" : 11,
+         "state" : "Alive",
+         "ib_count" : 0,
+         "api_timestamp" : 1569605253,
+         "myri_count" : 0,
+         "opa" : "NO",
+         "cluster" : "clusterc",
+         "cputype" : "Intel Xeon Silver 4110",
+         "ib" : "NO",
+         "production" : "YES",
+         "opa_count" : 0,
+         "next_state" : "UnChanged",
+         "memcpu" : 65536,
+         "mic" : "NO",
+         "gpudevice" : null,
+         "desktop_computing" : "NO",
+         "network_address" : "clusterc-2.fakesite.grid5000.fr",
+         "virtual" : "ivt",
+         "ib_rate" : 0,
+         "diskpath" : null,
+         "wattmeter" : "MULTIPLE",
+         "gpu_count" : 0,
+         "memcore" : 8192,
+         "switch" : null,
+         "disk" : null,
+         "cluster_priority" : 201906,
+         "memnode" : 131072,
+         "links" : [
+            {
+               "href" : "//oarapi/resources/nodes/clusterc-2.fakesite.grid5000.fr",
+               "title" : "node",
+               "rel" : "member"
+            },
+            {
+               "rel" : "self",
+               "href" : "//oarapi/resources/31"
+            },
+            {
+               "href" : "//oarapi/resources/31/jobs",
+               "rel" : "collection",
+               "title" : "jobs"
+            }
+         ],
+         "id" : 31,
+         "last_job_date" : 0,
+         "suspended_jobs" : "NO",
+         "available_upto" : 2147483647,
+         "deploy" : "NO",
+         "ip" : "172.16.64.2"
+      },
+      {
+         "ib" : "NO",
+         "production" : "YES",
+         "memcpu" : 65536,
+         "next_state" : "UnChanged",
+         "opa_count" : 0,
+         "gpudevice" : null,
+         "desktop_computing" : "NO",
+         "mic" : "NO",
+         "ib_rate" : 0,
+         "network_address" : "clusterc-2.fakesite.grid5000.fr",
+         "virtual" : "ivt",
+         "memcore" : 8192,
+         "wattmeter" : "MULTIPLE",
+         "gpu_count" : 0,
+         "diskpath" : null,
+         "disk" : null,
+         "switch" : null,
+         "id" : 32,
+         "links" : [
+            {
+               "title" : "node",
+               "rel" : "member",
+               "href" : "//oarapi/resources/nodes/clusterc-2.fakesite.grid5000.fr"
+            },
+            {
+               "rel" : "self",
+               "href" : "//oarapi/resources/32"
+            },
+            {
+               "rel" : "collection",
+               "title" : "jobs",
+               "href" : "//oarapi/resources/32/jobs"
+            }
+         ],
+         "last_job_date" : 0,
+         "memnode" : 131072,
+         "cluster_priority" : 201906,
+         "ip" : "172.16.64.2",
+         "available_upto" : 2147483647,
+         "deploy" : "NO",
+         "suspended_jobs" : "NO",
+         "last_available_upto" : 0,
+         "expiry_date" : 0,
+         "disk_reservation_count" : 3,
+         "cpufreq" : "2.1",
+         "finaud_decision" : "NO",
+         "eth_count" : 1,
+         "cpu" : 4,
+         "next_finaud_decision" : "NO",
+         "scheduler_priority" : 0,
+         "type" : "default",
+         "drain" : "NO",
+         "core" : 29,
+         "disktype" : "SATA",
+         "myri" : "NO",
+         "myri_rate" : 0,
+         "host" : "clusterc-2.fakesite.grid5000.fr",
+         "maintenance" : "NO",
+         "gpu_model" : null,
+         "cpucore" : 8,
+         "besteffort" : "YES",
+         "state_num" : 1,
+         "opa_rate" : 0,
+         "max_walltime" : 86400,
+         "gpu" : null,
+         "nodemodel" : "Dell PowerEdge T640",
+         "state" : "Alive",
+         "ib_count" : 0,
+         "cpuset" : 12,
+         "cpuarch" : "x86_64",
+         "eth_rate" : 10,
+         "cputype" : "Intel Xeon Silver 4110",
+         "cluster" : "clusterc",
+         "opa" : "NO",
+         "myri_count" : 0,
+         "api_timestamp" : 1569605253
+      },
+      {
+         "ib_rate" : 0,
+         "network_address" : "clusterc-2.fakesite.grid5000.fr",
+         "virtual" : "ivt",
+         "gpudevice" : null,
+         "desktop_computing" : "NO",
+         "mic" : "NO",
+         "opa_count" : 0,
+         "memcpu" : 65536,
+         "next_state" : "UnChanged",
+         "production" : "YES",
+         "ib" : "NO",
+         "deploy" : "NO",
+         "available_upto" : 2147483647,
+         "suspended_jobs" : "NO",
+         "ip" : "172.16.64.2",
+         "cluster_priority" : 201906,
+         "memnode" : 131072,
+         "links" : [
+            {
+               "title" : "node",
+               "rel" : "member",
+               "href" : "//oarapi/resources/nodes/clusterc-2.fakesite.grid5000.fr"
+            },
+            {
+               "rel" : "self",
+               "href" : "//oarapi/resources/33"
+            },
+            {
+               "rel" : "collection",
+               "title" : "jobs",
+               "href" : "//oarapi/resources/33/jobs"
+            }
+         ],
+         "last_job_date" : 0,
+         "id" : 33,
+         "switch" : null,
+         "disk" : null,
+         "diskpath" : null,
+         "memcore" : 8192,
+         "wattmeter" : "MULTIPLE",
+         "gpu_count" : 0,
+         "myri_rate" : 0,
+         "myri" : "NO",
+         "disktype" : "SATA",
+         "scheduler_priority" : 0,
+         "type" : "default",
+         "drain" : "NO",
+         "core" : 30,
+         "next_finaud_decision" : "NO",
+         "cpu" : 4,
+         "finaud_decision" : "NO",
+         "eth_count" : 1,
+         "disk_reservation_count" : 3,
+         "cpufreq" : "2.1",
+         "expiry_date" : 0,
+         "last_available_upto" : 0,
+         "api_timestamp" : 1569605253,
+         "cputype" : "Intel Xeon Silver 4110",
+         "cluster" : "clusterc",
+         "opa" : "NO",
+         "myri_count" : 0,
+         "eth_rate" : 10,
+         "cpuarch" : "x86_64",
+         "ib_count" : 0,
+         "state" : "Alive",
+         "cpuset" : 13,
+         "gpu" : null,
+         "max_walltime" : 86400,
+         "nodemodel" : "Dell PowerEdge T640",
+         "state_num" : 1,
+         "opa_rate" : 0,
+         "maintenance" : "NO",
+         "gpu_model" : null,
+         "host" : "clusterc-2.fakesite.grid5000.fr",
+         "cpucore" : 8,
+         "besteffort" : "YES"
+      },
+      {
+         "expiry_date" : 0,
+         "last_available_upto" : 0,
+         "eth_count" : 1,
+         "finaud_decision" : "NO",
+         "cpufreq" : "2.1",
+         "disk_reservation_count" : 3,
+         "core" : 31,
+         "drain" : "NO",
+         "type" : "default",
+         "scheduler_priority" : 0,
+         "cpu" : 4,
+         "next_finaud_decision" : "NO",
+         "myri_rate" : 0,
+         "disktype" : "SATA",
+         "myri" : "NO",
+         "opa_rate" : 0,
+         "state_num" : 1,
+         "besteffort" : "YES",
+         "maintenance" : "NO",
+         "cpucore" : 8,
+         "host" : "clusterc-2.fakesite.grid5000.fr",
+         "gpu_model" : null,
+         "nodemodel" : "Dell PowerEdge T640",
+         "gpu" : null,
+         "max_walltime" : 86400,
+         "eth_rate" : 10,
+         "cpuarch" : "x86_64",
+         "cpuset" : 14,
+         "state" : "Alive",
+         "ib_count" : 0,
+         "api_timestamp" : 1569605253,
+         "myri_count" : 0,
+         "opa" : "NO",
+         "cputype" : "Intel Xeon Silver 4110",
+         "cluster" : "clusterc",
+         "production" : "YES",
+         "ib" : "NO",
+         "opa_count" : 0,
+         "next_state" : "UnChanged",
+         "memcpu" : 65536,
+         "mic" : "NO",
+         "gpudevice" : null,
+         "desktop_computing" : "NO",
+         "virtual" : "ivt",
+         "network_address" : "clusterc-2.fakesite.grid5000.fr",
+         "ib_rate" : 0,
+         "diskpath" : null,
+         "gpu_count" : 0,
+         "wattmeter" : "MULTIPLE",
+         "memcore" : 8192,
+         "switch" : null,
+         "disk" : null,
+         "memnode" : 131072,
+         "cluster_priority" : 201906,
+         "links" : [
+            {
+               "href" : "//oarapi/resources/nodes/clusterc-2.fakesite.grid5000.fr",
+               "rel" : "member",
+               "title" : "node"
+            },
+            {
+               "href" : "//oarapi/resources/34",
+               "rel" : "self"
+            },
+            {
+               "rel" : "collection",
+               "title" : "jobs",
+               "href" : "//oarapi/resources/34/jobs"
+            }
+         ],
+         "id" : 34,
+         "last_job_date" : 0,
+         "suspended_jobs" : "NO",
+         "deploy" : "NO",
+         "available_upto" : 2147483647,
+         "ip" : "172.16.64.2"
+      },
+      {
+         "opa" : "NO",
+         "myri_count" : 0,
+         "cluster" : "clusterc",
+         "cputype" : "Intel Xeon Silver 4110",
+         "api_timestamp" : 1569605253,
+         "cpuset" : 15,
+         "ib_count" : 0,
+         "state" : "Alive",
+         "cpuarch" : "x86_64",
+         "eth_rate" : 10,
+         "nodemodel" : "Dell PowerEdge T640",
+         "gpu" : null,
+         "max_walltime" : 86400,
+         "besteffort" : "YES",
+         "maintenance" : "NO",
+         "cpucore" : 8,
+         "gpu_model" : null,
+         "host" : "clusterc-2.fakesite.grid5000.fr",
+         "opa_rate" : 0,
+         "state_num" : 1,
+         "myri" : "NO",
+         "disktype" : "SATA",
+         "myri_rate" : 0,
+         "next_finaud_decision" : "NO",
+         "cpu" : 4,
+         "core" : 32,
+         "drain" : "NO",
+         "scheduler_priority" : 0,
+         "type" : "default",
+         "cpufreq" : "2.1",
+         "disk_reservation_count" : 3,
+         "eth_count" : 1,
+         "finaud_decision" : "NO",
+         "last_available_upto" : 0,
+         "expiry_date" : 0,
+         "ip" : "172.16.64.2",
+         "suspended_jobs" : "NO",
+         "available_upto" : 2147483647,
+         "deploy" : "NO",
+         "id" : 35,
+         "links" : [
+            {
+               "title" : "node",
+               "rel" : "member",
+               "href" : "//oarapi/resources/nodes/clusterc-2.fakesite.grid5000.fr"
+            },
+            {
+               "rel" : "self",
+               "href" : "//oarapi/resources/35"
+            },
+            {
+               "href" : "//oarapi/resources/35/jobs",
+               "rel" : "collection",
+               "title" : "jobs"
+            }
+         ],
+         "last_job_date" : 0,
+         "memnode" : 131072,
+         "cluster_priority" : 201906,
+         "disk" : null,
+         "switch" : null,
+         "gpu_count" : 0,
+         "wattmeter" : "MULTIPLE",
+         "memcore" : 8192,
+         "diskpath" : null,
+         "virtual" : "ivt",
+         "network_address" : "clusterc-2.fakesite.grid5000.fr",
+         "ib_rate" : 0,
+         "mic" : "NO",
+         "gpudevice" : null,
+         "desktop_computing" : "NO",
+         "memcpu" : 65536,
+         "next_state" : "UnChanged",
+         "opa_count" : 0,
+         "ib" : "NO",
+         "production" : "YES"
+      },
+      {
+         "opa_rate" : null,
+         "state_num" : 1,
+         "besteffort" : "YES",
+         "gpu_model" : null,
+         "maintenance" : "NO",
+         "cpucore" : null,
+         "host" : "clusterc-2.fakesite.grid5000.fr",
+         "nodemodel" : null,
+         "max_walltime" : null,
+         "gpu" : null,
+         "eth_rate" : null,
+         "cpuarch" : null,
+         "cpuset" : -1,
+         "ib_count" : null,
+         "state" : "Alive",
+         "api_timestamp" : 1569605253,
+         "myri_count" : null,
+         "opa" : null,
+         "cluster" : "clusterc",
+         "cputype" : null,
+         "expiry_date" : 0,
+         "last_available_upto" : 0,
+         "eth_count" : null,
+         "finaud_decision" : "NO",
+         "cpufreq" : null,
+         "disk_reservation_count" : null,
+         "drain" : "NO",
+         "core" : null,
+         "type" : "disk",
+         "scheduler_priority" : 0,
+         "cpu" : null,
+         "next_finaud_decision" : "NO",
+         "myri_rate" : null,
+         "myri" : null,
+         "disktype" : null,
+         "diskpath" : "/dev/disk/by-path/pci-0000:02:00.0-scsi-0:0:1:0",
+         "gpu_count" : null,
+         "wattmeter" : null,
+         "memcore" : null,
+         "switch" : null,
+         "disk" : "sdb.clusterc-2",
+         "cluster_priority" : null,
+         "memnode" : null,
+         "links" : [
+            {
+               "title" : "node",
+               "rel" : "member",
+               "href" : "//oarapi/resources/nodes/"
+            },
+            {
+               "rel" : "self",
+               "href" : "//oarapi/resources/36"
+            },
+            {
+               "href" : "//oarapi/resources/36/jobs",
+               "rel" : "collection",
+               "title" : "jobs"
+            }
+         ],
+         "id" : 36,
+         "last_job_date" : 0,
+         "suspended_jobs" : "NO",
+         "available_upto" : 0,
+         "deploy" : "YES",
+         "ip" : null,
+         "ib" : null,
+         "production" : "YES",
+         "opa_count" : null,
+         "next_state" : "UnChanged",
+         "memcpu" : null,
+         "mic" : null,
+         "gpudevice" : null,
+         "desktop_computing" : "NO",
+         "virtual" : null,
+         "network_address" : "",
+         "ib_rate" : null
+      },
+      {
+         "gpu" : null,
+         "max_walltime" : null,
+         "nodemodel" : null,
+         "state_num" : 1,
+         "opa_rate" : null,
+         "gpu_model" : null,
+         "maintenance" : "NO",
+         "cpucore" : null,
+         "host" : "clusterc-2.fakesite.grid5000.fr",
+         "besteffort" : "YES",
+         "api_timestamp" : 1569605253,
+         "cluster" : "clusterc",
+         "cputype" : null,
+         "opa" : null,
+         "myri_count" : null,
+         "eth_rate" : null,
+         "cpuarch" : null,
+         "state" : "Alive",
+         "ib_count" : null,
+         "cpuset" : -1,
+         "finaud_decision" : "NO",
+         "eth_count" : null,
+         "disk_reservation_count" : null,
+         "cpufreq" : null,
+         "expiry_date" : 0,
+         "last_available_upto" : 0,
+         "myri_rate" : null,
+         "disktype" : null,
+         "myri" : null,
+         "scheduler_priority" : 0,
+         "type" : "disk",
+         "drain" : "NO",
+         "core" : null,
+         "next_finaud_decision" : "NO",
+         "cpu" : null,
+         "switch" : null,
+         "disk" : "sdc.clusterc-2",
+         "diskpath" : "/dev/disk/by-path/pci-0000:02:00.0-scsi-0:0:2:0",
+         "memcore" : null,
+         "wattmeter" : null,
+         "gpu_count" : null,
+         "deploy" : "YES",
+         "available_upto" : 0,
+         "suspended_jobs" : "NO",
+         "ip" : null,
+         "memnode" : null,
+         "cluster_priority" : null,
+         "links" : [
+            {
+               "rel" : "member",
+               "title" : "node",
+               "href" : "//oarapi/resources/nodes/"
+            },
+            {
+               "href" : "//oarapi/resources/37",
+               "rel" : "self"
+            },
+            {
+               "rel" : "collection",
+               "title" : "jobs",
+               "href" : "//oarapi/resources/37/jobs"
+            }
+         ],
+         "last_job_date" : 0,
+         "id" : 37,
+         "opa_count" : null,
+         "next_state" : "UnChanged",
+         "memcpu" : null,
+         "production" : "YES",
+         "ib" : null,
+         "ib_rate" : null,
+         "virtual" : null,
+         "network_address" : "",
+         "gpudevice" : null,
+         "desktop_computing" : "NO",
+         "mic" : null
+      },
+      {
+         "cputype" : null,
+         "cluster" : "clusterc",
+         "myri_count" : null,
+         "opa" : null,
+         "api_timestamp" : 1569605253,
+         "ib_count" : null,
+         "state" : "Alive",
+         "cpuset" : -1,
+         "eth_rate" : null,
+         "cpuarch" : null,
+         "gpu" : null,
+         "max_walltime" : null,
+         "nodemodel" : null,
+         "host" : "clusterc-2.fakesite.grid5000.fr",
+         "maintenance" : "NO",
+         "gpu_model" : null,
+         "cpucore" : null,
+         "besteffort" : "YES",
+         "state_num" : 1,
+         "opa_rate" : null,
+         "myri" : null,
+         "disktype" : null,
+         "myri_rate" : null,
+         "next_finaud_decision" : "NO",
+         "cpu" : null,
+         "scheduler_priority" : 0,
+         "type" : "disk",
+         "core" : null,
+         "drain" : "NO",
+         "disk_reservation_count" : null,
+         "cpufreq" : null,
+         "finaud_decision" : "NO",
+         "eth_count" : null,
+         "last_available_upto" : 0,
+         "expiry_date" : 0,
+         "ip" : null,
+         "deploy" : "YES",
+         "available_upto" : 0,
+         "suspended_jobs" : "NO",
+         "id" : 38,
+         "links" : [
+            {
+               "href" : "//oarapi/resources/nodes/",
+               "title" : "node",
+               "rel" : "member"
+            },
+            {
+               "rel" : "self",
+               "href" : "//oarapi/resources/38"
+            },
+            {
+               "rel" : "collection",
+               "title" : "jobs",
+               "href" : "//oarapi/resources/38/jobs"
+            }
+         ],
+         "last_job_date" : 0,
+         "memnode" : null,
+         "cluster_priority" : null,
+         "disk" : "sdd.clusterc-2",
+         "switch" : null,
+         "memcore" : null,
+         "gpu_count" : null,
+         "wattmeter" : null,
+         "diskpath" : "/dev/disk/by-path/pci-0000:02:00.0-scsi-0:0:3:0",
+         "ib_rate" : null,
+         "network_address" : "",
+         "virtual" : null,
+         "gpudevice" : null,
+         "desktop_computing" : "NO",
+         "mic" : null,
+         "memcpu" : null,
+         "next_state" : "UnChanged",
+         "opa_count" : null,
+         "production" : "YES",
+         "ib" : null
+      }
+   ],
+   "api_timestamp" : 1569605253
+}
+
diff --git a/spec/stub_oar_properties/dump_oar_api_configured_server_misconfigured_gpu.json b/spec/stub_oar_properties/dump_oar_api_configured_server_misconfigured_gpu.json
new file mode 100644
index 0000000000000000000000000000000000000000..7bc0597f21eafeda831b9fa676a4ff5a7ba3aab4
--- /dev/null
+++ b/spec/stub_oar_properties/dump_oar_api_configured_server_misconfigured_gpu.json
@@ -0,0 +1,2446 @@
+{
+  "offset": 0,
+  "api_timestamp": 1568902577,
+  "items": [
+    {
+      "finaud_decision": "NO",
+      "last_available_upto": 0,
+      "cpucore": 8,
+      "scheduler_priority": 0,
+      "api_timestamp": 1568902577,
+      "myri_rate": 0,
+      "expiry_date": 0,
+      "nodemodel": "Dell PowerEdge T640",
+      "disktype": "SATA",
+      "cluster": "clustera",
+      "state": "Alive",
+      "gpu": 1,
+      "besteffort": "YES",
+      "ib_rate": 0,
+      "available_upto": 2147483647,
+      "cpuset": 0,
+      "links": [
+        {
+          "title": "node",
+          "href": "//oarapi/resources/nodes/clustera-1.fakesite.grid5000.fr",
+          "rel": "member"
+        },
+        {
+          "rel": "self",
+          "href": "//oarapi/resources/1"
+        },
+        {
+          "href": "//oarapi/resources/1/jobs",
+          "title": "jobs",
+          "rel": "collection"
+        }
+      ],
+      "production": "YES",
+      "type": "default",
+      "opa_count": 0,
+      "id": 1,
+      "opa_rate": 0,
+      "desktop_computing": "NO",
+      "memnode": 131072,
+      "opa": "NO",
+      "eth_rate": 10,
+      "last_job_date": 0,
+      "wattmeter": "MULTIPLE",
+      "next_finaud_decision": "NO",
+      "host": "clustera-1.fakesite.grid5000.fr",
+      "cpuarch": "x86_64",
+      "gpudevice": 0,
+      "next_state": "UnChanged",
+      "maintenance": "NO",
+      "gpu_count": 4,
+      "cluster_priority": 201906,
+      "ib_count": 0,
+      "gpu_model": "GeForce RTX 2080 Ti",
+      "mic": "NO",
+      "switch": "gw-fakesite",
+      "eth_count": 1,
+      "drain": "NO",
+      "cpu": 1,
+      "cputype": "Intel Xeon Silver 4110",
+      "virtual": "ivt",
+      "cpufreq": "2.1",
+      "memcore": 8192,
+      "deploy": "NO",
+      "memcpu": 65536,
+      "myri_count": 0,
+      "ip": "172.16.64.1",
+      "core": 1,
+      "myri": "NO",
+      "max_walltime": 86400,
+      "network_address": "clustera-1.fakesite.grid5000.fr",
+      "state_num": 1,
+      "ib": "NO",
+      "disk_reservation_count": 0,
+      "suspended_jobs": "NO"
+    },
+    {
+      "last_job_date": 0,
+      "eth_rate": 10,
+      "opa": "NO",
+      "memnode": 131072,
+      "desktop_computing": "NO",
+      "opa_rate": 0,
+      "id": 2,
+      "opa_count": 0,
+      "type": "default",
+      "production": "YES",
+      "links": [
+        {
+          "rel": "member",
+          "title": "node",
+          "href": "//oarapi/resources/nodes/clustera-1.fakesite.grid5000.fr"
+        },
+        {
+          "href": "//oarapi/resources/2",
+          "rel": "self"
+        },
+        {
+          "title": "jobs",
+          "href": "//oarapi/resources/2/jobs",
+          "rel": "collection"
+        }
+      ],
+      "cpuset": 1,
+      "available_upto": 2147483647,
+      "ib_rate": 0,
+      "besteffort": "YES",
+      "gpu": 1,
+      "state": "Alive",
+      "disktype": "SATA",
+      "cluster": "clustera",
+      "expiry_date": 0,
+      "nodemodel": "Dell PowerEdge T640",
+      "myri_rate": 0,
+      "api_timestamp": 1568902577,
+      "cpucore": 8,
+      "scheduler_priority": 0,
+      "last_available_upto": 0,
+      "finaud_decision": "NO",
+      "suspended_jobs": "NO",
+      "disk_reservation_count": 0,
+      "ib": "NO",
+      "network_address": "clustera-1.fakesite.grid5000.fr",
+      "state_num": 1,
+      "max_walltime": 86400,
+      "myri": "NO",
+      "core": 2,
+      "myri_count": 0,
+      "ip": "172.16.64.1",
+      "memcpu": 65536,
+      "deploy": "NO",
+      "cpufreq": "2.1",
+      "memcore": 8192,
+      "virtual": "ivt",
+      "cputype": "Intel Xeon Silver 4110",
+      "cpu": 1,
+      "drain": "NO",
+      "eth_count": 1,
+      "switch": "gw-fakesite",
+      "mic": "NO",
+      "gpu_model": "GeForce RTX 2080 Ti",
+      "ib_count": 0,
+      "cluster_priority": 201906,
+      "gpu_count": 4,
+      "maintenance": "NO",
+      "next_state": "UnChanged",
+      "gpudevice": 0,
+      "cpuarch": "x86_64",
+      "host": "clustera-1.fakesite.grid5000.fr",
+      "next_finaud_decision": "NO",
+      "wattmeter": "MULTIPLE"
+    },
+    {
+      "myri": "NO",
+      "max_walltime": 86400,
+      "myri_count": 0,
+      "core": 3,
+      "ip": "172.16.64.1",
+      "suspended_jobs": "NO",
+      "disk_reservation_count": 0,
+      "ib": "NO",
+      "network_address": "clustera-1.fakesite.grid5000.fr",
+      "state_num": 1,
+      "cputype": "Intel Xeon Silver 4110",
+      "virtual": "ivt",
+      "cpu": 1,
+      "drain": "NO",
+      "memcpu": 65536,
+      "deploy": "NO",
+      "memcore": 8192,
+      "cpufreq": "2.1",
+      "mic": "NO",
+      "gpu_model": "GeForce RTX 2080 Ti",
+      "ib_count": 0,
+      "eth_count": 1,
+      "switch": "gw-fakesite",
+      "gpudevice": 0,
+      "cpuarch": "x86_64",
+      "host": "clustera-1.fakesite.grid5000.fr",
+      "next_finaud_decision": "NO",
+      "wattmeter": "MULTIPLE",
+      "cluster_priority": 201906,
+      "gpu_count": 4,
+      "maintenance": "NO",
+      "next_state": "UnChanged",
+      "memnode": 131072,
+      "desktop_computing": "NO",
+      "opa_rate": 0,
+      "last_job_date": 0,
+      "eth_rate": 10,
+      "opa": "NO",
+      "cpuset": 2,
+      "links": [
+        {
+          "title": "node",
+          "href": "//oarapi/resources/nodes/clustera-1.fakesite.grid5000.fr",
+          "rel": "member"
+        },
+        {
+          "rel": "self",
+          "href": "//oarapi/resources/3"
+        },
+        {
+          "title": "jobs",
+          "href": "//oarapi/resources/3/jobs",
+          "rel": "collection"
+        }
+      ],
+      "available_upto": 2147483647,
+      "ib_rate": 0,
+      "besteffort": "YES",
+      "opa_count": 0,
+      "id": 3,
+      "type": "default",
+      "production": "YES",
+      "expiry_date": 0,
+      "nodemodel": "Dell PowerEdge T640",
+      "gpu": 1,
+      "state": "Alive",
+      "cluster": "clustera",
+      "disktype": "SATA",
+      "last_available_upto": 0,
+      "finaud_decision": "NO",
+      "myri_rate": 0,
+      "api_timestamp": 1568902577,
+      "cpucore": 8,
+      "scheduler_priority": 0
+    },
+    {
+      "cpu": 1,
+      "virtual": "ivt",
+      "cputype": "Intel Xeon Silver 4110",
+      "drain": "NO",
+      "memcpu": 65536,
+      "memcore": 8192,
+      "cpufreq": "2.1",
+      "deploy": "NO",
+      "max_walltime": 86400,
+      "myri": "NO",
+      "ip": "172.16.64.1",
+      "myri_count": 0,
+      "core": 4,
+      "ib": "NO",
+      "disk_reservation_count": 0,
+      "suspended_jobs": "NO",
+      "network_address": "clustera-1.fakesite.grid5000.fr",
+      "state_num": 1,
+      "host": "clustera-1.fakesite.grid5000.fr",
+      "cpuarch": "x86_64",
+      "gpudevice": 0,
+      "wattmeter": "MULTIPLE",
+      "next_finaud_decision": "NO",
+      "maintenance": "NO",
+      "cluster_priority": 201906,
+      "gpu_count": 4,
+      "next_state": "UnChanged",
+      "mic": "NO",
+      "ib_count": 0,
+      "gpu_model": "GeForce RTX 2080 Ti",
+      "eth_count": 1,
+      "switch": "gw-fakesite",
+      "available_upto": 2147483647,
+      "links": [
+        {
+          "title": "node",
+          "href": "//oarapi/resources/nodes/clustera-1.fakesite.grid5000.fr",
+          "rel": "member"
+        },
+        {
+          "href": "//oarapi/resources/4",
+          "rel": "self"
+        },
+        {
+          "href": "//oarapi/resources/4/jobs",
+          "title": "jobs",
+          "rel": "collection"
+        }
+      ],
+      "cpuset": 3,
+      "besteffort": "YES",
+      "ib_rate": 0,
+      "id": 4,
+      "opa_count": 0,
+      "production": "YES",
+      "type": "default",
+      "desktop_computing": "NO",
+      "memnode": 131072,
+      "opa_rate": 0,
+      "last_job_date": 0,
+      "eth_rate": 10,
+      "opa": "NO",
+      "last_available_upto": 0,
+      "finaud_decision": "NO",
+      "api_timestamp": 1568902577,
+      "myri_rate": 0,
+      "scheduler_priority": 0,
+      "cpucore": 8,
+      "expiry_date": 0,
+      "nodemodel": "Dell PowerEdge T640",
+      "gpu": 1,
+      "disktype": "SATA",
+      "cluster": "clustera",
+      "state": "Alive"
+    },
+    {
+      "opa": "NO",
+      "eth_rate": 10,
+      "last_job_date": 0,
+      "opa_rate": 0,
+      "memnode": 131072,
+      "desktop_computing": "NO",
+      "type": "default",
+      "production": "YES",
+      "opa_count": 0,
+      "id": 5,
+      "ib_rate": 0,
+      "besteffort": "YES",
+      "links": [
+        {
+          "rel": "member",
+          "href": "//oarapi/resources/nodes/clustera-1.fakesite.grid5000.fr",
+          "title": "node"
+        },
+        {
+          "rel": "self",
+          "href": "//oarapi/resources/5"
+        },
+        {
+          "rel": "collection",
+          "title": "jobs",
+          "href": "//oarapi/resources/5/jobs"
+        }
+      ],
+      "cpuset": 4,
+      "available_upto": 2147483647,
+      "state": "Alive",
+      "cluster": "clustera",
+      "disktype": "SATA",
+      "gpu": 2,
+      "nodemodel": "Dell PowerEdge T640",
+      "expiry_date": 0,
+      "cpucore": 8,
+      "scheduler_priority": 0,
+      "myri_rate": 0,
+      "api_timestamp": 1568902577,
+      "finaud_decision": "NO",
+      "last_available_upto": 0,
+      "state_num": 1,
+      "network_address": "clustera-1.fakesite.grid5000.fr",
+      "suspended_jobs": "NO",
+      "ib": "NO",
+      "disk_reservation_count": 0,
+      "myri_count": 0,
+      "ip": "172.16.64.1",
+      "core": 5,
+      "myri": "NO",
+      "max_walltime": 86400,
+      "deploy": "NO",
+      "memcore": 8192,
+      "cpufreq": "2.1",
+      "memcpu": 65536,
+      "drain": "NO",
+      "cputype": "Intel Xeon Silver 4110",
+      "virtual": "ivt",
+      "cpu": 1,
+      "switch": "gw-fakesite",
+      "eth_count": 1,
+      "gpu_model": "GeForce RTX 2080 Ti",
+      "ib_count": 0,
+      "mic": "NO",
+      "next_state": "UnChanged",
+      "cluster_priority": 201906,
+      "gpu_count": 4,
+      "maintenance": "NO",
+      "next_finaud_decision": "NO",
+      "wattmeter": "MULTIPLE",
+      "gpudevice": 1,
+      "cpuarch": "x86_64",
+      "host": "clustera-1.fakesite.grid5000.fr"
+    },
+    {
+      "opa_count": 0,
+      "id": 6,
+      "type": "default",
+      "production": "YES",
+      "links": [
+        {
+          "rel": "member",
+          "href": "//oarapi/resources/nodes/clustera-1.fakesite.grid5000.fr",
+          "title": "node"
+        },
+        {
+          "href": "//oarapi/resources/6",
+          "rel": "self"
+        },
+        {
+          "rel": "collection",
+          "title": "jobs",
+          "href": "//oarapi/resources/6/jobs"
+        }
+      ],
+      "cpuset": 5,
+      "available_upto": 2147483647,
+      "ib_rate": 0,
+      "besteffort": "YES",
+      "last_job_date": 0,
+      "eth_rate": 10,
+      "opa": "NO",
+      "memnode": 131072,
+      "desktop_computing": "NO",
+      "opa_rate": 0,
+      "myri_rate": 0,
+      "api_timestamp": 1568902577,
+      "scheduler_priority": 0,
+      "cpucore": 8,
+      "last_available_upto": 0,
+      "finaud_decision": "NO",
+      "gpu": 2,
+      "state": "Alive",
+      "disktype": "SATA",
+      "cluster": "clustera",
+      "expiry_date": 0,
+      "nodemodel": "Dell PowerEdge T640",
+      "memcpu": 65536,
+      "deploy": "NO",
+      "cpufreq": "2.1",
+      "memcore": 8192,
+      "virtual": "ivt",
+      "cputype": "Intel Xeon Silver 4110",
+      "cpu": 1,
+      "drain": "NO",
+      "suspended_jobs": "NO",
+      "disk_reservation_count": 0,
+      "ib": "NO",
+      "state_num": 1,
+      "network_address": "clustera-1.fakesite.grid5000.fr",
+      "myri": "NO",
+      "max_walltime": 86400,
+      "myri_count": 0,
+      "ip": "172.16.64.1",
+      "core": 6,
+      "gpu_count": 4,
+      "cluster_priority": 201906,
+      "maintenance": "NO",
+      "next_state": "UnChanged",
+      "gpudevice": 1,
+      "host": "clustera-1.fakesite.grid5000.fr",
+      "cpuarch": "x86_64",
+      "wattmeter": "MULTIPLE",
+      "next_finaud_decision": "NO",
+      "eth_count": 1,
+      "switch": "gw-fakesite",
+      "mic": "NO",
+      "gpu_model": "GeForce RTX 2080 Ti",
+      "ib_count": 0
+    },
+    {
+      "nodemodel": "Dell PowerEdge T640",
+      "expiry_date": 0,
+      "gpu": 2,
+      "cluster": "clustera",
+      "disktype": "SATA",
+      "state": "Alive",
+      "last_available_upto": 0,
+      "finaud_decision": "NO",
+      "api_timestamp": 1568902577,
+      "myri_rate": 0,
+      "scheduler_priority": 0,
+      "cpucore": 8,
+      "desktop_computing": "NO",
+      "memnode": 131072,
+      "opa_rate": 0,
+      "last_job_date": 0,
+      "opa": "NO",
+      "eth_rate": 10,
+      "available_upto": 2147483647,
+      "links": [
+        {
+          "rel": "member",
+          "title": "node",
+          "href": "//oarapi/resources/nodes/clustera-1.fakesite.grid5000.fr"
+        },
+        {
+          "href": "//oarapi/resources/7",
+          "rel": "self"
+        },
+        {
+          "rel": "collection",
+          "title": "jobs",
+          "href": "//oarapi/resources/7/jobs"
+        }
+      ],
+      "cpuset": 6,
+      "besteffort": "YES",
+      "ib_rate": 0,
+      "opa_count": 0,
+      "id": 7,
+      "production": "YES",
+      "type": "default",
+      "mic": "NO",
+      "ib_count": 0,
+      "gpu_model": "GeForce RTX 2080 Ti",
+      "eth_count": 1,
+      "switch": "gw-fakesite",
+      "cpuarch": "x86_64",
+      "host": "clustera-1.fakesite.grid5000.fr",
+      "gpudevice": 1,
+      "next_finaud_decision": "NO",
+      "wattmeter": "MULTIPLE",
+      "maintenance": "NO",
+      "gpu_count": 4,
+      "cluster_priority": 201906,
+      "next_state": "UnChanged",
+      "max_walltime": 86400,
+      "myri": "NO",
+      "myri_count": 0,
+      "core": 7,
+      "ip": "172.16.64.1",
+      "disk_reservation_count": 0,
+      "ib": "NO",
+      "suspended_jobs": "NO",
+      "network_address": "clustera-1.fakesite.grid5000.fr",
+      "state_num": 1,
+      "cpu": 1,
+      "cputype": "Intel Xeon Silver 4110",
+      "virtual": "ivt",
+      "drain": "NO",
+      "memcpu": 65536,
+      "memcore": 8192,
+      "cpufreq": "2.1",
+      "deploy": "NO"
+    },
+    {
+      "api_timestamp": 1568902577,
+      "myri_rate": 0,
+      "scheduler_priority": 0,
+      "cpucore": 8,
+      "last_available_upto": 0,
+      "finaud_decision": "NO",
+      "gpu": 2,
+      "disktype": "SATA",
+      "cluster": "clustera",
+      "state": "Alive",
+      "nodemodel": "Dell PowerEdge T640",
+      "expiry_date": 0,
+      "id": 8,
+      "opa_count": 0,
+      "production": "YES",
+      "type": "default",
+      "available_upto": 2147483647,
+      "cpuset": 7,
+      "links": [
+        {
+          "rel": "member",
+          "href": "//oarapi/resources/nodes/clustera-1.fakesite.grid5000.fr",
+          "title": "node"
+        },
+        {
+          "href": "//oarapi/resources/8",
+          "rel": "self"
+        },
+        {
+          "rel": "collection",
+          "href": "//oarapi/resources/8/jobs",
+          "title": "jobs"
+        }
+      ],
+      "besteffort": "YES",
+      "ib_rate": 0,
+      "last_job_date": 0,
+      "opa": "NO",
+      "eth_rate": 10,
+      "desktop_computing": "NO",
+      "memnode": 131072,
+      "opa_rate": 0,
+      "maintenance": "NO",
+      "gpu_count": 4,
+      "cluster_priority": 201906,
+      "next_state": "UnChanged",
+      "host": "clustera-1.fakesite.grid5000.fr",
+      "cpuarch": "x86_64",
+      "gpudevice": 1,
+      "next_finaud_decision": "NO",
+      "wattmeter": "MULTIPLE",
+      "eth_count": 1,
+      "switch": "gw-fakesite",
+      "mic": "NO",
+      "ib_count": 0,
+      "gpu_model": "GeForce RTX 2080 Ti",
+      "memcpu": 65536,
+      "cpufreq": "2.1",
+      "memcore": 8192,
+      "deploy": "NO",
+      "cpu": 1,
+      "virtual": "ivt",
+      "cputype": "Intel Xeon Silver 4110",
+      "drain": "NO",
+      "ib": "NO",
+      "disk_reservation_count": 0,
+      "suspended_jobs": "NO",
+      "state_num": 1,
+      "network_address": "clustera-1.fakesite.grid5000.fr",
+      "myri": "NO",
+      "max_walltime": 86400,
+      "core": 8,
+      "myri_count": 0,
+      "ip": "172.16.64.1"
+    },
+    {
+      "finaud_decision": "NO",
+      "last_available_upto": 0,
+      "scheduler_priority": 0,
+      "cpucore": 8,
+      "api_timestamp": 1568902577,
+      "myri_rate": 0,
+      "expiry_date": 0,
+      "nodemodel": "Dell PowerEdge T640",
+      "disktype": "SATA",
+      "cluster": "clustera",
+      "state": "Alive",
+      "gpu": 2,
+      "besteffort": "YES",
+      "ib_rate": 0,
+      "available_upto": 2147483647,
+      "links": [
+        {
+          "rel": "member",
+          "href": "//oarapi/resources/nodes/clustera-1.fakesite.grid5000.fr",
+          "title": "node"
+        },
+        {
+          "rel": "self",
+          "href": "//oarapi/resources/9"
+        },
+        {
+          "rel": "collection",
+          "href": "//oarapi/resources/9/jobs",
+          "title": "jobs"
+        }
+      ],
+      "cpuset": 8,
+      "production": "YES",
+      "type": "default",
+      "id": 9,
+      "opa_count": 0,
+      "opa_rate": 0,
+      "desktop_computing": "NO",
+      "memnode": 131072,
+      "opa": "NO",
+      "eth_rate": 10,
+      "last_job_date": 0,
+      "wattmeter": "MULTIPLE",
+      "next_finaud_decision": "NO",
+      "cpuarch": "x86_64",
+      "host": "clustera-1.fakesite.grid5000.fr",
+      "gpudevice": 2,
+      "next_state": "UnChanged",
+      "maintenance": "NO",
+      "gpu_count": 4,
+      "cluster_priority": 201906,
+      "ib_count": 0,
+      "gpu_model": "GeForce RTX 2080 Ti",
+      "mic": "NO",
+      "switch": "gw-fakesite",
+      "eth_count": 1,
+      "drain": "NO",
+      "cpu": 2,
+      "virtual": "ivt",
+      "cputype": "Intel Xeon Silver 4110",
+      "memcore": 8192,
+      "cpufreq": "2.1",
+      "deploy": "NO",
+      "memcpu": 65536,
+      "myri_count": 0,
+      "core": 9,
+      "ip": "172.16.64.1",
+      "myri": "NO",
+      "max_walltime": 86400,
+      "network_address": "clustera-1.fakesite.grid5000.fr",
+      "state_num": 1,
+      "ib": "NO",
+      "disk_reservation_count": 0,
+      "suspended_jobs": "NO"
+    },
+    {
+      "drain": "NO",
+      "cpu": 2,
+      "virtual": "ivt",
+      "cputype": "Intel Xeon Silver 4110",
+      "cpufreq": "2.1",
+      "memcore": 8192,
+      "deploy": "NO",
+      "memcpu": 65536,
+      "myri_count": 0,
+      "core": 10,
+      "ip": "172.16.64.1",
+      "max_walltime": 86400,
+      "myri": "NO",
+      "network_address": "clustera-1.fakesite.grid5000.fr",
+      "state_num": 1,
+      "ib": "NO",
+      "disk_reservation_count": 0,
+      "suspended_jobs": "NO",
+      "next_finaud_decision": "NO",
+      "wattmeter": "MULTIPLE",
+      "cpuarch": "x86_64",
+      "host": "clustera-1.fakesite.grid5000.fr",
+      "gpudevice": 2,
+      "next_state": "UnChanged",
+      "maintenance": "NO",
+      "cluster_priority": 201906,
+      "gpu_count": 4,
+      "ib_count": 0,
+      "gpu_model": "GeForce RTX 2080 Ti",
+      "mic": "NO",
+      "switch": "gw-fakesite",
+      "eth_count": 1,
+      "besteffort": "YES",
+      "ib_rate": 0,
+      "available_upto": 2147483647,
+      "links": [
+        {
+          "href": "//oarapi/resources/nodes/clustera-1.fakesite.grid5000.fr",
+          "title": "node",
+          "rel": "member"
+        },
+        {
+          "href": "//oarapi/resources/10",
+          "rel": "self"
+        },
+        {
+          "rel": "collection",
+          "title": "jobs",
+          "href": "//oarapi/resources/10/jobs"
+        }
+      ],
+      "cpuset": 9,
+      "production": "YES",
+      "type": "default",
+      "id": 10,
+      "opa_count": 0,
+      "opa_rate": 0,
+      "desktop_computing": "NO",
+      "memnode": 131072,
+      "eth_rate": 10,
+      "opa": "NO",
+      "last_job_date": 0,
+      "finaud_decision": "NO",
+      "last_available_upto": 0,
+      "cpucore": 8,
+      "scheduler_priority": 0,
+      "api_timestamp": 1568902577,
+      "myri_rate": 0,
+      "nodemodel": "Dell PowerEdge T640",
+      "expiry_date": 0,
+      "cluster": "clustera",
+      "disktype": "SATA",
+      "state": "Alive",
+      "gpu": 3
+    },
+    {
+      "cpu": 2,
+      "virtual": "ivt",
+      "cputype": "Intel Xeon Silver 4110",
+      "drain": "NO",
+      "memcpu": 65536,
+      "cpufreq": "2.1",
+      "memcore": 8192,
+      "deploy": "NO",
+      "myri": "NO",
+      "max_walltime": 86400,
+      "core": 11,
+      "myri_count": 0,
+      "ip": "172.16.64.1",
+      "ib": "NO",
+      "disk_reservation_count": 0,
+      "suspended_jobs": "NO",
+      "state_num": 1,
+      "network_address": "clustera-1.fakesite.grid5000.fr",
+      "cpuarch": "x86_64",
+      "host": "clustera-1.fakesite.grid5000.fr",
+      "gpudevice": 2,
+      "next_finaud_decision": "NO",
+      "wattmeter": "MULTIPLE",
+      "maintenance": "NO",
+      "gpu_count": 4,
+      "cluster_priority": 201906,
+      "next_state": "UnChanged",
+      "mic": "NO",
+      "ib_count": 0,
+      "gpu_model": "GeForce RTX 2080 Ti",
+      "eth_count": 1,
+      "switch": "gw-fakesite",
+      "available_upto": 2147483647,
+      "cpuset": 10,
+      "links": [
+        {
+          "rel": "member",
+          "title": "node",
+          "href": "//oarapi/resources/nodes/clustera-1.fakesite.grid5000.fr"
+        },
+        {
+          "href": "//oarapi/resources/11",
+          "rel": "self"
+        },
+        {
+          "title": "jobs",
+          "href": "//oarapi/resources/11/jobs",
+          "rel": "collection"
+        }
+      ],
+      "besteffort": "YES",
+      "ib_rate": 0,
+      "id": 11,
+      "opa_count": 0,
+      "production": "YES",
+      "type": "default",
+      "desktop_computing": "NO",
+      "memnode": 131072,
+      "opa_rate": 0,
+      "last_job_date": 0,
+      "eth_rate": 10,
+      "opa": "NO",
+      "last_available_upto": 0,
+      "finaud_decision": "NO",
+      "api_timestamp": 1568902577,
+      "myri_rate": 0,
+      "scheduler_priority": 0,
+      "cpucore": 8,
+      "expiry_date": 0,
+      "nodemodel": "Dell PowerEdge T640",
+      "gpu": 3,
+      "disktype": "SATA",
+      "cluster": "clustera",
+      "state": "Alive"
+    },
+    {
+      "next_state": "UnChanged",
+      "maintenance": "NO",
+      "cluster_priority": 201906,
+      "gpu_count": 4,
+      "wattmeter": "MULTIPLE",
+      "next_finaud_decision": "NO",
+      "host": "clustera-1.fakesite.grid5000.fr",
+      "cpuarch": "x86_64",
+      "gpudevice": 2,
+      "switch": "gw-fakesite",
+      "eth_count": 1,
+      "ib_count": 0,
+      "gpu_model": "GeForce RTX 2080 Ti",
+      "mic": "NO",
+      "cpufreq": "2.1",
+      "memcore": 8192,
+      "deploy": "NO",
+      "memcpu": 65536,
+      "drain": "NO",
+      "cpu": 2,
+      "virtual": "ivt",
+      "cputype": "Intel Xeon Silver 4110",
+      "state_num": 1,
+      "network_address": "clustera-1.fakesite.grid5000.fr",
+      "ib": "NO",
+      "disk_reservation_count": 0,
+      "suspended_jobs": "NO",
+      "myri_count": 0,
+      "ip": "172.16.64.1",
+      "core": 12,
+      "myri": "NO",
+      "max_walltime": 86400,
+      "scheduler_priority": 0,
+      "cpucore": 8,
+      "api_timestamp": 1568902577,
+      "myri_rate": 0,
+      "finaud_decision": "NO",
+      "last_available_upto": 0,
+      "cluster": "clustera",
+      "disktype": "SATA",
+      "state": "Alive",
+      "gpu": 3,
+      "expiry_date": 0,
+      "nodemodel": "Dell PowerEdge T640",
+      "production": "YES",
+      "type": "default",
+      "opa_count": 0,
+      "id": 12,
+      "besteffort": "YES",
+      "ib_rate": 0,
+      "available_upto": 2147483647,
+      "links": [
+        {
+          "href": "//oarapi/resources/nodes/clustera-1.fakesite.grid5000.fr",
+          "title": "node",
+          "rel": "member"
+        },
+        {
+          "href": "//oarapi/resources/12",
+          "rel": "self"
+        },
+        {
+          "rel": "collection",
+          "title": "jobs",
+          "href": "//oarapi/resources/12/jobs"
+        }
+      ],
+      "cpuset": 11,
+      "opa": "NO",
+      "eth_rate": 10,
+      "last_job_date": 0,
+      "opa_rate": 0,
+      "desktop_computing": "NO",
+      "memnode": 131072
+    },
+    {
+      "core": 13,
+      "myri_count": 0,
+      "ip": "172.16.64.1",
+      "myri": "NO",
+      "max_walltime": 86400,
+      "network_address": "clustera-1.fakesite.grid5000.fr",
+      "state_num": 1,
+      "suspended_jobs": "NO",
+      "ib": "NO",
+      "disk_reservation_count": 0,
+      "drain": "NO",
+      "cputype": "Intel Xeon Silver 4110",
+      "virtual": "ivt",
+      "cpu": 2,
+      "deploy": "NO",
+      "memcore": 8192,
+      "cpufreq": "2.1",
+      "memcpu": 65536,
+      "gpu_model": "GeForce RTX 2080 Ti",
+      "ib_count": 0,
+      "mic": "NO",
+      "switch": "gw-fakesite",
+      "eth_count": 1,
+      "next_finaud_decision": "NO",
+      "wattmeter": "MULTIPLE",
+      "gpudevice": 3,
+      "cpuarch": "x86_64",
+      "host": "clustera-1.fakesite.grid5000.fr",
+      "next_state": "UnChanged",
+      "gpu_count": 4,
+      "cluster_priority": 201906,
+      "maintenance": "NO",
+      "opa_rate": 0,
+      "memnode": 131072,
+      "desktop_computing": "NO",
+      "opa": "NO",
+      "eth_rate": 10,
+      "last_job_date": 0,
+      "ib_rate": 0,
+      "besteffort": "YES",
+      "cpuset": 12,
+      "links": [
+        {
+          "href": "//oarapi/resources/nodes/clustera-1.fakesite.grid5000.fr",
+          "title": "node",
+          "rel": "member"
+        },
+        {
+          "rel": "self",
+          "href": "//oarapi/resources/13"
+        },
+        {
+          "href": "//oarapi/resources/13/jobs",
+          "title": "jobs",
+          "rel": "collection"
+        }
+      ],
+      "available_upto": 2147483647,
+      "type": "default",
+      "production": "YES",
+      "id": 13,
+      "opa_count": 0,
+      "expiry_date": 0,
+      "nodemodel": "Dell PowerEdge T640",
+      "state": "Alive",
+      "cluster": "clustera",
+      "disktype": "SATA",
+      "gpu": 4,
+      "finaud_decision": "NO",
+      "last_available_upto": 0,
+      "scheduler_priority": 0,
+      "cpucore": 8,
+      "myri_rate": 0,
+      "api_timestamp": 1568902577
+    },
+    {
+      "finaud_decision": "NO",
+      "last_available_upto": 0,
+      "cpucore": 8,
+      "scheduler_priority": 0,
+      "api_timestamp": 1568902577,
+      "myri_rate": 0,
+      "expiry_date": 0,
+      "nodemodel": "Dell PowerEdge T640",
+      "disktype": "SATA",
+      "cluster": "clustera",
+      "state": "Alive",
+      "gpu": 4,
+      "besteffort": "YES",
+      "ib_rate": 0,
+      "available_upto": 2147483647,
+      "cpuset": 13,
+      "links": [
+        {
+          "rel": "member",
+          "title": "node",
+          "href": "//oarapi/resources/nodes/clustera-1.fakesite.grid5000.fr"
+        },
+        {
+          "rel": "self",
+          "href": "//oarapi/resources/14"
+        },
+        {
+          "rel": "collection",
+          "href": "//oarapi/resources/14/jobs",
+          "title": "jobs"
+        }
+      ],
+      "production": "YES",
+      "type": "default",
+      "id": 14,
+      "opa_count": 0,
+      "opa_rate": 0,
+      "desktop_computing": "NO",
+      "memnode": 131072,
+      "eth_rate": 10,
+      "opa": "NO",
+      "last_job_date": 0,
+      "wattmeter": "MULTIPLE",
+      "next_finaud_decision": "NO",
+      "host": "clustera-1.fakesite.grid5000.fr",
+      "cpuarch": "x86_64",
+      "gpudevice": 3,
+      "next_state": "UnChanged",
+      "maintenance": "NO",
+      "cluster_priority": 201906,
+      "gpu_count": 4,
+      "ib_count": 0,
+      "gpu_model": "GeForce RTX 2080 Ti",
+      "mic": "NO",
+      "switch": "gw-fakesite",
+      "eth_count": 1,
+      "drain": "NO",
+      "cpu": 2,
+      "cputype": "Intel Xeon Silver 4110",
+      "virtual": "ivt",
+      "memcore": 8192,
+      "cpufreq": "2.1",
+      "deploy": "NO",
+      "memcpu": 65536,
+      "myri_count": 0,
+      "ip": "172.16.64.1",
+      "core": 14,
+      "max_walltime": 86400,
+      "myri": "NO",
+      "state_num": 1,
+      "network_address": "clustera-1.fakesite.grid5000.fr",
+      "ib": "NO",
+      "disk_reservation_count": 0,
+      "suspended_jobs": "NO"
+    },
+    {
+      "memcpu": 65536,
+      "cpufreq": "2.1",
+      "memcore": 8192,
+      "deploy": "NO",
+      "cpu": 2,
+      "virtual": "ivt",
+      "cputype": "Intel Xeon Silver 4110",
+      "drain": "NO",
+      "disk_reservation_count": 0,
+      "ib": "NO",
+      "suspended_jobs": "NO",
+      "state_num": 1,
+      "network_address": "clustera-1.fakesite.grid5000.fr",
+      "max_walltime": 86400,
+      "myri": "NO",
+      "myri_count": 0,
+      "core": 15,
+      "ip": "172.16.64.1",
+      "maintenance": "NO",
+      "gpu_count": 4,
+      "cluster_priority": 201906,
+      "next_state": "UnChanged",
+      "cpuarch": "x86_64",
+      "host": "clustera-1.fakesite.grid5000.fr",
+      "gpudevice": 3,
+      "next_finaud_decision": "NO",
+      "wattmeter": "MULTIPLE",
+      "eth_count": 1,
+      "switch": "gw-fakesite",
+      "mic": "NO",
+      "ib_count": 0,
+      "gpu_model": "GeForce RTX 2080 Ti",
+      "opa_count": 0,
+      "id": 15,
+      "production": "YES",
+      "type": "default",
+      "available_upto": 2147483647,
+      "cpuset": 14,
+      "links": [
+        {
+          "rel": "member",
+          "title": "node",
+          "href": "//oarapi/resources/nodes/clustera-1.fakesite.grid5000.fr"
+        },
+        {
+          "rel": "self",
+          "href": "//oarapi/resources/15"
+        },
+        {
+          "href": "//oarapi/resources/15/jobs",
+          "title": "jobs",
+          "rel": "collection"
+        }
+      ],
+      "besteffort": "YES",
+      "ib_rate": 0,
+      "last_job_date": 0,
+      "opa": "NO",
+      "eth_rate": 10,
+      "desktop_computing": "NO",
+      "memnode": 131072,
+      "opa_rate": 0,
+      "api_timestamp": 1568902577,
+      "myri_rate": 0,
+      "cpucore": 8,
+      "scheduler_priority": 0,
+      "last_available_upto": 0,
+      "finaud_decision": "NO",
+      "gpu": 4,
+      "cluster": "clustera",
+      "disktype": "SATA",
+      "state": "Alive",
+      "nodemodel": "Dell PowerEdge T640",
+      "expiry_date": 0
+    },
+    {
+      "last_available_upto": 0,
+      "finaud_decision": "NO",
+      "myri_rate": 0,
+      "api_timestamp": 1568902577,
+      "scheduler_priority": 0,
+      "cpucore": 8,
+      "expiry_date": 0,
+      "nodemodel": "Dell PowerEdge T640",
+      "gpu": 4,
+      "state": "Alive",
+      "cluster": "clustera",
+      "disktype": "SATA",
+      "cpuset": 15,
+      "links": [
+        {
+          "rel": "member",
+          "title": "node",
+          "href": "//oarapi/resources/nodes/clustera-1.fakesite.grid5000.fr"
+        },
+        {
+          "href": "//oarapi/resources/16",
+          "rel": "self"
+        },
+        {
+          "href": "//oarapi/resources/16/jobs",
+          "title": "jobs",
+          "rel": "collection"
+        }
+      ],
+      "available_upto": 2147483647,
+      "ib_rate": 0,
+      "besteffort": "YES",
+      "opa_count": 0,
+      "id": 16,
+      "type": "default",
+      "production": "YES",
+      "memnode": 131072,
+      "desktop_computing": "NO",
+      "opa_rate": 0,
+      "last_job_date": 0,
+      "eth_rate": 10,
+      "opa": "NO",
+      "gpudevice": 3,
+      "cpuarch": "x86_64",
+      "host": "clustera-1.fakesite.grid5000.fr",
+      "wattmeter": "MULTIPLE",
+      "next_finaud_decision": "NO",
+      "cluster_priority": 201906,
+      "gpu_count": 4,
+      "maintenance": "NO",
+      "next_state": "UnChanged",
+      "mic": "NO",
+      "gpu_model": "GeForce RTX 2080 Ti",
+      "ib_count": 0,
+      "eth_count": 1,
+      "switch": "gw-fakesite",
+      "cputype": "Intel Xeon Silver 4110",
+      "virtual": "ivt",
+      "cpu": 2,
+      "drain": "NO",
+      "memcpu": 65536,
+      "deploy": "NO",
+      "cpufreq": "2.1",
+      "memcore": 8192,
+      "myri": "NO",
+      "max_walltime": 86400,
+      "myri_count": 0,
+      "ip": "172.16.64.1",
+      "core": 16,
+      "suspended_jobs": "NO",
+      "disk_reservation_count": 0,
+      "ib": "NO",
+      "network_address": "clustera-1.fakesite.grid5000.fr",
+      "state_num": 1
+    },
+    {
+      "host": "clustera-2.fakesite.grid5000.fr",
+      "cpuarch": "x86_64",
+      "gpudevice": 0,
+      "next_finaud_decision": "NO",
+      "wattmeter": "MULTIPLE",
+      "maintenance": "NO",
+      "cluster_priority": 201906,
+      "gpu_count": 4,
+      "next_state": "UnChanged",
+      "mic": "NO",
+      "ib_count": 0,
+      "gpu_model": "GeForce RTX 2080 Ti",
+      "eth_count": 1,
+      "switch": "gw-fakesite",
+      "cpu": 3,
+      "cputype": "Intel Xeon Silver 4110",
+      "virtual": "ivt",
+      "drain": "NO",
+      "memcpu": 65536,
+      "cpufreq": "2.1",
+      "memcore": 8192,
+      "deploy": "NO",
+      "myri": "NO",
+      "max_walltime": 86400,
+      "myri_count": 0,
+      "core": 17,
+      "ip": "172.16.64.2",
+      "disk_reservation_count": 0,
+      "ib": "NO",
+      "suspended_jobs": "NO",
+      "state_num": 1,
+      "network_address": "clustera-2.fakesite.grid5000.fr",
+      "last_available_upto": 0,
+      "finaud_decision": "NO",
+      "api_timestamp": 1568902577,
+      "myri_rate": 0,
+      "scheduler_priority": 0,
+      "cpucore": 8,
+      "nodemodel": "Dell PowerEdge T640",
+      "expiry_date": 0,
+      "gpu": 5,
+      "disktype": "SATA",
+      "cluster": "clustera",
+      "state": "Alive",
+      "available_upto": 2147483647,
+      "links": [
+        {
+          "title": "node",
+          "href": "//oarapi/resources/nodes/clustera-2.fakesite.grid5000.fr",
+          "rel": "member"
+        },
+        {
+          "href": "//oarapi/resources/17",
+          "rel": "self"
+        },
+        {
+          "title": "jobs",
+          "href": "//oarapi/resources/17/jobs",
+          "rel": "collection"
+        }
+      ],
+      "cpuset": 0,
+      "besteffort": "YES",
+      "ib_rate": 0,
+      "opa_count": 0,
+      "id": 17,
+      "production": "YES",
+      "type": "default",
+      "desktop_computing": "NO",
+      "memnode": 131072,
+      "opa_rate": 0,
+      "last_job_date": 0,
+      "eth_rate": 10,
+      "opa": "NO"
+    },
+    {
+      "max_walltime": 86400,
+      "myri": "NO",
+      "myri_count": 0,
+      "ip": "172.16.64.2",
+      "core": 18,
+      "ib": "NO",
+      "disk_reservation_count": 0,
+      "suspended_jobs": "NO",
+      "state_num": 1,
+      "network_address": "clustera-2.fakesite.grid5000.fr",
+      "cpu": 3,
+      "cputype": "Intel Xeon Silver 4110",
+      "virtual": "ivt",
+      "drain": "NO",
+      "memcpu": 65536,
+      "cpufreq": "2.1",
+      "memcore": 8192,
+      "deploy": "NO",
+      "mic": "NO",
+      "ib_count": 0,
+      "gpu_model": "GeForce RTX 2080 Ti",
+      "eth_count": 1,
+      "switch": "gw-fakesite",
+      "cpuarch": "x86_64",
+      "host": "clustera-2.fakesite.grid5000.fr",
+      "gpudevice": 0,
+      "wattmeter": "MULTIPLE",
+      "next_finaud_decision": "NO",
+      "maintenance": "NO",
+      "cluster_priority": 201906,
+      "gpu_count": 4,
+      "next_state": "UnChanged",
+      "desktop_computing": "NO",
+      "memnode": 131072,
+      "opa_rate": 0,
+      "last_job_date": 0,
+      "eth_rate": 10,
+      "opa": "NO",
+      "available_upto": 2147483647,
+      "cpuset": 1,
+      "links": [
+        {
+          "rel": "member",
+          "title": "node",
+          "href": "//oarapi/resources/nodes/clustera-2.fakesite.grid5000.fr"
+        },
+        {
+          "href": "//oarapi/resources/18",
+          "rel": "self"
+        },
+        {
+          "href": "//oarapi/resources/18/jobs",
+          "title": "jobs",
+          "rel": "collection"
+        }
+      ],
+      "besteffort": "YES",
+      "ib_rate": 0,
+      "opa_count": 0,
+      "id": 18,
+      "production": "YES",
+      "type": "default",
+      "expiry_date": 0,
+      "nodemodel": "Dell PowerEdge T640",
+      "gpu": 5,
+      "cluster": "clustera",
+      "disktype": "SATA",
+      "state": "Alive",
+      "last_available_upto": 0,
+      "finaud_decision": "NO",
+      "api_timestamp": 1568902577,
+      "myri_rate": 0,
+      "cpucore": 8,
+      "scheduler_priority": 0
+    },
+    {
+      "eth_rate": 10,
+      "opa": "NO",
+      "last_job_date": 0,
+      "opa_rate": 0,
+      "memnode": 131072,
+      "desktop_computing": "NO",
+      "type": "default",
+      "production": "YES",
+      "opa_count": 0,
+      "id": 19,
+      "ib_rate": 0,
+      "besteffort": "YES",
+      "cpuset": 2,
+      "links": [
+        {
+          "rel": "member",
+          "title": "node",
+          "href": "//oarapi/resources/nodes/clustera-2.fakesite.grid5000.fr"
+        },
+        {
+          "rel": "self",
+          "href": "//oarapi/resources/19"
+        },
+        {
+          "href": "//oarapi/resources/19/jobs",
+          "title": "jobs",
+          "rel": "collection"
+        }
+      ],
+      "available_upto": 2147483647,
+      "state": "Alive",
+      "disktype": "SATA",
+      "cluster": "clustera",
+      "gpu": 5,
+      "expiry_date": 0,
+      "nodemodel": "Dell PowerEdge T640",
+      "cpucore": 8,
+      "scheduler_priority": 0,
+      "myri_rate": 0,
+      "api_timestamp": 1568902577,
+      "finaud_decision": "NO",
+      "last_available_upto": 0,
+      "network_address": "clustera-2.fakesite.grid5000.fr",
+      "state_num": 1,
+      "suspended_jobs": "NO",
+      "disk_reservation_count": 0,
+      "ib": "NO",
+      "myri_count": 0,
+      "ip": "172.16.64.2",
+      "core": 19,
+      "max_walltime": 86400,
+      "myri": "NO",
+      "deploy": "NO",
+      "cpufreq": "2.1",
+      "memcore": 8192,
+      "memcpu": 65536,
+      "drain": "NO",
+      "virtual": "ivt",
+      "cputype": "Intel Xeon Silver 4110",
+      "cpu": 3,
+      "switch": "gw-fakesite",
+      "eth_count": 1,
+      "gpu_model": "GeForce RTX 2080 Ti",
+      "ib_count": 0,
+      "mic": "NO",
+      "next_state": "UnChanged",
+      "cluster_priority": 201906,
+      "gpu_count": 4,
+      "maintenance": "NO",
+      "next_finaud_decision": "NO",
+      "wattmeter": "MULTIPLE",
+      "gpudevice": 0,
+      "host": "clustera-2.fakesite.grid5000.fr",
+      "cpuarch": "x86_64"
+    },
+    {
+      "state": "Alive",
+      "disktype": "SATA",
+      "cluster": "clustera",
+      "gpu": 5,
+      "nodemodel": "Dell PowerEdge T640",
+      "expiry_date": 0,
+      "scheduler_priority": 0,
+      "cpucore": 8,
+      "myri_rate": 0,
+      "api_timestamp": 1568902577,
+      "finaud_decision": "NO",
+      "last_available_upto": 0,
+      "opa": "NO",
+      "eth_rate": 10,
+      "last_job_date": 0,
+      "opa_rate": 0,
+      "memnode": 131072,
+      "desktop_computing": "NO",
+      "type": "default",
+      "production": "YES",
+      "id": 20,
+      "opa_count": 0,
+      "ib_rate": 0,
+      "besteffort": "YES",
+      "links": [
+        {
+          "title": "node",
+          "href": "//oarapi/resources/nodes/clustera-2.fakesite.grid5000.fr",
+          "rel": "member"
+        },
+        {
+          "rel": "self",
+          "href": "//oarapi/resources/20"
+        },
+        {
+          "href": "//oarapi/resources/20/jobs",
+          "title": "jobs",
+          "rel": "collection"
+        }
+      ],
+      "cpuset": 3,
+      "available_upto": 2147483647,
+      "switch": "gw-fakesite",
+      "eth_count": 1,
+      "gpu_model": "GeForce RTX 2080 Ti",
+      "ib_count": 0,
+      "mic": "NO",
+      "next_state": "UnChanged",
+      "gpu_count": 4,
+      "cluster_priority": 201906,
+      "maintenance": "NO",
+      "next_finaud_decision": "NO",
+      "wattmeter": "MULTIPLE",
+      "gpudevice": 0,
+      "cpuarch": "x86_64",
+      "host": "clustera-2.fakesite.grid5000.fr",
+      "network_address": "clustera-2.fakesite.grid5000.fr",
+      "state_num": 1,
+      "suspended_jobs": "NO",
+      "disk_reservation_count": 0,
+      "ib": "NO",
+      "myri_count": 0,
+      "core": 20,
+      "ip": "172.16.64.2",
+      "max_walltime": 86400,
+      "myri": "NO",
+      "deploy": "NO",
+      "cpufreq": "2.1",
+      "memcore": 8192,
+      "memcpu": 65536,
+      "drain": "NO",
+      "cputype": "Intel Xeon Silver 4110",
+      "virtual": "ivt",
+      "cpu": 3
+    },
+    {
+      "cluster_priority": 201906,
+      "gpu_count": 4,
+      "maintenance": "NO",
+      "next_state": "UnChanged",
+      "gpudevice": 1,
+      "cpuarch": "x86_64",
+      "host": "clustera-2.fakesite.grid5000.fr",
+      "next_finaud_decision": "NO",
+      "wattmeter": "MULTIPLE",
+      "eth_count": 1,
+      "switch": "gw-fakesite",
+      "mic": "NO",
+      "gpu_model": "GeForce RTX 2080 Ti",
+      "ib_count": 0,
+      "memcpu": 65536,
+      "deploy": "NO",
+      "memcore": 8192,
+      "cpufreq": "2.1",
+      "cputype": "Intel Xeon Silver 4110",
+      "virtual": "ivt",
+      "cpu": 3,
+      "drain": "NO",
+      "suspended_jobs": "NO",
+      "disk_reservation_count": 0,
+      "ib": "NO",
+      "network_address": "clustera-2.fakesite.grid5000.fr",
+      "state_num": 1,
+      "myri": "NO",
+      "max_walltime": 86400,
+      "myri_count": 0,
+      "core": 21,
+      "ip": "172.16.64.2",
+      "myri_rate": 0,
+      "api_timestamp": 1568902577,
+      "scheduler_priority": 0,
+      "cpucore": 8,
+      "last_available_upto": 0,
+      "finaud_decision": "NO",
+      "gpu": 6,
+      "state": "Alive",
+      "disktype": "SATA",
+      "cluster": "clustera",
+      "nodemodel": "Dell PowerEdge T640",
+      "expiry_date": 0,
+      "opa_count": 0,
+      "id": 21,
+      "type": "default",
+      "production": "YES",
+      "cpuset": 4,
+      "links": [
+        {
+          "title": "node",
+          "href": "//oarapi/resources/nodes/clustera-2.fakesite.grid5000.fr",
+          "rel": "member"
+        },
+        {
+          "rel": "self",
+          "href": "//oarapi/resources/21"
+        },
+        {
+          "rel": "collection",
+          "href": "//oarapi/resources/21/jobs",
+          "title": "jobs"
+        }
+      ],
+      "available_upto": 2147483647,
+      "ib_rate": 0,
+      "besteffort": "YES",
+      "last_job_date": 0,
+      "opa": "NO",
+      "eth_rate": 10,
+      "memnode": 131072,
+      "desktop_computing": "NO",
+      "opa_rate": 0
+    },
+    {
+      "opa_count": 0,
+      "id": 22,
+      "type": "default",
+      "production": "YES",
+      "links": [
+        {
+          "rel": "member",
+          "title": "node",
+          "href": "//oarapi/resources/nodes/clustera-2.fakesite.grid5000.fr"
+        },
+        {
+          "rel": "self",
+          "href": "//oarapi/resources/22"
+        },
+        {
+          "title": "jobs",
+          "href": "//oarapi/resources/22/jobs",
+          "rel": "collection"
+        }
+      ],
+      "cpuset": 5,
+      "available_upto": 2147483647,
+      "ib_rate": 0,
+      "besteffort": "YES",
+      "last_job_date": 0,
+      "eth_rate": 10,
+      "opa": "NO",
+      "memnode": 131072,
+      "desktop_computing": "NO",
+      "opa_rate": 0,
+      "myri_rate": 0,
+      "api_timestamp": 1568902577,
+      "scheduler_priority": 0,
+      "cpucore": 8,
+      "last_available_upto": 0,
+      "finaud_decision": "NO",
+      "gpu": 6,
+      "state": "Alive",
+      "disktype": "SATA",
+      "cluster": "clustera",
+      "nodemodel": "Dell PowerEdge T640",
+      "expiry_date": 0,
+      "memcpu": 65536,
+      "deploy": "NO",
+      "cpufreq": "2.1",
+      "memcore": 8192,
+      "virtual": "ivt",
+      "cputype": "Intel Xeon Silver 4110",
+      "cpu": 3,
+      "drain": "NO",
+      "suspended_jobs": "NO",
+      "disk_reservation_count": 0,
+      "ib": "NO",
+      "state_num": 1,
+      "network_address": "clustera-2.fakesite.grid5000.fr",
+      "max_walltime": 86400,
+      "myri": "NO",
+      "core": 22,
+      "myri_count": 0,
+      "ip": "172.16.64.2",
+      "gpu_count": 4,
+      "cluster_priority": 201906,
+      "maintenance": "NO",
+      "next_state": "UnChanged",
+      "gpudevice": 1,
+      "cpuarch": "x86_64",
+      "host": "clustera-2.fakesite.grid5000.fr",
+      "next_finaud_decision": "NO",
+      "wattmeter": "MULTIPLE",
+      "eth_count": 1,
+      "switch": "gw-fakesite",
+      "mic": "NO",
+      "gpu_model": "GeForce RTX 2080 Ti",
+      "ib_count": 0
+    },
+    {
+      "gpudevice": 1,
+      "cpuarch": "x86_64",
+      "host": "clustera-2.fakesite.grid5000.fr",
+      "wattmeter": "MULTIPLE",
+      "next_finaud_decision": "NO",
+      "gpu_count": 4,
+      "cluster_priority": 201906,
+      "maintenance": "NO",
+      "next_state": "UnChanged",
+      "mic": "NO",
+      "gpu_model": "GeForce RTX 2080 Ti",
+      "ib_count": 0,
+      "eth_count": 1,
+      "switch": "gw-fakesite",
+      "cputype": "Intel Xeon Silver 4110",
+      "virtual": "ivt",
+      "cpu": 3,
+      "drain": "NO",
+      "memcpu": 65536,
+      "deploy": "NO",
+      "memcore": 8192,
+      "cpufreq": "2.1",
+      "max_walltime": 86400,
+      "myri": "NO",
+      "ip": "172.16.64.2",
+      "myri_count": 0,
+      "core": 23,
+      "suspended_jobs": "NO",
+      "disk_reservation_count": 0,
+      "ib": "NO",
+      "state_num": 1,
+      "network_address": "clustera-2.fakesite.grid5000.fr",
+      "last_available_upto": 0,
+      "finaud_decision": "NO",
+      "myri_rate": 0,
+      "api_timestamp": 1568902577,
+      "scheduler_priority": 0,
+      "cpucore": 8,
+      "expiry_date": 0,
+      "nodemodel": "Dell PowerEdge T640",
+      "gpu": 6,
+      "state": "Alive",
+      "disktype": "SATA",
+      "cluster": "clustera",
+      "links": [
+        {
+          "title": "node",
+          "href": "//oarapi/resources/nodes/clustera-2.fakesite.grid5000.fr",
+          "rel": "member"
+        },
+        {
+          "rel": "self",
+          "href": "//oarapi/resources/23"
+        },
+        {
+          "rel": "collection",
+          "href": "//oarapi/resources/23/jobs",
+          "title": "jobs"
+        }
+      ],
+      "cpuset": 6,
+      "available_upto": 2147483647,
+      "ib_rate": 0,
+      "besteffort": "YES",
+      "id": 23,
+      "opa_count": 0,
+      "type": "default",
+      "production": "YES",
+      "memnode": 131072,
+      "desktop_computing": "NO",
+      "opa_rate": 0,
+      "last_job_date": 0,
+      "eth_rate": 10,
+      "opa": "NO"
+    },
+    {
+      "mic": "NO",
+      "ib_count": 0,
+      "gpu_model": "GeForce RTX 2080 Ti",
+      "eth_count": 1,
+      "switch": "gw-fakesite",
+      "host": "clustera-2.fakesite.grid5000.fr",
+      "cpuarch": "x86_64",
+      "gpudevice": 1,
+      "wattmeter": "MULTIPLE",
+      "next_finaud_decision": "NO",
+      "maintenance": "NO",
+      "gpu_count": 4,
+      "cluster_priority": 201906,
+      "next_state": "UnChanged",
+      "myri": "NO",
+      "max_walltime": 86400,
+      "myri_count": 0,
+      "ip": "172.16.64.2",
+      "core": 24,
+      "disk_reservation_count": 0,
+      "ib": "NO",
+      "suspended_jobs": "NO",
+      "state_num": 1,
+      "network_address": "clustera-2.fakesite.grid5000.fr",
+      "cpu": 3,
+      "virtual": "ivt",
+      "cputype": "Intel Xeon Silver 4110",
+      "drain": "NO",
+      "memcpu": 65536,
+      "memcore": 8192,
+      "cpufreq": "2.1",
+      "deploy": "NO",
+      "expiry_date": 0,
+      "nodemodel": "Dell PowerEdge T640",
+      "gpu": 6,
+      "cluster": "clustera",
+      "disktype": "SATA",
+      "state": "Alive",
+      "last_available_upto": 0,
+      "finaud_decision": "NO",
+      "api_timestamp": 1568902577,
+      "myri_rate": 0,
+      "cpucore": 8,
+      "scheduler_priority": 0,
+      "desktop_computing": "NO",
+      "memnode": 131072,
+      "opa_rate": 0,
+      "last_job_date": 0,
+      "opa": "NO",
+      "eth_rate": 10,
+      "available_upto": 2147483647,
+      "links": [
+        {
+          "rel": "member",
+          "title": "node",
+          "href": "//oarapi/resources/nodes/clustera-2.fakesite.grid5000.fr"
+        },
+        {
+          "href": "//oarapi/resources/24",
+          "rel": "self"
+        },
+        {
+          "rel": "collection",
+          "href": "//oarapi/resources/24/jobs",
+          "title": "jobs"
+        }
+      ],
+      "cpuset": 7,
+      "besteffort": "YES",
+      "ib_rate": 0,
+      "opa_count": 0,
+      "id": 24,
+      "production": "YES",
+      "type": "default"
+    },
+    {
+      "next_finaud_decision": "NO",
+      "wattmeter": "MULTIPLE",
+      "gpudevice": 2,
+      "host": "clustera-2.fakesite.grid5000.fr",
+      "cpuarch": "x86_64",
+      "next_state": "UnChanged",
+      "gpu_count": 4,
+      "cluster_priority": 201906,
+      "maintenance": "NO",
+      "gpu_model": "GeForce RTX 2080 Ti",
+      "ib_count": 0,
+      "mic": "NO",
+      "switch": "gw-fakesite",
+      "eth_count": 1,
+      "drain": "NO",
+      "virtual": "ivt",
+      "cputype": "Intel Xeon Silver 4110",
+      "cpu": 4,
+      "deploy": "NO",
+      "cpufreq": "2.1",
+      "memcore": 8192,
+      "memcpu": 65536,
+      "myri_count": 0,
+      "ip": "172.16.64.2",
+      "core": 25,
+      "myri": "NO",
+      "max_walltime": 86400,
+      "state_num": 1,
+      "network_address": "clustera-2.fakesite.grid5000.fr",
+      "suspended_jobs": "NO",
+      "disk_reservation_count": 0,
+      "ib": "NO",
+      "finaud_decision": "NO",
+      "last_available_upto": 0,
+      "cpucore": 8,
+      "scheduler_priority": 0,
+      "myri_rate": 0,
+      "api_timestamp": 1568902577,
+      "expiry_date": 0,
+      "nodemodel": "Dell PowerEdge T640",
+      "state": "Alive",
+      "cluster": "clustera",
+      "disktype": "SATA",
+      "gpu": 7,
+      "ib_rate": 0,
+      "besteffort": "YES",
+      "links": [
+        {
+          "rel": "member",
+          "title": "node",
+          "href": "//oarapi/resources/nodes/clustera-2.fakesite.grid5000.fr"
+        },
+        {
+          "href": "//oarapi/resources/25",
+          "rel": "self"
+        },
+        {
+          "href": "//oarapi/resources/25/jobs",
+          "title": "jobs",
+          "rel": "collection"
+        }
+      ],
+      "cpuset": 8,
+      "available_upto": 2147483647,
+      "type": "default",
+      "production": "YES",
+      "opa_count": 0,
+      "id": 25,
+      "opa_rate": 0,
+      "memnode": 131072,
+      "desktop_computing": "NO",
+      "opa": "NO",
+      "eth_rate": 10,
+      "last_job_date": 0
+    },
+    {
+      "id": 26,
+      "opa_count": 0,
+      "type": "default",
+      "production": "YES",
+      "cpuset": 9,
+      "links": [
+        {
+          "href": "//oarapi/resources/nodes/clustera-2.fakesite.grid5000.fr",
+          "title": "node",
+          "rel": "member"
+        },
+        {
+          "href": "//oarapi/resources/26",
+          "rel": "self"
+        },
+        {
+          "rel": "collection",
+          "title": "jobs",
+          "href": "//oarapi/resources/26/jobs"
+        }
+      ],
+      "available_upto": 2147483647,
+      "ib_rate": 0,
+      "besteffort": "YES",
+      "last_job_date": 0,
+      "eth_rate": 10,
+      "opa": "NO",
+      "memnode": 131072,
+      "desktop_computing": "NO",
+      "opa_rate": 0,
+      "myri_rate": 0,
+      "api_timestamp": 1568902577,
+      "cpucore": 8,
+      "scheduler_priority": 0,
+      "last_available_upto": 0,
+      "finaud_decision": "NO",
+      "gpu": 7,
+      "state": "Alive",
+      "cluster": "clustera",
+      "disktype": "SATA",
+      "nodemodel": "Dell PowerEdge T640",
+      "expiry_date": 0,
+      "memcpu": 65536,
+      "deploy": "NO",
+      "memcore": 8192,
+      "cpufreq": "2.1",
+      "cputype": "Intel Xeon Silver 4110",
+      "virtual": "ivt",
+      "cpu": 4,
+      "drain": "NO",
+      "suspended_jobs": "NO",
+      "disk_reservation_count": 0,
+      "ib": "NO",
+      "network_address": "clustera-2.fakesite.grid5000.fr",
+      "state_num": 1,
+      "max_walltime": 86400,
+      "myri": "NO",
+      "core": 26,
+      "myri_count": 0,
+      "ip": "172.16.64.2",
+      "gpu_count": 4,
+      "cluster_priority": 201906,
+      "maintenance": "NO",
+      "next_state": "UnChanged",
+      "gpudevice": 2,
+      "cpuarch": "x86_64",
+      "host": "clustera-2.fakesite.grid5000.fr",
+      "next_finaud_decision": "NO",
+      "wattmeter": "MULTIPLE",
+      "eth_count": 1,
+      "switch": "gw-fakesite",
+      "mic": "NO",
+      "gpu_model": "GeForce RTX 2080 Ti",
+      "ib_count": 0
+    },
+    {
+      "opa_rate": 0,
+      "memnode": 131072,
+      "desktop_computing": "NO",
+      "eth_rate": 10,
+      "opa": "NO",
+      "last_job_date": 0,
+      "ib_rate": 0,
+      "besteffort": "YES",
+      "links": [
+        {
+          "rel": "member",
+          "href": "//oarapi/resources/nodes/clustera-2.fakesite.grid5000.fr",
+          "title": "node"
+        },
+        {
+          "rel": "self",
+          "href": "//oarapi/resources/27"
+        },
+        {
+          "href": "//oarapi/resources/27/jobs",
+          "title": "jobs",
+          "rel": "collection"
+        }
+      ],
+      "cpuset": 10,
+      "available_upto": 2147483647,
+      "type": "default",
+      "production": "YES",
+      "opa_count": 0,
+      "id": 27,
+      "nodemodel": "Dell PowerEdge T640",
+      "expiry_date": 0,
+      "state": "Alive",
+      "disktype": "SATA",
+      "cluster": "clustera",
+      "gpu": 7,
+      "finaud_decision": "NO",
+      "last_available_upto": 0,
+      "cpucore": 8,
+      "scheduler_priority": 0,
+      "myri_rate": 0,
+      "api_timestamp": 1568902577,
+      "core": 27,
+      "myri_count": 0,
+      "ip": "172.16.64.2",
+      "myri": "NO",
+      "max_walltime": 86400,
+      "network_address": "clustera-2.fakesite.grid5000.fr",
+      "state_num": 1,
+      "suspended_jobs": "NO",
+      "ib": "NO",
+      "disk_reservation_count": 0,
+      "drain": "NO",
+      "cputype": "Intel Xeon Silver 4110",
+      "virtual": "ivt",
+      "cpu": 4,
+      "deploy": "NO",
+      "memcore": 8192,
+      "cpufreq": "2.1",
+      "memcpu": 65536,
+      "gpu_model": "GeForce RTX 2080 Ti",
+      "ib_count": 0,
+      "mic": "NO",
+      "switch": "gw-fakesite",
+      "eth_count": 1,
+      "wattmeter": "MULTIPLE",
+      "next_finaud_decision": "NO",
+      "gpudevice": 2,
+      "cpuarch": "x86_64",
+      "host": "clustera-2.fakesite.grid5000.fr",
+      "next_state": "UnChanged",
+      "gpu_count": 4,
+      "cluster_priority": 201906,
+      "maintenance": "NO"
+    },
+    {
+      "next_state": "UnChanged",
+      "maintenance": "NO",
+      "cluster_priority": 201906,
+      "gpu_count": 4,
+      "next_finaud_decision": "NO",
+      "wattmeter": "MULTIPLE",
+      "cpuarch": "x86_64",
+      "host": "clustera-2.fakesite.grid5000.fr",
+      "gpudevice": 2,
+      "switch": "gw-fakesite",
+      "eth_count": 1,
+      "ib_count": 0,
+      "gpu_model": "GeForce RTX 2080 Ti",
+      "mic": "NO",
+      "cpufreq": "2.1",
+      "memcore": 8192,
+      "deploy": "NO",
+      "memcpu": 65536,
+      "drain": "NO",
+      "cpu": 4,
+      "virtual": "ivt",
+      "cputype": "Intel Xeon Silver 4110",
+      "state_num": 1,
+      "network_address": "clustera-2.fakesite.grid5000.fr",
+      "disk_reservation_count": 0,
+      "ib": "NO",
+      "suspended_jobs": "NO",
+      "core": 28,
+      "myri_count": 0,
+      "ip": "172.16.64.2",
+      "max_walltime": 86400,
+      "myri": "NO",
+      "cpucore": 8,
+      "scheduler_priority": 0,
+      "api_timestamp": 1568902577,
+      "myri_rate": 0,
+      "finaud_decision": "NO",
+      "last_available_upto": 0,
+      "cluster": "clustera",
+      "disktype": "SATA",
+      "state": "Alive",
+      "gpu": 7,
+      "expiry_date": 0,
+      "nodemodel": "Dell PowerEdge T640",
+      "production": "YES",
+      "type": "default",
+      "opa_count": 0,
+      "id": 28,
+      "besteffort": "YES",
+      "ib_rate": 0,
+      "available_upto": 2147483647,
+      "links": [
+        {
+          "rel": "member",
+          "title": "node",
+          "href": "//oarapi/resources/nodes/clustera-2.fakesite.grid5000.fr"
+        },
+        {
+          "href": "//oarapi/resources/28",
+          "rel": "self"
+        },
+        {
+          "rel": "collection",
+          "href": "//oarapi/resources/28/jobs",
+          "title": "jobs"
+        }
+      ],
+      "cpuset": 11,
+      "eth_rate": 10,
+      "opa": "NO",
+      "last_job_date": 0,
+      "opa_rate": 0,
+      "desktop_computing": "NO",
+      "memnode": 131072
+    },
+    {
+      "drain": "NO",
+      "cpu": 4,
+      "virtual": "ivt",
+      "cputype": "Intel Xeon Silver 4110",
+      "memcore": 8192,
+      "cpufreq": "2.1",
+      "deploy": "NO",
+      "memcpu": 65536,
+      "core": 29,
+      "myri_count": 0,
+      "ip": "172.16.64.2",
+      "myri": "NO",
+      "max_walltime": 86400,
+      "state_num": 1,
+      "network_address": "clustera-2.fakesite.grid5000.fr",
+      "disk_reservation_count": 0,
+      "ib": "NO",
+      "suspended_jobs": "NO",
+      "wattmeter": "MULTIPLE",
+      "next_finaud_decision": "NO",
+      "host": "clustera-2.fakesite.grid5000.fr",
+      "cpuarch": "x86_64",
+      "gpudevice": 3,
+      "next_state": "UnChanged",
+      "maintenance": "NO",
+      "cluster_priority": 201906,
+      "gpu_count": 4,
+      "ib_count": 0,
+      "gpu_model": "GeForce RTX 2080 Ti",
+      "mic": "NO",
+      "switch": "gw-fakesite",
+      "eth_count": 1,
+      "besteffort": "YES",
+      "ib_rate": 0,
+      "available_upto": 2147483647,
+      "links": [
+        {
+          "rel": "member",
+          "href": "//oarapi/resources/nodes/clustera-2.fakesite.grid5000.fr",
+          "title": "node"
+        },
+        {
+          "rel": "self",
+          "href": "//oarapi/resources/29"
+        },
+        {
+          "rel": "collection",
+          "href": "//oarapi/resources/29/jobs",
+          "title": "jobs"
+        }
+      ],
+      "cpuset": 12,
+      "production": "YES",
+      "type": "default",
+      "id": 29,
+      "opa_count": 0,
+      "opa_rate": 0,
+      "desktop_computing": "NO",
+      "memnode": 131072,
+      "eth_rate": 10,
+      "opa": "NO",
+      "last_job_date": 0,
+      "finaud_decision": "NO",
+      "last_available_upto": 0,
+      "cpucore": 8,
+      "scheduler_priority": 0,
+      "api_timestamp": 1568902577,
+      "myri_rate": 0,
+      "nodemodel": "Dell PowerEdge T640",
+      "expiry_date": 0,
+      "disktype": "SATA",
+      "cluster": "clustera",
+      "state": "Alive",
+      "gpu": 8
+    },
+    {
+      "gpu": 8,
+      "state": "Alive",
+      "cluster": "clustera",
+      "disktype": "SATA",
+      "expiry_date": 0,
+      "nodemodel": "Dell PowerEdge T640",
+      "myri_rate": 0,
+      "api_timestamp": 1568902577,
+      "cpucore": 8,
+      "scheduler_priority": 0,
+      "last_available_upto": 0,
+      "finaud_decision": "NO",
+      "last_job_date": 0,
+      "opa": "NO",
+      "eth_rate": 10,
+      "memnode": 131072,
+      "desktop_computing": "NO",
+      "opa_rate": 0,
+      "id": 30,
+      "opa_count": 0,
+      "type": "default",
+      "production": "YES",
+      "links": [
+        {
+          "title": "node",
+          "href": "//oarapi/resources/nodes/clustera-2.fakesite.grid5000.fr",
+          "rel": "member"
+        },
+        {
+          "rel": "self",
+          "href": "//oarapi/resources/30"
+        },
+        {
+          "title": "jobs",
+          "href": "//oarapi/resources/30/jobs",
+          "rel": "collection"
+        }
+      ],
+      "cpuset": 13,
+      "available_upto": 2147483647,
+      "ib_rate": 0,
+      "besteffort": "YES",
+      "eth_count": 1,
+      "switch": "gw-fakesite",
+      "mic": "NO",
+      "gpu_model": "GeForce RTX 2080 Ti",
+      "ib_count": 0,
+      "gpu_count": 4,
+      "cluster_priority": 201906,
+      "maintenance": "NO",
+      "next_state": "UnChanged",
+      "gpudevice": 3,
+      "cpuarch": "x86_64",
+      "host": "clustera-2.fakesite.grid5000.fr",
+      "wattmeter": "MULTIPLE",
+      "next_finaud_decision": "NO",
+      "suspended_jobs": "NO",
+      "ib": "NO",
+      "disk_reservation_count": 0,
+      "network_address": "clustera-2.fakesite.grid5000.fr",
+      "state_num": 1,
+      "max_walltime": 86400,
+      "myri": "NO",
+      "myri_count": 0,
+      "core": 30,
+      "ip": "172.16.64.2",
+      "memcpu": 65536,
+      "deploy": "NO",
+      "memcore": 8192,
+      "cpufreq": "2.1",
+      "cputype": "Intel Xeon Silver 4110",
+      "virtual": "ivt",
+      "cpu": 4,
+      "drain": "NO"
+    },
+    {
+      "drain": "NO",
+      "cputype": "Intel Xeon Silver 4110",
+      "virtual": "ivt",
+      "cpu": 4,
+      "deploy": "NO",
+      "cpufreq": "2.1",
+      "memcore": 8192,
+      "memcpu": 65536,
+      "myri_count": 0,
+      "ip": "172.16.64.2",
+      "core": 31,
+      "max_walltime": 86400,
+      "myri": "NO",
+      "state_num": 1,
+      "network_address": "clustera-2.fakesite.grid5000.fr",
+      "suspended_jobs": "NO",
+      "disk_reservation_count": 0,
+      "ib": "NO",
+      "next_finaud_decision": "NO",
+      "wattmeter": "MULTIPLE",
+      "gpudevice": 3,
+      "host": "clustera-2.fakesite.grid5000.fr",
+      "cpuarch": "x86_64",
+      "next_state": "UnChanged",
+      "gpu_count": 4,
+      "cluster_priority": 201906,
+      "maintenance": "NO",
+      "gpu_model": "GeForce RTX 2080 Ti",
+      "ib_count": 0,
+      "mic": "NO",
+      "switch": "gw-fakesite",
+      "eth_count": 1,
+      "ib_rate": 0,
+      "besteffort": "YES",
+      "cpuset": 14,
+      "links": [
+        {
+          "title": "node",
+          "href": "//oarapi/resources/nodes/clustera-2.fakesite.grid5000.fr",
+          "rel": "member"
+        },
+        {
+          "rel": "self",
+          "href": "//oarapi/resources/31"
+        },
+        {
+          "href": "//oarapi/resources/31/jobs",
+          "title": "jobs",
+          "rel": "collection"
+        }
+      ],
+      "available_upto": 2147483647,
+      "type": "default",
+      "production": "YES",
+      "opa_count": 0,
+      "id": 31,
+      "opa_rate": 0,
+      "memnode": 131072,
+      "desktop_computing": "NO",
+      "eth_rate": 10,
+      "opa": "NO",
+      "last_job_date": 0,
+      "finaud_decision": "NO",
+      "last_available_upto": 0,
+      "cpucore": 8,
+      "scheduler_priority": 0,
+      "myri_rate": 0,
+      "api_timestamp": 1568902577,
+      "expiry_date": 0,
+      "nodemodel": "Dell PowerEdge T640",
+      "state": "Alive",
+      "cluster": "clustera",
+      "disktype": "SATA",
+      "gpu": 8
+    },
+    {
+      "switch": "gw-fakesite",
+      "eth_count": 1,
+      "ib_count": 0,
+      "gpu_model": "GeForce RTX 2080 Ti",
+      "mic": "NO",
+      "next_state": "UnChanged",
+      "maintenance": "NO",
+      "cluster_priority": 201906,
+      "gpu_count": 4,
+      "wattmeter": "MULTIPLE",
+      "next_finaud_decision": "NO",
+      "cpuarch": "x86_64",
+      "host": "clustera-2.fakesite.grid5000.fr",
+      "gpudevice": 3,
+      "network_address": "clustera-2.fakesite.grid5000.fr",
+      "state_num": 1,
+      "ib": "NO",
+      "disk_reservation_count": 0,
+      "suspended_jobs": "NO",
+      "myri_count": 0,
+      "core": 32,
+      "ip": "172.16.64.2",
+      "max_walltime": 86400,
+      "myri": "NO",
+      "cpufreq": "2.1",
+      "memcore": 8192,
+      "deploy": "NO",
+      "memcpu": 65536,
+      "drain": "NO",
+      "cpu": 4,
+      "virtual": "ivt",
+      "cputype": "Intel Xeon Silver 4110",
+      "cluster": "clustera",
+      "disktype": "SATA",
+      "state": "Alive",
+      "gpu": 8,
+      "nodemodel": "Dell PowerEdge T640",
+      "expiry_date": 0,
+      "scheduler_priority": 0,
+      "cpucore": 8,
+      "api_timestamp": 1568902577,
+      "myri_rate": 0,
+      "finaud_decision": "NO",
+      "last_available_upto": 0,
+      "opa": "NO",
+      "eth_rate": 10,
+      "last_job_date": 0,
+      "opa_rate": 0,
+      "desktop_computing": "NO",
+      "memnode": 131072,
+      "production": "YES",
+      "type": "default",
+      "opa_count": 0,
+      "id": 32,
+      "besteffort": "YES",
+      "ib_rate": 0,
+      "available_upto": 2147483647,
+      "cpuset": 15,
+      "links": [
+        {
+          "rel": "member",
+          "href": "//oarapi/resources/nodes/clustera-2.fakesite.grid5000.fr",
+          "title": "node"
+        },
+        {
+          "href": "//oarapi/resources/32",
+          "rel": "self"
+        },
+        {
+          "rel": "collection",
+          "href": "//oarapi/resources/32/jobs",
+          "title": "jobs"
+        }
+      ]
+    }
+  ],
+  "total": 32,
+  "links": [
+    {
+      "href": "//oarapi/resources/details.json?limit=999999&offset=0",
+      "rel": "self"
+    }
+  ]
+}
+
diff --git a/spec/stub_oar_properties/dump_oar_api_configured_server_quirk_cluster.json b/spec/stub_oar_properties/dump_oar_api_configured_server_quirk_cluster.json
new file mode 100644
index 0000000000000000000000000000000000000000..7d56c7b0f5eea52c4acace60cc109e7f0f538e62
--- /dev/null
+++ b/spec/stub_oar_properties/dump_oar_api_configured_server_quirk_cluster.json
@@ -0,0 +1,2978 @@
+{
+   "links" : [
+      {
+         "href" : "//oarapi/resources/details.json?limit=999999&offset=0",
+         "rel" : "self"
+      }
+   ],
+   "total" : 38,
+   "offset" : 0,
+   "items" : [
+      {
+         "opa" : "NO",
+         "myri_count" : 0,
+         "cluster" : "clusterc",
+         "cputype" : "Intel Xeon Silver 4110",
+         "api_timestamp" : 1569605253,
+         "cpuset" : 0,
+         "ib_count" : 0,
+         "state" : "Alive",
+         "cpuarch" : "x86_64",
+         "eth_rate" : 10,
+         "nodemodel" : "Dell PowerEdge T640",
+         "gpu" : null,
+         "max_walltime" : 86400,
+         "besteffort" : "YES",
+         "host" : "clusterc-1.fakesite.grid5000.fr",
+         "maintenance" : "NO",
+         "cpucore" : 8,
+         "gpu_model" : null,
+         "opa_rate" : 0,
+         "state_num" : 1,
+         "myri" : "NO",
+         "disktype" : "SATA",
+         "myri_rate" : 0,
+         "next_finaud_decision" : "NO",
+         "cpu" : 1,
+         "drain" : "NO",
+         "core" : 1,
+         "scheduler_priority" : 0,
+         "type" : "default",
+         "cpufreq" : "2.1",
+         "disk_reservation_count" : 3,
+         "eth_count" : 1,
+         "finaud_decision" : "NO",
+         "last_available_upto" : 0,
+         "expiry_date" : 0,
+         "ip" : "172.16.64.1",
+         "suspended_jobs" : "NO",
+         "available_upto" : 2147483647,
+         "deploy" : "NO",
+         "links" : [
+            {
+               "href" : "//oarapi/resources/nodes/clusterc-1.fakesite.grid5000.fr",
+               "rel" : "member",
+               "title" : "node"
+            },
+            {
+               "rel" : "self",
+               "href" : "//oarapi/resources/1"
+            },
+            {
+               "rel" : "collection",
+               "title" : "jobs",
+               "href" : "//oarapi/resources/1/jobs"
+            }
+         ],
+         "last_job_date" : 0,
+         "id" : 1,
+         "memnode" : 131072,
+         "cluster_priority" : 201906,
+         "disk" : null,
+         "switch" : null,
+         "gpu_count" : 0,
+         "wattmeter" : "MULTIPLE",
+         "memcore" : 8192,
+         "diskpath" : null,
+         "virtual" : "ivt",
+         "network_address" : "clusterc-1.fakesite.grid5000.fr",
+         "ib_rate" : 0,
+         "mic" : "NO",
+         "gpudevice" : null,
+         "desktop_computing" : "NO",
+         "next_state" : "UnChanged",
+         "memcpu" : 65536,
+         "opa_count" : 0,
+         "production" : "YES",
+         "ib" : "NO"
+      },
+      {
+         "cpu" : 1,
+         "next_finaud_decision" : "NO",
+         "scheduler_priority" : 0,
+         "type" : "default",
+         "core" : 3,
+         "drain" : "NO",
+         "disktype" : "SATA",
+         "myri" : "NO",
+         "myri_rate" : 0,
+         "last_available_upto" : 0,
+         "expiry_date" : 0,
+         "disk_reservation_count" : 3,
+         "cpufreq" : "2.1",
+         "finaud_decision" : "NO",
+         "eth_count" : 1,
+         "state" : "Alive",
+         "ib_count" : 0,
+         "cpuset" : 1,
+         "eth_rate" : 10,
+         "cpuarch" : "x86_64",
+         "cluster" : "clusterc",
+         "cputype" : "Intel Xeon Silver 4110",
+         "myri_count" : 0,
+         "opa" : "NO",
+         "api_timestamp" : 1569605253,
+         "maintenance" : "NO",
+         "gpu_model" : null,
+         "host" : "clusterc-1.fakesite.grid5000.fr",
+         "cpucore" : 8,
+         "besteffort" : "YES",
+         "state_num" : 1,
+         "opa_rate" : 0,
+         "gpu" : null,
+         "max_walltime" : 86400,
+         "nodemodel" : "Dell PowerEdge T640",
+         "gpudevice" : null,
+         "desktop_computing" : "NO",
+         "mic" : "NO",
+         "ib_rate" : 0,
+         "network_address" : "clusterc-1.fakesite.grid5000.fr",
+         "virtual" : "ivt",
+         "ib" : "NO",
+         "production" : "YES",
+         "memcpu" : 65536,
+         "next_state" : "UnChanged",
+         "opa_count" : 0,
+         "id" : 2,
+         "links" : [
+            {
+               "href" : "//oarapi/resources/nodes/clusterc-1.fakesite.grid5000.fr",
+               "rel" : "member",
+               "title" : "node"
+            },
+            {
+               "rel" : "self",
+               "href" : "//oarapi/resources/2"
+            },
+            {
+               "href" : "//oarapi/resources/2/jobs",
+               "title" : "jobs",
+               "rel" : "collection"
+            }
+         ],
+         "last_job_date" : 0,
+         "memnode" : 131072,
+         "cluster_priority" : 201906,
+         "ip" : "172.16.64.1",
+         "available_upto" : 2147483647,
+         "deploy" : "NO",
+         "suspended_jobs" : "NO",
+         "memcore" : 8192,
+         "gpu_count" : 0,
+         "wattmeter" : "MULTIPLE",
+         "diskpath" : null,
+         "disk" : null,
+         "switch" : null
+      },
+      {
+         "disk" : null,
+         "switch" : null,
+         "memcore" : 8192,
+         "gpu_count" : 0,
+         "wattmeter" : "MULTIPLE",
+         "diskpath" : null,
+         "ip" : "172.16.64.1",
+         "deploy" : "NO",
+         "available_upto" : 2147483647,
+         "suspended_jobs" : "NO",
+         "links" : [
+            {
+               "rel" : "member",
+               "title" : "node",
+               "href" : "//oarapi/resources/nodes/clusterc-1.fakesite.grid5000.fr"
+            },
+            {
+               "rel" : "self",
+               "href" : "//oarapi/resources/3"
+            },
+            {
+               "href" : "//oarapi/resources/3/jobs",
+               "rel" : "collection",
+               "title" : "jobs"
+            }
+         ],
+         "id" : 3,
+         "last_job_date" : 0,
+         "cluster_priority" : 201906,
+         "memnode" : 131072,
+         "next_state" : "UnChanged",
+         "memcpu" : 65536,
+         "opa_count" : 0,
+         "ib" : "NO",
+         "production" : "YES",
+         "ib_rate" : 0,
+         "virtual" : "ivt",
+         "network_address" : "clusterc-1.fakesite.grid5000.fr",
+         "desktop_computing" : "NO",
+         "gpudevice" : null,
+         "mic" : "NO",
+         "gpu" : null,
+         "max_walltime" : 86400,
+         "nodemodel" : "Dell PowerEdge T640",
+         "gpu_model" : null,
+         "maintenance" : "NO",
+         "host" : "clusterc-1.fakesite.grid5000.fr",
+         "cpucore" : 8,
+         "besteffort" : "YES",
+         "state_num" : 1,
+         "opa_rate" : 0,
+         "cputype" : "Intel Xeon Silver 4110",
+         "cluster" : "clusterc",
+         "opa" : "NO",
+         "myri_count" : 0,
+         "api_timestamp" : 1569605253,
+         "state" : "Alive",
+         "ib_count" : 0,
+         "cpuset" : 2,
+         "cpuarch" : "x86_64",
+         "eth_rate" : 10,
+         "disk_reservation_count" : 3,
+         "cpufreq" : "2.1",
+         "finaud_decision" : "NO",
+         "eth_count" : 1,
+         "last_available_upto" : 0,
+         "expiry_date" : 0,
+         "disktype" : "SATA",
+         "myri" : "NO",
+         "myri_rate" : 0,
+         "cpu" : 1,
+         "next_finaud_decision" : "NO",
+         "scheduler_priority" : 0,
+         "type" : "default",
+         "drain" : "NO",
+         "core" : 2
+      },
+      {
+         "cluster_priority" : 201906,
+         "memnode" : 131072,
+         "links" : [
+            {
+               "href" : "//oarapi/resources/nodes/clusterc-1.fakesite.grid5000.fr",
+               "title" : "node",
+               "rel" : "member"
+            },
+            {
+               "rel" : "self",
+               "href" : "//oarapi/resources/4"
+            },
+            {
+               "href" : "//oarapi/resources/4/jobs",
+               "title" : "jobs",
+               "rel" : "collection"
+            }
+         ],
+         "last_job_date" : 0,
+         "id" : 4,
+         "available_upto" : 2147483647,
+         "deploy" : "NO",
+         "suspended_jobs" : "NO",
+         "ip" : "172.16.64.1",
+         "diskpath" : null,
+         "memcore" : 8192,
+         "gpu_count" : 0,
+         "wattmeter" : "MULTIPLE",
+         "switch" : null,
+         "disk" : null,
+         "gpudevice" : null,
+         "desktop_computing" : "NO",
+         "mic" : "NO",
+         "ib_rate" : 0,
+         "network_address" : "clusterc-1.fakesite.grid5000.fr",
+         "virtual" : "ivt",
+         "production" : "YES",
+         "ib" : "NO",
+         "opa_count" : 0,
+         "next_state" : "UnChanged",
+         "memcpu" : 65536,
+         "cpuarch" : "x86_64",
+         "eth_rate" : 10,
+         "state" : "Alive",
+         "ib_count" : 0,
+         "cpuset" : 3,
+         "api_timestamp" : 1569605253,
+         "cluster" : "clusterc",
+         "cputype" : "Intel Xeon Silver 4110",
+         "opa" : "NO",
+         "myri_count" : 0,
+         "state_num" : 1,
+         "opa_rate" : 0,
+         "maintenance" : "NO",
+         "host" : "clusterc-1.fakesite.grid5000.fr",
+         "gpu_model" : null,
+         "cpucore" : 8,
+         "besteffort" : "YES",
+         "gpu" : null,
+         "max_walltime" : 86400,
+         "nodemodel" : "Dell PowerEdge T640",
+         "type" : "default",
+         "scheduler_priority" : 0,
+         "core" : 4,
+         "drain" : "NO",
+         "cpu" : 1,
+         "next_finaud_decision" : "NO",
+         "myri_rate" : 0,
+         "disktype" : "SATA",
+         "myri" : "NO",
+         "expiry_date" : 0,
+         "last_available_upto" : 0,
+         "finaud_decision" : "NO",
+         "eth_count" : 1,
+         "disk_reservation_count" : 3,
+         "cpufreq" : "2.1"
+      },
+      {
+         "finaud_decision" : "NO",
+         "eth_count" : 1,
+         "disk_reservation_count" : 3,
+         "cpufreq" : "2.1",
+         "expiry_date" : 0,
+         "last_available_upto" : 0,
+         "myri_rate" : 0,
+         "disktype" : "SATA",
+         "myri" : "NO",
+         "scheduler_priority" : 0,
+         "type" : "default",
+         "drain" : "NO",
+         "core" : 5,
+         "next_finaud_decision" : "NO",
+         "cpu" : 1,
+         "gpu" : null,
+         "max_walltime" : 86400,
+         "nodemodel" : "Dell PowerEdge T640",
+         "state_num" : 1,
+         "opa_rate" : 0,
+         "host" : "clusterc-1.fakesite.grid5000.fr",
+         "maintenance" : "NO",
+         "cpucore" : 8,
+         "gpu_model" : null,
+         "besteffort" : "YES",
+         "api_timestamp" : 1569605253,
+         "cluster" : "clusterc",
+         "cputype" : "Intel Xeon Silver 4110",
+         "myri_count" : 0,
+         "opa" : "NO",
+         "eth_rate" : 10,
+         "cpuarch" : "x86_64",
+         "state" : "Alive",
+         "ib_count" : 0,
+         "cpuset" : 4,
+         "opa_count" : 0,
+         "next_state" : "UnChanged",
+         "memcpu" : 65536,
+         "ib" : "NO",
+         "production" : "YES",
+         "ib_rate" : 0,
+         "virtual" : "ivt",
+         "network_address" : "clusterc-1.fakesite.grid5000.fr",
+         "gpudevice" : null,
+         "desktop_computing" : "NO",
+         "mic" : "NO",
+         "switch" : null,
+         "disk" : null,
+         "diskpath" : null,
+         "memcore" : 8192,
+         "gpu_count" : 0,
+         "wattmeter" : "MULTIPLE",
+         "deploy" : "NO",
+         "available_upto" : 2147483647,
+         "suspended_jobs" : "NO",
+         "ip" : "172.16.64.1",
+         "memnode" : 131072,
+         "cluster_priority" : 201906,
+         "last_job_date" : 0,
+         "links" : [
+            {
+               "href" : "//oarapi/resources/nodes/clusterc-1.fakesite.grid5000.fr",
+               "title" : "node",
+               "rel" : "member"
+            },
+            {
+               "rel" : "self",
+               "href" : "//oarapi/resources/5"
+            },
+            {
+               "title" : "jobs",
+               "rel" : "collection",
+               "href" : "//oarapi/resources/5/jobs"
+            }
+         ],
+         "id" : 5
+      },
+      {
+         "besteffort" : "YES",
+         "host" : "clusterc-1.fakesite.grid5000.fr",
+         "maintenance" : "NO",
+         "gpu_model" : null,
+         "cpucore" : 8,
+         "opa_rate" : 0,
+         "state_num" : 1,
+         "nodemodel" : "Dell PowerEdge T640",
+         "gpu" : null,
+         "max_walltime" : 86400,
+         "cpuset" : 5,
+         "ib_count" : 0,
+         "state" : "Alive",
+         "eth_rate" : 10,
+         "cpuarch" : "x86_64",
+         "opa" : "NO",
+         "myri_count" : 0,
+         "cputype" : "Intel Xeon Silver 4110",
+         "cluster" : "clusterc",
+         "api_timestamp" : 1569605253,
+         "last_available_upto" : 0,
+         "expiry_date" : 0,
+         "cpufreq" : "2.1",
+         "disk_reservation_count" : 3,
+         "eth_count" : 1,
+         "finaud_decision" : "NO",
+         "cpu" : 1,
+         "next_finaud_decision" : "NO",
+         "core" : 6,
+         "drain" : "NO",
+         "type" : "default",
+         "scheduler_priority" : 0,
+         "myri" : "NO",
+         "disktype" : "SATA",
+         "myri_rate" : 0,
+         "wattmeter" : "MULTIPLE",
+         "gpu_count" : 0,
+         "memcore" : 8192,
+         "diskpath" : null,
+         "disk" : null,
+         "switch" : null,
+         "links" : [
+            {
+               "href" : "//oarapi/resources/nodes/clusterc-1.fakesite.grid5000.fr",
+               "title" : "node",
+               "rel" : "member"
+            },
+            {
+               "href" : "//oarapi/resources/6",
+               "rel" : "self"
+            },
+            {
+               "rel" : "collection",
+               "title" : "jobs",
+               "href" : "//oarapi/resources/6/jobs"
+            }
+         ],
+         "last_job_date" : 0,
+         "id" : 6,
+         "cluster_priority" : 201906,
+         "memnode" : 131072,
+         "ip" : "172.16.64.1",
+         "suspended_jobs" : "NO",
+         "available_upto" : 2147483647,
+         "deploy" : "NO",
+         "ib" : "NO",
+         "production" : "YES",
+         "next_state" : "UnChanged",
+         "memcpu" : 65536,
+         "opa_count" : 0,
+         "mic" : "NO",
+         "gpudevice" : null,
+         "desktop_computing" : "NO",
+         "virtual" : "ivt",
+         "network_address" : "clusterc-1.fakesite.grid5000.fr",
+         "ib_rate" : 0
+      },
+      {
+         "next_state" : "UnChanged",
+         "memcpu" : 65536,
+         "opa_count" : 0,
+         "ib" : "NO",
+         "production" : "YES",
+         "ib_rate" : 0,
+         "virtual" : "ivt",
+         "network_address" : "clusterc-1.fakesite.grid5000.fr",
+         "desktop_computing" : "NO",
+         "gpudevice" : null,
+         "mic" : "NO",
+         "disk" : null,
+         "switch" : null,
+         "memcore" : 8192,
+         "gpu_count" : 0,
+         "wattmeter" : "MULTIPLE",
+         "diskpath" : null,
+         "ip" : "172.16.64.1",
+         "available_upto" : 2147483647,
+         "deploy" : "NO",
+         "suspended_jobs" : "NO",
+         "last_job_date" : 0,
+         "links" : [
+            {
+               "href" : "//oarapi/resources/nodes/clusterc-1.fakesite.grid5000.fr",
+               "title" : "node",
+               "rel" : "member"
+            },
+            {
+               "rel" : "self",
+               "href" : "//oarapi/resources/7"
+            },
+            {
+               "href" : "//oarapi/resources/7/jobs",
+               "title" : "jobs",
+               "rel" : "collection"
+            }
+         ],
+         "id" : 7,
+         "cluster_priority" : 201906,
+         "memnode" : 131072,
+         "disk_reservation_count" : 3,
+         "cpufreq" : "2.1",
+         "finaud_decision" : "NO",
+         "eth_count" : 1,
+         "last_available_upto" : 0,
+         "expiry_date" : 0,
+         "myri" : "NO",
+         "disktype" : "SATA",
+         "myri_rate" : 0,
+         "cpu" : 1,
+         "next_finaud_decision" : "NO",
+         "scheduler_priority" : 0,
+         "type" : "default",
+         "drain" : "NO",
+         "core" : 7,
+         "gpu" : null,
+         "max_walltime" : 86400,
+         "nodemodel" : "Dell PowerEdge T640",
+         "gpu_model" : null,
+         "maintenance" : "NO",
+         "host" : "clusterc-1.fakesite.grid5000.fr",
+         "cpucore" : 8,
+         "besteffort" : "YES",
+         "state_num" : 1,
+         "opa_rate" : 0,
+         "cputype" : "Intel Xeon Silver 4110",
+         "cluster" : "clusterc",
+         "opa" : "NO",
+         "myri_count" : 0,
+         "api_timestamp" : 1569605253,
+         "ib_count" : 0,
+         "state" : "Alive",
+         "cpuset" : 6,
+         "cpuarch" : "x86_64",
+         "eth_rate" : 10
+      },
+      {
+         "cputype" : "Intel Xeon Silver 4110",
+         "cluster" : "clusterc",
+         "myri_count" : 0,
+         "opa" : "NO",
+         "api_timestamp" : 1569605253,
+         "state" : "Alive",
+         "ib_count" : 0,
+         "cpuset" : 7,
+         "cpuarch" : "x86_64",
+         "eth_rate" : 10,
+         "gpu" : null,
+         "max_walltime" : 86400,
+         "nodemodel" : "Dell PowerEdge T640",
+         "maintenance" : "NO",
+         "cpucore" : 8,
+         "host" : "clusterc-1.fakesite.grid5000.fr",
+         "gpu_model" : null,
+         "besteffort" : "YES",
+         "state_num" : 1,
+         "opa_rate" : 0,
+         "myri" : "NO",
+         "disktype" : "SATA",
+         "myri_rate" : 0,
+         "cpu" : 1,
+         "next_finaud_decision" : "NO",
+         "type" : "default",
+         "scheduler_priority" : 0,
+         "drain" : "NO",
+         "core" : 8,
+         "disk_reservation_count" : 3,
+         "cpufreq" : "2.1",
+         "finaud_decision" : "NO",
+         "eth_count" : 1,
+         "last_available_upto" : 0,
+         "expiry_date" : 0,
+         "ip" : "172.16.64.1",
+         "available_upto" : 2147483647,
+         "deploy" : "NO",
+         "suspended_jobs" : "NO",
+         "id" : 8,
+         "links" : [
+            {
+               "rel" : "member",
+               "title" : "node",
+               "href" : "//oarapi/resources/nodes/clusterc-1.fakesite.grid5000.fr"
+            },
+            {
+               "href" : "//oarapi/resources/8",
+               "rel" : "self"
+            },
+            {
+               "rel" : "collection",
+               "title" : "jobs",
+               "href" : "//oarapi/resources/8/jobs"
+            }
+         ],
+         "last_job_date" : 0,
+         "memnode" : 131072,
+         "cluster_priority" : 201906,
+         "disk" : null,
+         "switch" : null,
+         "memcore" : 8192,
+         "wattmeter" : "MULTIPLE",
+         "gpu_count" : 0,
+         "diskpath" : null,
+         "ib_rate" : 0,
+         "network_address" : "clusterc-1.fakesite.grid5000.fr",
+         "virtual" : "ivt",
+         "gpudevice" : null,
+         "desktop_computing" : "NO",
+         "mic" : "NO",
+         "next_state" : "UnChanged",
+         "memcpu" : 65536,
+         "opa_count" : 0,
+         "production" : "YES",
+         "ib" : "NO"
+      },
+      {
+         "production" : "YES",
+         "ib" : "NO",
+         "opa_count" : 0,
+         "next_state" : "UnChanged",
+         "memcpu" : 65536,
+         "mic" : "NO",
+         "gpudevice" : null,
+         "desktop_computing" : "NO",
+         "virtual" : "ivt",
+         "network_address" : "clusterc-1.fakesite.grid5000.fr",
+         "ib_rate" : 0,
+         "diskpath" : null,
+         "wattmeter" : "MULTIPLE",
+         "gpu_count" : 0,
+         "memcore" : 8192,
+         "switch" : null,
+         "disk" : null,
+         "cluster_priority" : 201906,
+         "memnode" : 131072,
+         "links" : [
+            {
+               "rel" : "member",
+               "title" : "node",
+               "href" : "//oarapi/resources/nodes/clusterc-1.fakesite.grid5000.fr"
+            },
+            {
+               "rel" : "self",
+               "href" : "//oarapi/resources/9"
+            },
+            {
+               "href" : "//oarapi/resources/9/jobs",
+               "rel" : "collection",
+               "title" : "jobs"
+            }
+         ],
+         "last_job_date" : 0,
+         "id" : 9,
+         "suspended_jobs" : "NO",
+         "available_upto" : 2147483647,
+         "deploy" : "NO",
+         "ip" : "172.16.64.1",
+         "expiry_date" : 0,
+         "last_available_upto" : 0,
+         "eth_count" : 1,
+         "finaud_decision" : "NO",
+         "cpufreq" : "2.1",
+         "disk_reservation_count" : 3,
+         "core" : 9,
+         "drain" : "NO",
+         "scheduler_priority" : 0,
+         "type" : "default",
+         "next_finaud_decision" : "NO",
+         "cpu" : 2,
+         "myri_rate" : 0,
+         "myri" : "NO",
+         "disktype" : "SATA",
+         "opa_rate" : 0,
+         "state_num" : 1,
+         "besteffort" : "YES",
+         "maintenance" : "NO",
+         "host" : "clusterc-1.fakesite.grid5000.fr",
+         "cpucore" : 8,
+         "gpu_model" : null,
+         "nodemodel" : "Dell PowerEdge T640",
+         "gpu" : null,
+         "max_walltime" : 86400,
+         "cpuarch" : "x86_64",
+         "eth_rate" : 10,
+         "cpuset" : 8,
+         "ib_count" : 0,
+         "state" : "Alive",
+         "api_timestamp" : 1569605253,
+         "myri_count" : 0,
+         "opa" : "NO",
+         "cputype" : "Intel Xeon Silver 4110",
+         "cluster" : "clusterc"
+      },
+      {
+         "next_state" : "UnChanged",
+         "memcpu" : 65536,
+         "opa_count" : 0,
+         "ib" : "NO",
+         "production" : "YES",
+         "network_address" : "clusterc-1.fakesite.grid5000.fr",
+         "virtual" : "ivt",
+         "ib_rate" : 0,
+         "mic" : "NO",
+         "gpudevice" : null,
+         "desktop_computing" : "NO",
+         "disk" : null,
+         "switch" : null,
+         "wattmeter" : "MULTIPLE",
+         "gpu_count" : 0,
+         "memcore" : 8192,
+         "diskpath" : null,
+         "ip" : "172.16.64.1",
+         "suspended_jobs" : "NO",
+         "available_upto" : 2147483647,
+         "deploy" : "NO",
+         "last_job_date" : 0,
+         "links" : [
+            {
+               "href" : "//oarapi/resources/nodes/clusterc-1.fakesite.grid5000.fr",
+               "title" : "node",
+               "rel" : "member"
+            },
+            {
+               "href" : "//oarapi/resources/10",
+               "rel" : "self"
+            },
+            {
+               "href" : "//oarapi/resources/10/jobs",
+               "title" : "jobs",
+               "rel" : "collection"
+            }
+         ],
+         "id" : 10,
+         "cluster_priority" : 201906,
+         "memnode" : 131072,
+         "cpufreq" : "2.1",
+         "disk_reservation_count" : 3,
+         "eth_count" : 1,
+         "finaud_decision" : "NO",
+         "last_available_upto" : 0,
+         "expiry_date" : 0,
+         "disktype" : "SATA",
+         "myri" : "NO",
+         "myri_rate" : 0,
+         "next_finaud_decision" : "NO",
+         "cpu" : 2,
+         "drain" : "NO",
+         "core" : 10,
+         "type" : "default",
+         "scheduler_priority" : 0,
+         "nodemodel" : "Dell PowerEdge T640",
+         "max_walltime" : 86400,
+         "gpu" : null,
+         "besteffort" : "YES",
+         "maintenance" : "NO",
+         "host" : "clusterc-1.fakesite.grid5000.fr",
+         "gpu_model" : null,
+         "cpucore" : 8,
+         "opa_rate" : 0,
+         "state_num" : 1,
+         "myri_count" : 0,
+         "opa" : "NO",
+         "cluster" : "clusterc",
+         "cputype" : "Intel Xeon Silver 4110",
+         "api_timestamp" : 1569605253,
+         "cpuset" : 9,
+         "ib_count" : 0,
+         "state" : "Alive",
+         "eth_rate" : 10,
+         "cpuarch" : "x86_64"
+      },
+      {
+         "cpu" : 2,
+         "next_finaud_decision" : "NO",
+         "core" : 11,
+         "drain" : "NO",
+         "scheduler_priority" : 0,
+         "type" : "default",
+         "myri" : "NO",
+         "disktype" : "SATA",
+         "myri_rate" : 0,
+         "last_available_upto" : 0,
+         "expiry_date" : 0,
+         "cpufreq" : "2.1",
+         "disk_reservation_count" : 3,
+         "eth_count" : 1,
+         "finaud_decision" : "NO",
+         "cpuset" : 10,
+         "state" : "Alive",
+         "ib_count" : 0,
+         "eth_rate" : 10,
+         "cpuarch" : "x86_64",
+         "opa" : "NO",
+         "myri_count" : 0,
+         "cluster" : "clusterc",
+         "cputype" : "Intel Xeon Silver 4110",
+         "api_timestamp" : 1569605253,
+         "besteffort" : "YES",
+         "gpu_model" : null,
+         "maintenance" : "NO",
+         "cpucore" : 8,
+         "host" : "clusterc-1.fakesite.grid5000.fr",
+         "opa_rate" : 0,
+         "state_num" : 1,
+         "nodemodel" : "Dell PowerEdge T640",
+         "max_walltime" : 86400,
+         "gpu" : null,
+         "mic" : "NO",
+         "gpudevice" : null,
+         "desktop_computing" : "NO",
+         "network_address" : "clusterc-1.fakesite.grid5000.fr",
+         "virtual" : "ivt",
+         "ib_rate" : 0,
+         "production" : "YES",
+         "ib" : "NO",
+         "next_state" : "UnChanged",
+         "memcpu" : 65536,
+         "opa_count" : 0,
+         "links" : [
+            {
+               "href" : "//oarapi/resources/nodes/clusterc-1.fakesite.grid5000.fr",
+               "title" : "node",
+               "rel" : "member"
+            },
+            {
+               "rel" : "self",
+               "href" : "//oarapi/resources/11"
+            },
+            {
+               "href" : "//oarapi/resources/11/jobs",
+               "rel" : "collection",
+               "title" : "jobs"
+            }
+         ],
+         "last_job_date" : 0,
+         "id" : 11,
+         "cluster_priority" : 201906,
+         "memnode" : 131072,
+         "ip" : "172.16.64.1",
+         "suspended_jobs" : "NO",
+         "deploy" : "NO",
+         "available_upto" : 2147483647,
+         "wattmeter" : "MULTIPLE",
+         "gpu_count" : 0,
+         "memcore" : 8192,
+         "diskpath" : null,
+         "disk" : null,
+         "switch" : null
+      },
+      {
+         "myri_rate" : 0,
+         "myri" : "NO",
+         "disktype" : "SATA",
+         "drain" : "NO",
+         "core" : 12,
+         "scheduler_priority" : 0,
+         "type" : "default",
+         "next_finaud_decision" : "NO",
+         "cpu" : 2,
+         "eth_count" : 1,
+         "finaud_decision" : "NO",
+         "cpufreq" : "2.1",
+         "disk_reservation_count" : 3,
+         "expiry_date" : 0,
+         "last_available_upto" : 0,
+         "api_timestamp" : 1569605253,
+         "myri_count" : 0,
+         "opa" : "NO",
+         "cluster" : "clusterc",
+         "cputype" : "Intel Xeon Silver 4110",
+         "cpuarch" : "x86_64",
+         "eth_rate" : 10,
+         "cpuset" : 11,
+         "ib_count" : 0,
+         "state" : "Alive",
+         "nodemodel" : "Dell PowerEdge T640",
+         "max_walltime" : 86400,
+         "gpu" : null,
+         "opa_rate" : 0,
+         "state_num" : 1,
+         "besteffort" : "YES",
+         "maintenance" : "NO",
+         "host" : "clusterc-1.fakesite.grid5000.fr",
+         "gpu_model" : null,
+         "cpucore" : 8,
+         "virtual" : "ivt",
+         "network_address" : "clusterc-1.fakesite.grid5000.fr",
+         "ib_rate" : 0,
+         "mic" : "NO",
+         "desktop_computing" : "NO",
+         "gpudevice" : null,
+         "opa_count" : 0,
+         "memcpu" : 65536,
+         "next_state" : "UnChanged",
+         "ib" : "NO",
+         "production" : "YES",
+         "suspended_jobs" : "NO",
+         "available_upto" : 2147483647,
+         "deploy" : "NO",
+         "ip" : "172.16.64.1",
+         "memnode" : 131072,
+         "cluster_priority" : 201906,
+         "id" : 12,
+         "links" : [
+            {
+               "rel" : "member",
+               "title" : "node",
+               "href" : "//oarapi/resources/nodes/clusterc-1.fakesite.grid5000.fr"
+            },
+            {
+               "href" : "//oarapi/resources/12",
+               "rel" : "self"
+            },
+            {
+               "title" : "jobs",
+               "rel" : "collection",
+               "href" : "//oarapi/resources/12/jobs"
+            }
+         ],
+         "last_job_date" : 0,
+         "switch" : null,
+         "disk" : null,
+         "diskpath" : null,
+         "wattmeter" : "MULTIPLE",
+         "gpu_count" : 0,
+         "memcore" : 8192
+      },
+      {
+         "expiry_date" : 0,
+         "last_available_upto" : 0,
+         "eth_count" : 1,
+         "finaud_decision" : "NO",
+         "cpufreq" : "2.1",
+         "disk_reservation_count" : 3,
+         "core" : 13,
+         "drain" : "NO",
+         "scheduler_priority" : 0,
+         "type" : "default",
+         "cpu" : 2,
+         "next_finaud_decision" : "NO",
+         "myri_rate" : 0,
+         "disktype" : "SATA",
+         "myri" : "NO",
+         "opa_rate" : 0,
+         "state_num" : 1,
+         "besteffort" : "YES",
+         "host" : "clusterc-1.fakesite.grid5000.fr",
+         "maintenance" : "NO",
+         "gpu_model" : null,
+         "cpucore" : 8,
+         "nodemodel" : "Dell PowerEdge T640",
+         "gpu" : null,
+         "max_walltime" : 86400,
+         "eth_rate" : 10,
+         "cpuarch" : "x86_64",
+         "cpuset" : 12,
+         "ib_count" : 0,
+         "state" : "Alive",
+         "api_timestamp" : 1569605253,
+         "opa" : "NO",
+         "myri_count" : 0,
+         "cputype" : "Intel Xeon Silver 4110",
+         "cluster" : "clusterc",
+         "ib" : "NO",
+         "production" : "YES",
+         "opa_count" : 0,
+         "next_state" : "UnChanged",
+         "memcpu" : 65536,
+         "mic" : "NO",
+         "desktop_computing" : "NO",
+         "gpudevice" : null,
+         "network_address" : "clusterc-1.fakesite.grid5000.fr",
+         "virtual" : "ivt",
+         "ib_rate" : 0,
+         "diskpath" : null,
+         "wattmeter" : "MULTIPLE",
+         "gpu_count" : 0,
+         "memcore" : 8192,
+         "switch" : null,
+         "disk" : null,
+         "cluster_priority" : 201906,
+         "memnode" : 131072,
+         "last_job_date" : 0,
+         "links" : [
+            {
+               "href" : "//oarapi/resources/nodes/clusterc-1.fakesite.grid5000.fr",
+               "title" : "node",
+               "rel" : "member"
+            },
+            {
+               "rel" : "self",
+               "href" : "//oarapi/resources/13"
+            },
+            {
+               "title" : "jobs",
+               "rel" : "collection",
+               "href" : "//oarapi/resources/13/jobs"
+            }
+         ],
+         "id" : 13,
+         "suspended_jobs" : "NO",
+         "available_upto" : 2147483647,
+         "deploy" : "NO",
+         "ip" : "172.16.64.1"
+      },
+      {
+         "cluster" : "clusterc",
+         "cputype" : "Intel Xeon Silver 4110",
+         "opa" : "NO",
+         "myri_count" : 0,
+         "api_timestamp" : 1569605253,
+         "state" : "Alive",
+         "ib_count" : 0,
+         "cpuset" : 13,
+         "cpuarch" : "x86_64",
+         "eth_rate" : 10,
+         "max_walltime" : 86400,
+         "gpu" : null,
+         "nodemodel" : "Dell PowerEdge T640",
+         "host" : "clusterc-1.fakesite.grid5000.fr",
+         "maintenance" : "NO",
+         "gpu_model" : null,
+         "cpucore" : 8,
+         "besteffort" : "YES",
+         "state_num" : 1,
+         "opa_rate" : 0,
+         "myri" : "NO",
+         "disktype" : "SATA",
+         "myri_rate" : 0,
+         "next_finaud_decision" : "NO",
+         "cpu" : 2,
+         "scheduler_priority" : 0,
+         "type" : "default",
+         "core" : 14,
+         "drain" : "NO",
+         "disk_reservation_count" : 3,
+         "cpufreq" : "2.1",
+         "finaud_decision" : "NO",
+         "eth_count" : 1,
+         "last_available_upto" : 0,
+         "expiry_date" : 0,
+         "ip" : "172.16.64.1",
+         "available_upto" : 2147483647,
+         "deploy" : "NO",
+         "suspended_jobs" : "NO",
+         "links" : [
+            {
+               "title" : "node",
+               "rel" : "member",
+               "href" : "//oarapi/resources/nodes/clusterc-1.fakesite.grid5000.fr"
+            },
+            {
+               "href" : "//oarapi/resources/14",
+               "rel" : "self"
+            },
+            {
+               "rel" : "collection",
+               "title" : "jobs",
+               "href" : "//oarapi/resources/14/jobs"
+            }
+         ],
+         "last_job_date" : 0,
+         "id" : 14,
+         "memnode" : 131072,
+         "cluster_priority" : 201906,
+         "disk" : null,
+         "switch" : null,
+         "memcore" : 8192,
+         "gpu_count" : 0,
+         "wattmeter" : "MULTIPLE",
+         "diskpath" : null,
+         "ib_rate" : 0,
+         "network_address" : "clusterc-1.fakesite.grid5000.fr",
+         "virtual" : "ivt",
+         "gpudevice" : null,
+         "desktop_computing" : "NO",
+         "mic" : "NO",
+         "memcpu" : 65536,
+         "next_state" : "UnChanged",
+         "opa_count" : 0,
+         "production" : "YES",
+         "ib" : "NO"
+      },
+      {
+         "besteffort" : "YES",
+         "maintenance" : "NO",
+         "host" : "clusterc-1.fakesite.grid5000.fr",
+         "cpucore" : 8,
+         "gpu_model" : null,
+         "opa_rate" : 0,
+         "state_num" : 1,
+         "nodemodel" : "Dell PowerEdge T640",
+         "max_walltime" : 86400,
+         "gpu" : null,
+         "cpuset" : 14,
+         "ib_count" : 0,
+         "state" : "Alive",
+         "cpuarch" : "x86_64",
+         "eth_rate" : 10,
+         "myri_count" : 0,
+         "opa" : "NO",
+         "cputype" : "Intel Xeon Silver 4110",
+         "cluster" : "clusterc",
+         "api_timestamp" : 1569605253,
+         "last_available_upto" : 0,
+         "expiry_date" : 0,
+         "cpufreq" : "2.1",
+         "disk_reservation_count" : 3,
+         "eth_count" : 1,
+         "finaud_decision" : "NO",
+         "next_finaud_decision" : "NO",
+         "cpu" : 2,
+         "core" : 15,
+         "drain" : "NO",
+         "type" : "default",
+         "scheduler_priority" : 0,
+         "myri" : "NO",
+         "disktype" : "SATA",
+         "myri_rate" : 0,
+         "gpu_count" : 0,
+         "wattmeter" : "MULTIPLE",
+         "memcore" : 8192,
+         "diskpath" : null,
+         "disk" : null,
+         "switch" : null,
+         "links" : [
+            {
+               "href" : "//oarapi/resources/nodes/clusterc-1.fakesite.grid5000.fr",
+               "rel" : "member",
+               "title" : "node"
+            },
+            {
+               "rel" : "self",
+               "href" : "//oarapi/resources/15"
+            },
+            {
+               "title" : "jobs",
+               "rel" : "collection",
+               "href" : "//oarapi/resources/15/jobs"
+            }
+         ],
+         "last_job_date" : 0,
+         "id" : 15,
+         "cluster_priority" : 201906,
+         "memnode" : 131072,
+         "ip" : "172.16.64.1",
+         "suspended_jobs" : "NO",
+         "deploy" : "NO",
+         "available_upto" : 2147483647,
+         "production" : "YES",
+         "ib" : "NO",
+         "next_state" : "UnChanged",
+         "memcpu" : 65536,
+         "opa_count" : 0,
+         "mic" : "NO",
+         "gpudevice" : null,
+         "desktop_computing" : "NO",
+         "network_address" : "clusterc-1.fakesite.grid5000.fr",
+         "virtual" : "ivt",
+         "ib_rate" : 0
+      },
+      {
+         "ib" : "NO",
+         "production" : "YES",
+         "next_state" : "UnChanged",
+         "memcpu" : 65536,
+         "opa_count" : 0,
+         "mic" : "NO",
+         "gpudevice" : null,
+         "desktop_computing" : "NO",
+         "virtual" : "ivt",
+         "network_address" : "clusterc-1.fakesite.grid5000.fr",
+         "ib_rate" : 0,
+         "wattmeter" : "MULTIPLE",
+         "gpu_count" : 0,
+         "memcore" : 8192,
+         "diskpath" : null,
+         "disk" : null,
+         "switch" : null,
+         "links" : [
+            {
+               "href" : "//oarapi/resources/nodes/clusterc-1.fakesite.grid5000.fr",
+               "title" : "node",
+               "rel" : "member"
+            },
+            {
+               "href" : "//oarapi/resources/16",
+               "rel" : "self"
+            },
+            {
+               "href" : "//oarapi/resources/16/jobs",
+               "title" : "jobs",
+               "rel" : "collection"
+            }
+         ],
+         "id" : 16,
+         "last_job_date" : 0,
+         "cluster_priority" : 201906,
+         "memnode" : 131072,
+         "ip" : "172.16.64.1",
+         "suspended_jobs" : "NO",
+         "available_upto" : 2147483647,
+         "deploy" : "NO",
+         "last_available_upto" : 0,
+         "expiry_date" : 0,
+         "cpufreq" : "2.1",
+         "disk_reservation_count" : 3,
+         "eth_count" : 1,
+         "finaud_decision" : "NO",
+         "next_finaud_decision" : "NO",
+         "cpu" : 2,
+         "drain" : "NO",
+         "core" : 16,
+         "type" : "default",
+         "scheduler_priority" : 0,
+         "myri" : "NO",
+         "disktype" : "SATA",
+         "myri_rate" : 0,
+         "besteffort" : "YES",
+         "maintenance" : "NO",
+         "host" : "clusterc-1.fakesite.grid5000.fr",
+         "gpu_model" : null,
+         "cpucore" : 8,
+         "opa_rate" : 0,
+         "state_num" : 1,
+         "nodemodel" : "Dell PowerEdge T640",
+         "max_walltime" : 86400,
+         "gpu" : null,
+         "cpuset" : 15,
+         "ib_count" : 0,
+         "state" : "Alive",
+         "cpuarch" : "x86_64",
+         "eth_rate" : 10,
+         "opa" : "NO",
+         "myri_count" : 0,
+         "cluster" : "clusterc",
+         "cputype" : "Intel Xeon Silver 4110",
+         "api_timestamp" : 1569605253
+      },
+      {
+         "opa_count" : null,
+         "next_state" : "UnChanged",
+         "memcpu" : null,
+         "ib" : null,
+         "production" : "YES",
+         "ib_rate" : null,
+         "virtual" : null,
+         "network_address" : "",
+         "gpudevice" : null,
+         "desktop_computing" : "NO",
+         "mic" : null,
+         "switch" : null,
+         "disk" : "sdb.clusterc-1",
+         "diskpath" : "/dev/disk/by-path/pci-0000:02:00.0-scsi-0:0:1:0",
+         "memcore" : null,
+         "wattmeter" : null,
+         "gpu_count" : null,
+         "deploy" : "YES",
+         "available_upto" : 0,
+         "suspended_jobs" : "NO",
+         "ip" : null,
+         "memnode" : null,
+         "cluster_priority" : null,
+         "links" : [
+            {
+               "href" : "//oarapi/resources/nodes/",
+               "title" : "node",
+               "rel" : "member"
+            },
+            {
+               "href" : "//oarapi/resources/17",
+               "rel" : "self"
+            },
+            {
+               "href" : "//oarapi/resources/17/jobs",
+               "rel" : "collection",
+               "title" : "jobs"
+            }
+         ],
+         "id" : 17,
+         "last_job_date" : 0,
+         "finaud_decision" : "NO",
+         "eth_count" : null,
+         "disk_reservation_count" : null,
+         "cpufreq" : null,
+         "expiry_date" : 0,
+         "last_available_upto" : 0,
+         "myri_rate" : null,
+         "myri" : null,
+         "disktype" : null,
+         "scheduler_priority" : 0,
+         "type" : "disk",
+         "core" : null,
+         "drain" : "NO",
+         "cpu" : null,
+         "next_finaud_decision" : "NO",
+         "gpu" : null,
+         "max_walltime" : null,
+         "nodemodel" : null,
+         "state_num" : 1,
+         "opa_rate" : null,
+         "cpucore" : null,
+         "maintenance" : "NO",
+         "host" : "clusterc-1.fakesite.grid5000.fr",
+         "gpu_model" : null,
+         "besteffort" : "YES",
+         "api_timestamp" : 1569605253,
+         "cputype" : null,
+         "cluster" : "clusterc",
+         "myri_count" : null,
+         "opa" : null,
+         "eth_rate" : null,
+         "cpuarch" : null,
+         "state" : "Alive",
+         "ib_count" : null,
+         "cpuset" : -1
+      },
+      {
+         "type" : "disk",
+         "scheduler_priority" : 0,
+         "core" : null,
+         "drain" : "NO",
+         "next_finaud_decision" : "NO",
+         "cpu" : null,
+         "myri_rate" : null,
+         "myri" : null,
+         "disktype" : null,
+         "expiry_date" : 0,
+         "last_available_upto" : 0,
+         "finaud_decision" : "NO",
+         "eth_count" : null,
+         "disk_reservation_count" : null,
+         "cpufreq" : null,
+         "cpuarch" : null,
+         "eth_rate" : null,
+         "ib_count" : null,
+         "state" : "Alive",
+         "cpuset" : -1,
+         "api_timestamp" : 1569605253,
+         "cluster" : "clusterc",
+         "cputype" : null,
+         "myri_count" : null,
+         "opa" : null,
+         "state_num" : 1,
+         "opa_rate" : null,
+         "maintenance" : "NO",
+         "cpucore" : null,
+         "host" : "clusterc-1.fakesite.grid5000.fr",
+         "gpu_model" : null,
+         "besteffort" : "YES",
+         "gpu" : null,
+         "max_walltime" : null,
+         "nodemodel" : null,
+         "gpudevice" : null,
+         "desktop_computing" : "NO",
+         "mic" : null,
+         "ib_rate" : null,
+         "network_address" : "",
+         "virtual" : null,
+         "production" : "YES",
+         "ib" : null,
+         "opa_count" : null,
+         "memcpu" : null,
+         "next_state" : "UnChanged",
+         "memnode" : null,
+         "cluster_priority" : null,
+         "last_job_date" : 0,
+         "links" : [
+            {
+               "href" : "//oarapi/resources/nodes/",
+               "title" : "node",
+               "rel" : "member"
+            },
+            {
+               "rel" : "self",
+               "href" : "//oarapi/resources/18"
+            },
+            {
+               "title" : "jobs",
+               "rel" : "collection",
+               "href" : "//oarapi/resources/18/jobs"
+            }
+         ],
+         "id" : 18,
+         "available_upto" : 0,
+         "deploy" : "YES",
+         "suspended_jobs" : "NO",
+         "ip" : null,
+         "diskpath" : "/dev/disk/by-path/pci-0000:02:00.0-scsi-0:0:2:0",
+         "memcore" : null,
+         "gpu_count" : null,
+         "wattmeter" : null,
+         "switch" : null,
+         "disk" : "sdc.clusterc-1"
+      },
+      {
+         "expiry_date" : 0,
+         "last_available_upto" : 0,
+         "eth_count" : null,
+         "finaud_decision" : "NO",
+         "cpufreq" : null,
+         "disk_reservation_count" : null,
+         "drain" : "NO",
+         "core" : null,
+         "scheduler_priority" : 0,
+         "type" : "disk",
+         "next_finaud_decision" : "NO",
+         "cpu" : null,
+         "myri_rate" : null,
+         "disktype" : null,
+         "myri" : null,
+         "opa_rate" : null,
+         "state_num" : 1,
+         "besteffort" : "YES",
+         "maintenance" : "NO",
+         "host" : "clusterc-1.fakesite.grid5000.fr",
+         "cpucore" : null,
+         "gpu_model" : null,
+         "nodemodel" : null,
+         "max_walltime" : null,
+         "gpu" : null,
+         "eth_rate" : null,
+         "cpuarch" : null,
+         "cpuset" : -1,
+         "state" : "Alive",
+         "ib_count" : null,
+         "api_timestamp" : 1569605253,
+         "myri_count" : null,
+         "opa" : null,
+         "cputype" : null,
+         "cluster" : "clusterc",
+         "ib" : null,
+         "production" : "YES",
+         "opa_count" : null,
+         "next_state" : "UnChanged",
+         "memcpu" : null,
+         "mic" : null,
+         "gpudevice" : null,
+         "desktop_computing" : "NO",
+         "network_address" : "",
+         "virtual" : null,
+         "ib_rate" : null,
+         "diskpath" : "/dev/disk/by-path/pci-0000:02:00.0-scsi-0:0:3:0",
+         "gpu_count" : null,
+         "wattmeter" : null,
+         "memcore" : null,
+         "switch" : null,
+         "disk" : "sdd.clusterc-1",
+         "cluster_priority" : null,
+         "memnode" : null,
+         "links" : [
+            {
+               "title" : "node",
+               "rel" : "member",
+               "href" : "//oarapi/resources/nodes/"
+            },
+            {
+               "rel" : "self",
+               "href" : "//oarapi/resources/19"
+            },
+            {
+               "rel" : "collection",
+               "title" : "jobs",
+               "href" : "//oarapi/resources/19/jobs"
+            }
+         ],
+         "id" : 19,
+         "last_job_date" : 0,
+         "suspended_jobs" : "NO",
+         "available_upto" : 0,
+         "deploy" : "YES",
+         "ip" : null
+      },
+      {
+         "eth_count" : 1,
+         "finaud_decision" : "NO",
+         "cpufreq" : "2.1",
+         "disk_reservation_count" : 3,
+         "expiry_date" : 0,
+         "last_available_upto" : 0,
+         "myri_rate" : 0,
+         "disktype" : "SATA",
+         "myri" : "NO",
+         "drain" : "NO",
+         "core" : 17,
+         "type" : "default",
+         "scheduler_priority" : 0,
+         "next_finaud_decision" : "NO",
+         "cpu" : 3,
+         "nodemodel" : "Dell PowerEdge T640",
+         "max_walltime" : 86400,
+         "gpu" : null,
+         "opa_rate" : 0,
+         "state_num" : 1,
+         "besteffort" : "YES",
+         "maintenance" : "NO",
+         "cpucore" : 8,
+         "host" : "clusterc-2.fakesite.grid5000.fr",
+         "gpu_model" : null,
+         "api_timestamp" : 1569605253,
+         "myri_count" : 0,
+         "opa" : "NO",
+         "cputype" : "Intel Xeon Silver 4110",
+         "cluster" : "clusterc",
+         "eth_rate" : 10,
+         "cpuarch" : "x86_64",
+         "cpuset" : 0,
+         "state" : "Alive",
+         "ib_count" : 0,
+         "opa_count" : 0,
+         "next_state" : "UnChanged",
+         "memcpu" : 65536,
+         "production" : "YES",
+         "ib" : "NO",
+         "virtual" : "ivt",
+         "network_address" : "clusterc-2.fakesite.grid5000.fr",
+         "ib_rate" : 0,
+         "mic" : "NO",
+         "gpudevice" : null,
+         "desktop_computing" : "NO",
+         "switch" : null,
+         "disk" : null,
+         "diskpath" : null,
+         "gpu_count" : 0,
+         "wattmeter" : "MULTIPLE",
+         "memcore" : 8192,
+         "suspended_jobs" : "NO",
+         "deploy" : "NO",
+         "available_upto" : 2147483647,
+         "ip" : "172.16.64.2",
+         "cluster_priority" : 201906,
+         "memnode" : 131072,
+         "id" : 20,
+         "links" : [
+            {
+               "href" : "//oarapi/resources/nodes/clusterc-2.fakesite.grid5000.fr",
+               "title" : "node",
+               "rel" : "member"
+            },
+            {
+               "href" : "//oarapi/resources/20",
+               "rel" : "self"
+            },
+            {
+               "title" : "jobs",
+               "rel" : "collection",
+               "href" : "//oarapi/resources/20/jobs"
+            }
+         ],
+         "last_job_date" : 0
+      },
+      {
+         "gpudevice" : null,
+         "desktop_computing" : "NO",
+         "mic" : "NO",
+         "ib_rate" : 0,
+         "network_address" : "clusterc-2.fakesite.grid5000.fr",
+         "virtual" : "ivt",
+         "production" : "YES",
+         "ib" : "NO",
+         "next_state" : "UnChanged",
+         "memcpu" : 65536,
+         "opa_count" : 0,
+         "links" : [
+            {
+               "rel" : "member",
+               "title" : "node",
+               "href" : "//oarapi/resources/nodes/clusterc-2.fakesite.grid5000.fr"
+            },
+            {
+               "href" : "//oarapi/resources/21",
+               "rel" : "self"
+            },
+            {
+               "rel" : "collection",
+               "title" : "jobs",
+               "href" : "//oarapi/resources/21/jobs"
+            }
+         ],
+         "id" : 21,
+         "last_job_date" : 0,
+         "cluster_priority" : 201906,
+         "memnode" : 131072,
+         "ip" : "172.16.64.2",
+         "deploy" : "NO",
+         "available_upto" : 2147483647,
+         "suspended_jobs" : "NO",
+         "memcore" : 8192,
+         "gpu_count" : 0,
+         "wattmeter" : "MULTIPLE",
+         "diskpath" : null,
+         "disk" : null,
+         "switch" : null,
+         "cpu" : 3,
+         "next_finaud_decision" : "NO",
+         "type" : "default",
+         "scheduler_priority" : 0,
+         "drain" : "NO",
+         "core" : 18,
+         "disktype" : "SATA",
+         "myri" : "NO",
+         "myri_rate" : 0,
+         "last_available_upto" : 0,
+         "expiry_date" : 0,
+         "disk_reservation_count" : 3,
+         "cpufreq" : "2.1",
+         "finaud_decision" : "NO",
+         "eth_count" : 1,
+         "state" : "Alive",
+         "ib_count" : 0,
+         "cpuset" : 1,
+         "cpuarch" : "x86_64",
+         "eth_rate" : 10,
+         "cluster" : "clusterc",
+         "cputype" : "Intel Xeon Silver 4110",
+         "myri_count" : 0,
+         "opa" : "NO",
+         "api_timestamp" : 1569605253,
+         "cpucore" : 8,
+         "maintenance" : "NO",
+         "host" : "clusterc-2.fakesite.grid5000.fr",
+         "gpu_model" : null,
+         "besteffort" : "YES",
+         "state_num" : 1,
+         "opa_rate" : 0,
+         "gpu" : null,
+         "max_walltime" : 86400,
+         "nodemodel" : "Dell PowerEdge T640"
+      },
+      {
+         "ib_rate" : 0,
+         "virtual" : "ivt",
+         "network_address" : "clusterc-2.fakesite.grid5000.fr",
+         "gpudevice" : null,
+         "desktop_computing" : "NO",
+         "mic" : "NO",
+         "opa_count" : 0,
+         "next_state" : "UnChanged",
+         "memcpu" : 65536,
+         "production" : "YES",
+         "ib" : "NO",
+         "available_upto" : 2147483647,
+         "deploy" : "NO",
+         "suspended_jobs" : "NO",
+         "ip" : "172.16.64.2",
+         "cluster_priority" : 201906,
+         "memnode" : 131072,
+         "last_job_date" : 0,
+         "links" : [
+            {
+               "href" : "//oarapi/resources/nodes/clusterc-2.fakesite.grid5000.fr",
+               "title" : "node",
+               "rel" : "member"
+            },
+            {
+               "rel" : "self",
+               "href" : "//oarapi/resources/22"
+            },
+            {
+               "rel" : "collection",
+               "title" : "jobs",
+               "href" : "//oarapi/resources/22/jobs"
+            }
+         ],
+         "id" : 22,
+         "switch" : null,
+         "disk" : null,
+         "diskpath" : null,
+         "memcore" : 8192,
+         "wattmeter" : "MULTIPLE",
+         "gpu_count" : 0,
+         "myri_rate" : 0,
+         "disktype" : "SATA",
+         "myri" : "NO",
+         "type" : "default",
+         "scheduler_priority" : 0,
+         "core" : 19,
+         "drain" : "NO",
+         "next_finaud_decision" : "NO",
+         "cpu" : 3,
+         "finaud_decision" : "NO",
+         "eth_count" : 1,
+         "disk_reservation_count" : 3,
+         "cpufreq" : "2.1",
+         "expiry_date" : 0,
+         "last_available_upto" : 0,
+         "api_timestamp" : 1569605253,
+         "cluster" : "clusterc",
+         "cputype" : "Intel Xeon Silver 4110",
+         "opa" : "NO",
+         "myri_count" : 0,
+         "eth_rate" : 10,
+         "cpuarch" : "x86_64",
+         "ib_count" : 0,
+         "state" : "Alive",
+         "cpuset" : 2,
+         "gpu" : null,
+         "max_walltime" : 86400,
+         "nodemodel" : "Dell PowerEdge T640",
+         "state_num" : 1,
+         "opa_rate" : 0,
+         "maintenance" : "NO",
+         "gpu_model" : null,
+         "host" : "clusterc-2.fakesite.grid5000.fr",
+         "cpucore" : 8,
+         "besteffort" : "YES"
+      },
+      {
+         "gpudevice" : null,
+         "desktop_computing" : "NO",
+         "mic" : "NO",
+         "ib_rate" : 0,
+         "network_address" : "clusterc-2.fakesite.grid5000.fr",
+         "virtual" : "ivt",
+         "production" : "YES",
+         "ib" : "NO",
+         "opa_count" : 0,
+         "memcpu" : 65536,
+         "next_state" : "UnChanged",
+         "memnode" : 131072,
+         "cluster_priority" : 201906,
+         "last_job_date" : 0,
+         "links" : [
+            {
+               "rel" : "member",
+               "title" : "node",
+               "href" : "//oarapi/resources/nodes/clusterc-2.fakesite.grid5000.fr"
+            },
+            {
+               "href" : "//oarapi/resources/23",
+               "rel" : "self"
+            },
+            {
+               "href" : "//oarapi/resources/23/jobs",
+               "rel" : "collection",
+               "title" : "jobs"
+            }
+         ],
+         "id" : 23,
+         "available_upto" : 2147483647,
+         "deploy" : "NO",
+         "suspended_jobs" : "NO",
+         "ip" : "172.16.64.2",
+         "diskpath" : null,
+         "memcore" : 8192,
+         "gpu_count" : 0,
+         "wattmeter" : "MULTIPLE",
+         "switch" : null,
+         "disk" : null,
+         "type" : "default",
+         "scheduler_priority" : 0,
+         "core" : 20,
+         "drain" : "NO",
+         "cpu" : 3,
+         "next_finaud_decision" : "NO",
+         "myri_rate" : 0,
+         "myri" : "NO",
+         "disktype" : "SATA",
+         "expiry_date" : 0,
+         "last_available_upto" : 0,
+         "finaud_decision" : "NO",
+         "eth_count" : 1,
+         "disk_reservation_count" : 3,
+         "cpufreq" : "2.1",
+         "eth_rate" : 10,
+         "cpuarch" : "x86_64",
+         "state" : "Alive",
+         "ib_count" : 0,
+         "cpuset" : 3,
+         "api_timestamp" : 1569605253,
+         "cluster" : "clusterc",
+         "cputype" : "Intel Xeon Silver 4110",
+         "opa" : "NO",
+         "myri_count" : 0,
+         "state_num" : 1,
+         "opa_rate" : 0,
+         "maintenance" : "NO",
+         "gpu_model" : null,
+         "cpucore" : 8,
+         "host" : "clusterc-2.fakesite.grid5000.fr",
+         "besteffort" : "YES",
+         "max_walltime" : 86400,
+         "gpu" : null,
+         "nodemodel" : "Dell PowerEdge T640"
+      },
+      {
+         "mic" : "NO",
+         "desktop_computing" : "NO",
+         "gpudevice" : null,
+         "network_address" : "clusterc-2.fakesite.grid5000.fr",
+         "virtual" : "ivt",
+         "ib_rate" : 0,
+         "production" : "YES",
+         "ib" : "NO",
+         "opa_count" : 0,
+         "memcpu" : 65536,
+         "next_state" : "UnChanged",
+         "memnode" : 131072,
+         "cluster_priority" : 201906,
+         "links" : [
+            {
+               "href" : "//oarapi/resources/nodes/clusterc-2.fakesite.grid5000.fr",
+               "title" : "node",
+               "rel" : "member"
+            },
+            {
+               "href" : "//oarapi/resources/24",
+               "rel" : "self"
+            },
+            {
+               "href" : "//oarapi/resources/24/jobs",
+               "title" : "jobs",
+               "rel" : "collection"
+            }
+         ],
+         "id" : 24,
+         "last_job_date" : 0,
+         "suspended_jobs" : "NO",
+         "available_upto" : 2147483647,
+         "deploy" : "NO",
+         "ip" : "172.16.64.2",
+         "diskpath" : null,
+         "gpu_count" : 0,
+         "wattmeter" : "MULTIPLE",
+         "memcore" : 8192,
+         "switch" : null,
+         "disk" : null,
+         "drain" : "NO",
+         "core" : 21,
+         "scheduler_priority" : 0,
+         "type" : "default",
+         "next_finaud_decision" : "NO",
+         "cpu" : 3,
+         "myri_rate" : 0,
+         "disktype" : "SATA",
+         "myri" : "NO",
+         "expiry_date" : 0,
+         "last_available_upto" : 0,
+         "eth_count" : 1,
+         "finaud_decision" : "NO",
+         "cpufreq" : "2.1",
+         "disk_reservation_count" : 3,
+         "eth_rate" : 10,
+         "cpuarch" : "x86_64",
+         "cpuset" : 4,
+         "state" : "Alive",
+         "ib_count" : 0,
+         "api_timestamp" : 1569605253,
+         "opa" : "NO",
+         "myri_count" : 0,
+         "cluster" : "clusterc",
+         "cputype" : "Intel Xeon Silver 4110",
+         "opa_rate" : 0,
+         "state_num" : 1,
+         "besteffort" : "YES",
+         "host" : "clusterc-2.fakesite.grid5000.fr",
+         "maintenance" : "NO",
+         "cpucore" : 8,
+         "gpu_model" : null,
+         "nodemodel" : "Dell PowerEdge T640",
+         "max_walltime" : 86400,
+         "gpu" : null
+      },
+      {
+         "ib_rate" : 0,
+         "virtual" : "ivt",
+         "network_address" : "clusterc-2.fakesite.grid5000.fr",
+         "gpudevice" : null,
+         "desktop_computing" : "NO",
+         "mic" : "NO",
+         "next_state" : "UnChanged",
+         "memcpu" : 65536,
+         "opa_count" : 0,
+         "ib" : "NO",
+         "production" : "YES",
+         "ip" : "172.16.64.2",
+         "deploy" : "NO",
+         "available_upto" : 2147483647,
+         "suspended_jobs" : "NO",
+         "links" : [
+            {
+               "rel" : "member",
+               "title" : "node",
+               "href" : "//oarapi/resources/nodes/clusterc-2.fakesite.grid5000.fr"
+            },
+            {
+               "href" : "//oarapi/resources/25",
+               "rel" : "self"
+            },
+            {
+               "href" : "//oarapi/resources/25/jobs",
+               "rel" : "collection",
+               "title" : "jobs"
+            }
+         ],
+         "last_job_date" : 0,
+         "id" : 25,
+         "cluster_priority" : 201906,
+         "memnode" : 131072,
+         "disk" : null,
+         "switch" : null,
+         "memcore" : 8192,
+         "gpu_count" : 0,
+         "wattmeter" : "MULTIPLE",
+         "diskpath" : null,
+         "disktype" : "SATA",
+         "myri" : "NO",
+         "myri_rate" : 0,
+         "cpu" : 3,
+         "next_finaud_decision" : "NO",
+         "type" : "default",
+         "scheduler_priority" : 0,
+         "core" : 22,
+         "drain" : "NO",
+         "disk_reservation_count" : 3,
+         "cpufreq" : "2.1",
+         "finaud_decision" : "NO",
+         "eth_count" : 1,
+         "last_available_upto" : 0,
+         "expiry_date" : 0,
+         "cputype" : "Intel Xeon Silver 4110",
+         "cluster" : "clusterc",
+         "myri_count" : 0,
+         "opa" : "NO",
+         "api_timestamp" : 1569605253,
+         "ib_count" : 0,
+         "state" : "Alive",
+         "cpuset" : 5,
+         "cpuarch" : "x86_64",
+         "eth_rate" : 10,
+         "max_walltime" : 86400,
+         "gpu" : null,
+         "nodemodel" : "Dell PowerEdge T640",
+         "maintenance" : "NO",
+         "cpucore" : 8,
+         "host" : "clusterc-2.fakesite.grid5000.fr",
+         "gpu_model" : null,
+         "besteffort" : "YES",
+         "state_num" : 1,
+         "opa_rate" : 0
+      },
+      {
+         "disk" : null,
+         "switch" : null,
+         "memcore" : 8192,
+         "gpu_count" : 0,
+         "wattmeter" : "MULTIPLE",
+         "diskpath" : null,
+         "ip" : "172.16.64.2",
+         "deploy" : "NO",
+         "available_upto" : 2147483647,
+         "suspended_jobs" : "NO",
+         "id" : 26,
+         "links" : [
+            {
+               "title" : "node",
+               "rel" : "member",
+               "href" : "//oarapi/resources/nodes/clusterc-2.fakesite.grid5000.fr"
+            },
+            {
+               "href" : "//oarapi/resources/26",
+               "rel" : "self"
+            },
+            {
+               "rel" : "collection",
+               "title" : "jobs",
+               "href" : "//oarapi/resources/26/jobs"
+            }
+         ],
+         "last_job_date" : 0,
+         "cluster_priority" : 201906,
+         "memnode" : 131072,
+         "memcpu" : 65536,
+         "next_state" : "UnChanged",
+         "opa_count" : 0,
+         "production" : "YES",
+         "ib" : "NO",
+         "ib_rate" : 0,
+         "virtual" : "ivt",
+         "network_address" : "clusterc-2.fakesite.grid5000.fr",
+         "desktop_computing" : "NO",
+         "gpudevice" : null,
+         "mic" : "NO",
+         "max_walltime" : 86400,
+         "gpu" : null,
+         "nodemodel" : "Dell PowerEdge T640",
+         "gpu_model" : null,
+         "maintenance" : "NO",
+         "host" : "clusterc-2.fakesite.grid5000.fr",
+         "cpucore" : 8,
+         "besteffort" : "YES",
+         "state_num" : 1,
+         "opa_rate" : 0,
+         "cluster" : "clusterc",
+         "cputype" : "Intel Xeon Silver 4110",
+         "myri_count" : 0,
+         "opa" : "NO",
+         "api_timestamp" : 1569605253,
+         "ib_count" : 0,
+         "state" : "Alive",
+         "cpuset" : 6,
+         "eth_rate" : 10,
+         "cpuarch" : "x86_64",
+         "disk_reservation_count" : 3,
+         "cpufreq" : "2.1",
+         "finaud_decision" : "NO",
+         "eth_count" : 1,
+         "last_available_upto" : 0,
+         "expiry_date" : 0,
+         "myri" : "NO",
+         "disktype" : "SATA",
+         "myri_rate" : 0,
+         "next_finaud_decision" : "NO",
+         "cpu" : 3,
+         "scheduler_priority" : 0,
+         "type" : "default",
+         "core" : 23,
+         "drain" : "NO"
+      },
+      {
+         "nodemodel" : "Dell PowerEdge T640",
+         "gpu" : null,
+         "max_walltime" : 86400,
+         "opa_rate" : 0,
+         "state_num" : 1,
+         "besteffort" : "YES",
+         "maintenance" : "NO",
+         "gpu_model" : null,
+         "host" : "clusterc-2.fakesite.grid5000.fr",
+         "cpucore" : 8,
+         "api_timestamp" : 1569605253,
+         "opa" : "NO",
+         "myri_count" : 0,
+         "cluster" : "clusterc",
+         "cputype" : "Intel Xeon Silver 4110",
+         "eth_rate" : 10,
+         "cpuarch" : "x86_64",
+         "cpuset" : 7,
+         "ib_count" : 0,
+         "state" : "Alive",
+         "eth_count" : 1,
+         "finaud_decision" : "NO",
+         "cpufreq" : "2.1",
+         "disk_reservation_count" : 3,
+         "expiry_date" : 0,
+         "last_available_upto" : 0,
+         "myri_rate" : 0,
+         "myri" : "NO",
+         "disktype" : "SATA",
+         "core" : 24,
+         "drain" : "NO",
+         "scheduler_priority" : 0,
+         "type" : "default",
+         "next_finaud_decision" : "NO",
+         "cpu" : 3,
+         "switch" : null,
+         "disk" : null,
+         "diskpath" : null,
+         "gpu_count" : 0,
+         "wattmeter" : "MULTIPLE",
+         "memcore" : 8192,
+         "suspended_jobs" : "NO",
+         "available_upto" : 2147483647,
+         "deploy" : "NO",
+         "ip" : "172.16.64.2",
+         "cluster_priority" : 201906,
+         "memnode" : 131072,
+         "last_job_date" : 0,
+         "links" : [
+            {
+               "href" : "//oarapi/resources/nodes/clusterc-2.fakesite.grid5000.fr",
+               "title" : "node",
+               "rel" : "member"
+            },
+            {
+               "rel" : "self",
+               "href" : "//oarapi/resources/27"
+            },
+            {
+               "href" : "//oarapi/resources/27/jobs",
+               "rel" : "collection",
+               "title" : "jobs"
+            }
+         ],
+         "id" : 27,
+         "opa_count" : 0,
+         "next_state" : "UnChanged",
+         "memcpu" : 65536,
+         "production" : "YES",
+         "ib" : "NO",
+         "network_address" : "clusterc-2.fakesite.grid5000.fr",
+         "virtual" : "ivt",
+         "ib_rate" : 0,
+         "mic" : "NO",
+         "gpudevice" : null,
+         "desktop_computing" : "NO"
+      },
+      {
+         "disktype" : "SATA",
+         "myri" : "NO",
+         "myri_rate" : 0,
+         "cpu" : 4,
+         "next_finaud_decision" : "NO",
+         "drain" : "NO",
+         "core" : 25,
+         "type" : "default",
+         "scheduler_priority" : 0,
+         "cpufreq" : "2.1",
+         "disk_reservation_count" : 3,
+         "eth_count" : 1,
+         "finaud_decision" : "NO",
+         "last_available_upto" : 0,
+         "expiry_date" : 0,
+         "myri_count" : 0,
+         "opa" : "NO",
+         "cputype" : "Intel Xeon Silver 4110",
+         "cluster" : "clusterc",
+         "api_timestamp" : 1569605253,
+         "cpuset" : 8,
+         "ib_count" : 0,
+         "state" : "Alive",
+         "cpuarch" : "x86_64",
+         "eth_rate" : 10,
+         "nodemodel" : "Dell PowerEdge T640",
+         "gpu" : null,
+         "max_walltime" : 86400,
+         "besteffort" : "YES",
+         "host" : "clusterc-2.fakesite.grid5000.fr",
+         "maintenance" : "NO",
+         "gpu_model" : null,
+         "cpucore" : 8,
+         "opa_rate" : 0,
+         "state_num" : 1,
+         "virtual" : "ivt",
+         "network_address" : "clusterc-2.fakesite.grid5000.fr",
+         "ib_rate" : 0,
+         "mic" : "NO",
+         "gpudevice" : null,
+         "desktop_computing" : "NO",
+         "next_state" : "UnChanged",
+         "memcpu" : 65536,
+         "opa_count" : 0,
+         "ib" : "NO",
+         "production" : "YES",
+         "ip" : "172.16.64.2",
+         "suspended_jobs" : "NO",
+         "available_upto" : 2147483647,
+         "deploy" : "NO",
+         "id" : 28,
+         "links" : [
+            {
+               "href" : "//oarapi/resources/nodes/clusterc-2.fakesite.grid5000.fr",
+               "title" : "node",
+               "rel" : "member"
+            },
+            {
+               "href" : "//oarapi/resources/28",
+               "rel" : "self"
+            },
+            {
+               "rel" : "collection",
+               "title" : "jobs",
+               "href" : "//oarapi/resources/28/jobs"
+            }
+         ],
+         "last_job_date" : 0,
+         "cluster_priority" : 201906,
+         "memnode" : 131072,
+         "disk" : null,
+         "switch" : null,
+         "wattmeter" : "MULTIPLE",
+         "gpu_count" : 0,
+         "memcore" : 8192,
+         "diskpath" : null
+      },
+      {
+         "next_finaud_decision" : "NO",
+         "cpu" : 4,
+         "core" : 26,
+         "drain" : "NO",
+         "type" : "default",
+         "scheduler_priority" : 0,
+         "myri" : "NO",
+         "disktype" : "SATA",
+         "myri_rate" : 0,
+         "last_available_upto" : 0,
+         "expiry_date" : 0,
+         "cpufreq" : "2.1",
+         "disk_reservation_count" : 3,
+         "eth_count" : 1,
+         "finaud_decision" : "NO",
+         "cpuset" : 9,
+         "state" : "Alive",
+         "ib_count" : 0,
+         "cpuarch" : "x86_64",
+         "eth_rate" : 10,
+         "myri_count" : 0,
+         "opa" : "NO",
+         "cputype" : "Intel Xeon Silver 4110",
+         "cluster" : "clusterc",
+         "api_timestamp" : 1569605253,
+         "besteffort" : "YES",
+         "maintenance" : "NO",
+         "gpu_model" : null,
+         "host" : "clusterc-2.fakesite.grid5000.fr",
+         "cpucore" : 8,
+         "opa_rate" : 0,
+         "state_num" : 1,
+         "nodemodel" : "Dell PowerEdge T640",
+         "max_walltime" : 86400,
+         "gpu" : null,
+         "mic" : "NO",
+         "desktop_computing" : "NO",
+         "gpudevice" : null,
+         "network_address" : "clusterc-2.fakesite.grid5000.fr",
+         "virtual" : "ivt",
+         "ib_rate" : 0,
+         "ib" : "NO",
+         "production" : "YES",
+         "next_state" : "UnChanged",
+         "memcpu" : 65536,
+         "opa_count" : 0,
+         "last_job_date" : 0,
+         "links" : [
+            {
+               "rel" : "member",
+               "title" : "node",
+               "href" : "//oarapi/resources/nodes/clusterc-2.fakesite.grid5000.fr"
+            },
+            {
+               "rel" : "self",
+               "href" : "//oarapi/resources/29"
+            },
+            {
+               "href" : "//oarapi/resources/29/jobs",
+               "rel" : "collection",
+               "title" : "jobs"
+            }
+         ],
+         "id" : 29,
+         "memnode" : 131072,
+         "cluster_priority" : 201906,
+         "ip" : "172.16.64.2",
+         "suspended_jobs" : "NO",
+         "available_upto" : 2147483647,
+         "deploy" : "NO",
+         "gpu_count" : 0,
+         "wattmeter" : "MULTIPLE",
+         "memcore" : 8192,
+         "diskpath" : null,
+         "disk" : null,
+         "switch" : null
+      },
+      {
+         "cpuset" : 10,
+         "ib_count" : 0,
+         "state" : "Alive",
+         "eth_rate" : 10,
+         "cpuarch" : "x86_64",
+         "opa" : "NO",
+         "myri_count" : 0,
+         "cluster" : "clusterc",
+         "cputype" : "Intel Xeon Silver 4110",
+         "api_timestamp" : 1569605253,
+         "besteffort" : "YES",
+         "maintenance" : "NO",
+         "host" : "clusterc-2.fakesite.grid5000.fr",
+         "cpucore" : 8,
+         "gpu_model" : null,
+         "opa_rate" : 0,
+         "state_num" : 1,
+         "nodemodel" : "Dell PowerEdge T640",
+         "gpu" : null,
+         "max_walltime" : 86400,
+         "cpu" : 4,
+         "next_finaud_decision" : "NO",
+         "core" : 27,
+         "drain" : "NO",
+         "type" : "default",
+         "scheduler_priority" : 0,
+         "disktype" : "SATA",
+         "myri" : "NO",
+         "myri_rate" : 0,
+         "last_available_upto" : 0,
+         "expiry_date" : 0,
+         "cpufreq" : "2.1",
+         "disk_reservation_count" : 3,
+         "eth_count" : 1,
+         "finaud_decision" : "NO",
+         "last_job_date" : 0,
+         "links" : [
+            {
+               "href" : "//oarapi/resources/nodes/clusterc-2.fakesite.grid5000.fr",
+               "title" : "node",
+               "rel" : "member"
+            },
+            {
+               "rel" : "self",
+               "href" : "//oarapi/resources/30"
+            },
+            {
+               "href" : "//oarapi/resources/30/jobs",
+               "rel" : "collection",
+               "title" : "jobs"
+            }
+         ],
+         "id" : 30,
+         "cluster_priority" : 201906,
+         "memnode" : 131072,
+         "ip" : "172.16.64.2",
+         "suspended_jobs" : "NO",
+         "available_upto" : 2147483647,
+         "deploy" : "NO",
+         "wattmeter" : "MULTIPLE",
+         "gpu_count" : 0,
+         "memcore" : 8192,
+         "diskpath" : null,
+         "disk" : null,
+         "switch" : null,
+         "mic" : "NO",
+         "gpudevice" : null,
+         "desktop_computing" : "NO",
+         "virtual" : "ivt",
+         "network_address" : "clusterc-2.fakesite.grid5000.fr",
+         "ib_rate" : 0,
+         "ib" : "NO",
+         "production" : "YES",
+         "next_state" : "UnChanged",
+         "memcpu" : 65536,
+         "opa_count" : 0
+      },
+      {
+         "expiry_date" : 0,
+         "last_available_upto" : 0,
+         "eth_count" : 1,
+         "finaud_decision" : "NO",
+         "cpufreq" : "2.1",
+         "disk_reservation_count" : 3,
+         "core" : 28,
+         "drain" : "NO",
+         "type" : "default",
+         "scheduler_priority" : 0,
+         "next_finaud_decision" : "NO",
+         "cpu" : 4,
+         "myri_rate" : 0,
+         "myri" : "NO",
+         "disktype" : "SATA",
+         "opa_rate" : 0,
+         "state_num" : 1,
+         "besteffort" : "YES",
+         "maintenance" : "NO",
+         "host" : "clusterc-2.fakesite.grid5000.fr",
+         "gpu_model" : null,
+         "cpucore" : 8,
+         "nodemodel" : "Dell PowerEdge T640",
+         "max_walltime" : 86400,
+         "gpu" : null,
+         "cpuarch" : "x86_64",
+         "eth_rate" : 10,
+         "cpuset" : 11,
+         "state" : "Alive",
+         "ib_count" : 0,
+         "api_timestamp" : 1569605253,
+         "myri_count" : 0,
+         "opa" : "NO",
+         "cluster" : "clusterc",
+         "cputype" : "Intel Xeon Silver 4110",
+         "ib" : "NO",
+         "production" : "YES",
+         "opa_count" : 0,
+         "next_state" : "UnChanged",
+         "memcpu" : 65536,
+         "mic" : "NO",
+         "gpudevice" : null,
+         "desktop_computing" : "NO",
+         "network_address" : "clusterc-2.fakesite.grid5000.fr",
+         "virtual" : "ivt",
+         "ib_rate" : 0,
+         "diskpath" : null,
+         "wattmeter" : "MULTIPLE",
+         "gpu_count" : 0,
+         "memcore" : 8192,
+         "switch" : null,
+         "disk" : null,
+         "cluster_priority" : 201906,
+         "memnode" : 131072,
+         "links" : [
+            {
+               "href" : "//oarapi/resources/nodes/clusterc-2.fakesite.grid5000.fr",
+               "title" : "node",
+               "rel" : "member"
+            },
+            {
+               "rel" : "self",
+               "href" : "//oarapi/resources/31"
+            },
+            {
+               "href" : "//oarapi/resources/31/jobs",
+               "rel" : "collection",
+               "title" : "jobs"
+            }
+         ],
+         "id" : 31,
+         "last_job_date" : 0,
+         "suspended_jobs" : "NO",
+         "available_upto" : 2147483647,
+         "deploy" : "NO",
+         "ip" : "172.16.64.2"
+      },
+      {
+         "ib" : "NO",
+         "production" : "YES",
+         "memcpu" : 65536,
+         "next_state" : "UnChanged",
+         "opa_count" : 0,
+         "gpudevice" : null,
+         "desktop_computing" : "NO",
+         "mic" : "NO",
+         "ib_rate" : 0,
+         "network_address" : "clusterc-2.fakesite.grid5000.fr",
+         "virtual" : "ivt",
+         "memcore" : 8192,
+         "wattmeter" : "MULTIPLE",
+         "gpu_count" : 0,
+         "diskpath" : null,
+         "disk" : null,
+         "switch" : null,
+         "id" : 32,
+         "links" : [
+            {
+               "title" : "node",
+               "rel" : "member",
+               "href" : "//oarapi/resources/nodes/clusterc-2.fakesite.grid5000.fr"
+            },
+            {
+               "rel" : "self",
+               "href" : "//oarapi/resources/32"
+            },
+            {
+               "rel" : "collection",
+               "title" : "jobs",
+               "href" : "//oarapi/resources/32/jobs"
+            }
+         ],
+         "last_job_date" : 0,
+         "memnode" : 131072,
+         "cluster_priority" : 201906,
+         "ip" : "172.16.64.2",
+         "available_upto" : 2147483647,
+         "deploy" : "NO",
+         "suspended_jobs" : "NO",
+         "last_available_upto" : 0,
+         "expiry_date" : 0,
+         "disk_reservation_count" : 3,
+         "cpufreq" : "2.1",
+         "finaud_decision" : "NO",
+         "eth_count" : 1,
+         "cpu" : 4,
+         "next_finaud_decision" : "NO",
+         "scheduler_priority" : 0,
+         "type" : "default",
+         "drain" : "NO",
+         "core" : 29,
+         "disktype" : "SATA",
+         "myri" : "NO",
+         "myri_rate" : 0,
+         "host" : "clusterc-2.fakesite.grid5000.fr",
+         "maintenance" : "NO",
+         "gpu_model" : null,
+         "cpucore" : 8,
+         "besteffort" : "YES",
+         "state_num" : 1,
+         "opa_rate" : 0,
+         "max_walltime" : 86400,
+         "gpu" : null,
+         "nodemodel" : "Dell PowerEdge T640",
+         "state" : "Alive",
+         "ib_count" : 0,
+         "cpuset" : 12,
+         "cpuarch" : "x86_64",
+         "eth_rate" : 10,
+         "cputype" : "Intel Xeon Silver 4110",
+         "cluster" : "clusterc",
+         "opa" : "NO",
+         "myri_count" : 0,
+         "api_timestamp" : 1569605253
+      },
+      {
+         "ib_rate" : 0,
+         "network_address" : "clusterc-2.fakesite.grid5000.fr",
+         "virtual" : "ivt",
+         "gpudevice" : null,
+         "desktop_computing" : "NO",
+         "mic" : "NO",
+         "opa_count" : 0,
+         "memcpu" : 65536,
+         "next_state" : "UnChanged",
+         "production" : "YES",
+         "ib" : "NO",
+         "deploy" : "NO",
+         "available_upto" : 2147483647,
+         "suspended_jobs" : "NO",
+         "ip" : "172.16.64.2",
+         "cluster_priority" : 201906,
+         "memnode" : 131072,
+         "links" : [
+            {
+               "title" : "node",
+               "rel" : "member",
+               "href" : "//oarapi/resources/nodes/clusterc-2.fakesite.grid5000.fr"
+            },
+            {
+               "rel" : "self",
+               "href" : "//oarapi/resources/33"
+            },
+            {
+               "rel" : "collection",
+               "title" : "jobs",
+               "href" : "//oarapi/resources/33/jobs"
+            }
+         ],
+         "last_job_date" : 0,
+         "id" : 33,
+         "switch" : null,
+         "disk" : null,
+         "diskpath" : null,
+         "memcore" : 8192,
+         "wattmeter" : "MULTIPLE",
+         "gpu_count" : 0,
+         "myri_rate" : 0,
+         "myri" : "NO",
+         "disktype" : "SATA",
+         "scheduler_priority" : 0,
+         "type" : "default",
+         "drain" : "NO",
+         "core" : 30,
+         "next_finaud_decision" : "NO",
+         "cpu" : 4,
+         "finaud_decision" : "NO",
+         "eth_count" : 1,
+         "disk_reservation_count" : 3,
+         "cpufreq" : "2.1",
+         "expiry_date" : 0,
+         "last_available_upto" : 0,
+         "api_timestamp" : 1569605253,
+         "cputype" : "Intel Xeon Silver 4110",
+         "cluster" : "clusterc",
+         "opa" : "NO",
+         "myri_count" : 0,
+         "eth_rate" : 10,
+         "cpuarch" : "x86_64",
+         "ib_count" : 0,
+         "state" : "Alive",
+         "cpuset" : 13,
+         "gpu" : null,
+         "max_walltime" : 86400,
+         "nodemodel" : "Dell PowerEdge T640",
+         "state_num" : 1,
+         "opa_rate" : 0,
+         "maintenance" : "NO",
+         "gpu_model" : null,
+         "host" : "clusterc-2.fakesite.grid5000.fr",
+         "cpucore" : 8,
+         "besteffort" : "YES"
+      },
+      {
+         "expiry_date" : 0,
+         "last_available_upto" : 0,
+         "eth_count" : 1,
+         "finaud_decision" : "NO",
+         "cpufreq" : "2.1",
+         "disk_reservation_count" : 3,
+         "core" : 31,
+         "drain" : "NO",
+         "type" : "default",
+         "scheduler_priority" : 0,
+         "cpu" : 4,
+         "next_finaud_decision" : "NO",
+         "myri_rate" : 0,
+         "disktype" : "SATA",
+         "myri" : "NO",
+         "opa_rate" : 0,
+         "state_num" : 1,
+         "besteffort" : "YES",
+         "maintenance" : "NO",
+         "cpucore" : 8,
+         "host" : "clusterc-2.fakesite.grid5000.fr",
+         "gpu_model" : null,
+         "nodemodel" : "Dell PowerEdge T640",
+         "gpu" : null,
+         "max_walltime" : 86400,
+         "eth_rate" : 10,
+         "cpuarch" : "x86_64",
+         "cpuset" : 14,
+         "state" : "Alive",
+         "ib_count" : 0,
+         "api_timestamp" : 1569605253,
+         "myri_count" : 0,
+         "opa" : "NO",
+         "cputype" : "Intel Xeon Silver 4110",
+         "cluster" : "clusterc",
+         "production" : "YES",
+         "ib" : "NO",
+         "opa_count" : 0,
+         "next_state" : "UnChanged",
+         "memcpu" : 65536,
+         "mic" : "NO",
+         "gpudevice" : null,
+         "desktop_computing" : "NO",
+         "virtual" : "ivt",
+         "network_address" : "clusterc-2.fakesite.grid5000.fr",
+         "ib_rate" : 0,
+         "diskpath" : null,
+         "gpu_count" : 0,
+         "wattmeter" : "MULTIPLE",
+         "memcore" : 8192,
+         "switch" : null,
+         "disk" : null,
+         "memnode" : 131072,
+         "cluster_priority" : 201906,
+         "links" : [
+            {
+               "href" : "//oarapi/resources/nodes/clusterc-2.fakesite.grid5000.fr",
+               "rel" : "member",
+               "title" : "node"
+            },
+            {
+               "href" : "//oarapi/resources/34",
+               "rel" : "self"
+            },
+            {
+               "rel" : "collection",
+               "title" : "jobs",
+               "href" : "//oarapi/resources/34/jobs"
+            }
+         ],
+         "id" : 34,
+         "last_job_date" : 0,
+         "suspended_jobs" : "NO",
+         "deploy" : "NO",
+         "available_upto" : 2147483647,
+         "ip" : "172.16.64.2"
+      },
+      {
+         "opa" : "NO",
+         "myri_count" : 0,
+         "cluster" : "clusterc",
+         "cputype" : "Intel Xeon Silver 4110",
+         "api_timestamp" : 1569605253,
+         "cpuset" : 15,
+         "ib_count" : 0,
+         "state" : "Alive",
+         "cpuarch" : "x86_64",
+         "eth_rate" : 10,
+         "nodemodel" : "Dell PowerEdge T640",
+         "gpu" : null,
+         "max_walltime" : 86400,
+         "besteffort" : "YES",
+         "maintenance" : "NO",
+         "cpucore" : 8,
+         "gpu_model" : null,
+         "host" : "clusterc-2.fakesite.grid5000.fr",
+         "opa_rate" : 0,
+         "state_num" : 1,
+         "myri" : "NO",
+         "disktype" : "SATA",
+         "myri_rate" : 0,
+         "next_finaud_decision" : "NO",
+         "cpu" : 4,
+         "core" : 32,
+         "drain" : "NO",
+         "scheduler_priority" : 0,
+         "type" : "default",
+         "cpufreq" : "2.1",
+         "disk_reservation_count" : 3,
+         "eth_count" : 1,
+         "finaud_decision" : "NO",
+         "last_available_upto" : 0,
+         "expiry_date" : 0,
+         "ip" : "172.16.64.2",
+         "suspended_jobs" : "NO",
+         "available_upto" : 2147483647,
+         "deploy" : "NO",
+         "id" : 35,
+         "links" : [
+            {
+               "title" : "node",
+               "rel" : "member",
+               "href" : "//oarapi/resources/nodes/clusterc-2.fakesite.grid5000.fr"
+            },
+            {
+               "rel" : "self",
+               "href" : "//oarapi/resources/35"
+            },
+            {
+               "href" : "//oarapi/resources/35/jobs",
+               "rel" : "collection",
+               "title" : "jobs"
+            }
+         ],
+         "last_job_date" : 0,
+         "memnode" : 131072,
+         "cluster_priority" : 201906,
+         "disk" : null,
+         "switch" : null,
+         "gpu_count" : 0,
+         "wattmeter" : "MULTIPLE",
+         "memcore" : 8192,
+         "diskpath" : null,
+         "virtual" : "ivt",
+         "network_address" : "clusterc-2.fakesite.grid5000.fr",
+         "ib_rate" : 0,
+         "mic" : "NO",
+         "gpudevice" : null,
+         "desktop_computing" : "NO",
+         "memcpu" : 65536,
+         "next_state" : "UnChanged",
+         "opa_count" : 0,
+         "ib" : "NO",
+         "production" : "YES"
+      },
+      {
+         "opa_rate" : null,
+         "state_num" : 1,
+         "besteffort" : "YES",
+         "gpu_model" : null,
+         "maintenance" : "NO",
+         "cpucore" : null,
+         "host" : "clusterc-2.fakesite.grid5000.fr",
+         "nodemodel" : null,
+         "max_walltime" : null,
+         "gpu" : null,
+         "eth_rate" : null,
+         "cpuarch" : null,
+         "cpuset" : -1,
+         "ib_count" : null,
+         "state" : "Alive",
+         "api_timestamp" : 1569605253,
+         "myri_count" : null,
+         "opa" : null,
+         "cluster" : "clusterc",
+         "cputype" : null,
+         "expiry_date" : 0,
+         "last_available_upto" : 0,
+         "eth_count" : null,
+         "finaud_decision" : "NO",
+         "cpufreq" : null,
+         "disk_reservation_count" : null,
+         "drain" : "NO",
+         "core" : null,
+         "type" : "disk",
+         "scheduler_priority" : 0,
+         "cpu" : null,
+         "next_finaud_decision" : "NO",
+         "myri_rate" : null,
+         "myri" : null,
+         "disktype" : null,
+         "diskpath" : "/dev/disk/by-path/pci-0000:02:00.0-scsi-0:0:1:0",
+         "gpu_count" : null,
+         "wattmeter" : null,
+         "memcore" : null,
+         "switch" : null,
+         "disk" : "sdb.clusterc-2",
+         "cluster_priority" : null,
+         "memnode" : null,
+         "links" : [
+            {
+               "title" : "node",
+               "rel" : "member",
+               "href" : "//oarapi/resources/nodes/"
+            },
+            {
+               "rel" : "self",
+               "href" : "//oarapi/resources/36"
+            },
+            {
+               "href" : "//oarapi/resources/36/jobs",
+               "rel" : "collection",
+               "title" : "jobs"
+            }
+         ],
+         "id" : 36,
+         "last_job_date" : 0,
+         "suspended_jobs" : "NO",
+         "available_upto" : 0,
+         "deploy" : "YES",
+         "ip" : null,
+         "ib" : null,
+         "production" : "YES",
+         "opa_count" : null,
+         "next_state" : "UnChanged",
+         "memcpu" : null,
+         "mic" : null,
+         "gpudevice" : null,
+         "desktop_computing" : "NO",
+         "virtual" : null,
+         "network_address" : "",
+         "ib_rate" : null
+      },
+      {
+         "gpu" : null,
+         "max_walltime" : null,
+         "nodemodel" : null,
+         "state_num" : 1,
+         "opa_rate" : null,
+         "gpu_model" : null,
+         "maintenance" : "NO",
+         "cpucore" : null,
+         "host" : "clusterc-2.fakesite.grid5000.fr",
+         "besteffort" : "YES",
+         "api_timestamp" : 1569605253,
+         "cluster" : "clusterc",
+         "cputype" : null,
+         "opa" : null,
+         "myri_count" : null,
+         "eth_rate" : null,
+         "cpuarch" : null,
+         "state" : "Alive",
+         "ib_count" : null,
+         "cpuset" : -1,
+         "finaud_decision" : "NO",
+         "eth_count" : null,
+         "disk_reservation_count" : null,
+         "cpufreq" : null,
+         "expiry_date" : 0,
+         "last_available_upto" : 0,
+         "myri_rate" : null,
+         "disktype" : null,
+         "myri" : null,
+         "scheduler_priority" : 0,
+         "type" : "disk",
+         "drain" : "NO",
+         "core" : null,
+         "next_finaud_decision" : "NO",
+         "cpu" : null,
+         "switch" : null,
+         "disk" : "sdc.clusterc-2",
+         "diskpath" : "/dev/disk/by-path/pci-0000:02:00.0-scsi-0:0:2:0",
+         "memcore" : null,
+         "wattmeter" : null,
+         "gpu_count" : null,
+         "deploy" : "YES",
+         "available_upto" : 0,
+         "suspended_jobs" : "NO",
+         "ip" : null,
+         "memnode" : null,
+         "cluster_priority" : null,
+         "links" : [
+            {
+               "rel" : "member",
+               "title" : "node",
+               "href" : "//oarapi/resources/nodes/"
+            },
+            {
+               "href" : "//oarapi/resources/37",
+               "rel" : "self"
+            },
+            {
+               "rel" : "collection",
+               "title" : "jobs",
+               "href" : "//oarapi/resources/37/jobs"
+            }
+         ],
+         "last_job_date" : 0,
+         "id" : 37,
+         "opa_count" : null,
+         "next_state" : "UnChanged",
+         "memcpu" : null,
+         "production" : "YES",
+         "ib" : null,
+         "ib_rate" : null,
+         "virtual" : null,
+         "network_address" : "",
+         "gpudevice" : null,
+         "desktop_computing" : "NO",
+         "mic" : null
+      },
+      {
+         "cputype" : null,
+         "cluster" : "clusterc",
+         "myri_count" : null,
+         "opa" : null,
+         "api_timestamp" : 1569605253,
+         "ib_count" : null,
+         "state" : "Alive",
+         "cpuset" : -1,
+         "eth_rate" : null,
+         "cpuarch" : null,
+         "gpu" : null,
+         "max_walltime" : null,
+         "nodemodel" : null,
+         "host" : "clusterc-2.fakesite.grid5000.fr",
+         "maintenance" : "NO",
+         "gpu_model" : null,
+         "cpucore" : null,
+         "besteffort" : "YES",
+         "state_num" : 1,
+         "opa_rate" : null,
+         "myri" : null,
+         "disktype" : null,
+         "myri_rate" : null,
+         "next_finaud_decision" : "NO",
+         "cpu" : null,
+         "scheduler_priority" : 0,
+         "type" : "disk",
+         "core" : null,
+         "drain" : "NO",
+         "disk_reservation_count" : null,
+         "cpufreq" : null,
+         "finaud_decision" : "NO",
+         "eth_count" : null,
+         "last_available_upto" : 0,
+         "expiry_date" : 0,
+         "ip" : null,
+         "deploy" : "YES",
+         "available_upto" : 0,
+         "suspended_jobs" : "NO",
+         "id" : 38,
+         "links" : [
+            {
+               "href" : "//oarapi/resources/nodes/",
+               "title" : "node",
+               "rel" : "member"
+            },
+            {
+               "rel" : "self",
+               "href" : "//oarapi/resources/38"
+            },
+            {
+               "rel" : "collection",
+               "title" : "jobs",
+               "href" : "//oarapi/resources/38/jobs"
+            }
+         ],
+         "last_job_date" : 0,
+         "memnode" : null,
+         "cluster_priority" : null,
+         "disk" : "sdd.clusterc-2",
+         "switch" : null,
+         "memcore" : null,
+         "gpu_count" : null,
+         "wattmeter" : null,
+         "diskpath" : "/dev/disk/by-path/pci-0000:02:00.0-scsi-0:0:3:0",
+         "ib_rate" : null,
+         "network_address" : "",
+         "virtual" : null,
+         "gpudevice" : null,
+         "desktop_computing" : "NO",
+         "mic" : null,
+         "memcpu" : null,
+         "next_state" : "UnChanged",
+         "opa_count" : null,
+         "production" : "YES",
+         "ib" : null
+      }
+   ],
+   "api_timestamp" : 1569605253
+}
+