-
Notifications
You must be signed in to change notification settings - Fork 3
/
request.json
87 lines (87 loc) · 2.03 KB
/
request.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
{
"organization": "My company",
"dataset": "IS LCA 2024",
"electricity":
[
{
"name": "Custom",
"impacts": { ImpactObject },
"source": "Https://blabla"
},
{...}
]
"inventory": [
{
"id": "ToBeChoosenFreely"
"type": "server",
"name": "Dell ProLiant 512",
"quantity" : 42,
"unit": "piece",
"lifetime" : 4.6,
"quality" : "medium",
"yearly_electricity_consumption": 1000,
"mix_of_use": "Custom",
"tags": ["Datacenter A"],
},
{
"id": "ToBeChoosenFreely",
"type": "non-IT",
"name": "Non-IT Electricity",
"quantity" : 1,
"unit": "kWh",
"lifetime" : 1,
"quality" : "medium",
"yearly_electricity_consumption": 8000,
"mix_of_use": "Custom",
"tags": ["Datacenter A"],
},
{
"id": "ToBeChoosenFreely",
"type": "server",
"name": "Dell ProLiant 513",
"quantity" : 24,
"unit": "piece",
"lifetime" : 4.6,
"quality" : "medium",
"yearly_electricity_consumption": 1000,
"mix_of_use": "France",
"tags": ["Datacenter B"],
},
{
"id": "ToBeChoosenFreely"
"type": "non-IT",
"name": "Non-IT Devices",
"quantity" : 1,
"unit": "piece",
"lifetime" : 1,
"quality" : "medium",
"yearly_electricity_consumption": 6000,
"mix_of_use": "France",
"tags": ["Datacenter B"],
},
{
"id": "ToBeChoosenFreely"
"type": "laptop",
"name": "HP Elitebook 512",
"quantity" : 24,
"unit": "piece",
"lifetime" : 6.4,
"quality" : "low",
"yearly_electricity_consumption": 100,
"mix_of_use": "Switzerland",
"tag": ["User environment"],
},
{
"id": "ToBeChoosenFreely"
"type": "virtual machine",
"name": "AWS EC2 XY",
"quantity" : 12,
"unit": "hours of CPU",
"lifetime" : 1,
"quality" : "low",
"tag": ["Cloud"],
"impacts": { ImpactObject /* AWS Declaration */ }
},
...
]
}