-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocs.txt
More file actions
410 lines (243 loc) · 7.48 KB
/
docs.txt
File metadata and controls
410 lines (243 loc) · 7.48 KB
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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
Developer Docs
________________
Utility
A Utility is the central organization responsible for generating or procuring electricity and distributing it to various regions. It oversees the overall management, monitoring, and coordination of the energy distribution infrastructure.
Method
Payload
URL
Description
GET
/api/utilities
Get a list of utilities
POST
/api/utilities
Creates a new utility
GET
/api/utilities/:id
Get a specific utility by ID
PUT
/api/utilities/:id
Update a utility by ID
DELETE
/api/utilities/:id
Delete a utility by ID
Fields required:
* Utility ID
* Name
* Region/Coverage Area
* Contact Information
* Regulatory Body
* Operational Status
* Date of Establishment
Connections:
* A Utility manages multiple Substations.
* A Substation cannot be present without a utility.
________________
Method
Payload
URL
Description
GET
/api/substations
Get a list of substations
POST
/api/substations
Create a new substation
GET
/api/substations/:id
Get a specific substation by ID
PUT
/api/substations/:id
Update a substation by ID
DELETE
/api/substations/:id
Delete a substation by ID
Substation
A Substation is an intermediate node in the power distribution system where voltage levels are transformed and electricity is routed to different localities. It steps down the voltage from transmission levels to distribution levels.
Fields required:
* Substation ID
* Name
* Location
* Voltage CapacityOperational Status
* Associated Utility ID
* Date of Commissioning
Connections:
* A Substation is associated with one Utility.
* A substation cannot be present without a utility.
* A Substation supplies power to multiple Transformers.
________________
Transformer
A Transformer steps down the voltage from substations to levels suitable for end-user consumption. It is a critical component in ensuring the safe and efficient delivery of electricity to neighborhoods or buildings.
Method
Payload
URL
Description
GET
/api/transformers
Get a list of transformers
POST
/api/transformers
Create a new transformer
GET
/api/transformers/:id
Get a specific transformer by ID
PUT
/api/transformers/:id
Update a transformer by ID
DELETE
/api/transformers/:id
Delete a transformer by ID
Fields required:
* Transformer ID
* Type (e.g., distribution, step-down)
* Location
* Capacity (kVA)
* Phase Type (single/three-phase)
* Operational Status
* Associated Substation ID
* Installation Date
Connections:
* A Transformer is associated with one Substation.
* A Transformer is connected to multiple Meters.
* A Transformer can be created only if a substation is present.
________________
Meter
A Meter is an end-point device that measures the electricity consumption of a household. It records energy usage data for billing and monitoring purposes.
Method
Payload
URL
Description
GET
/api/meters
Get a list of meters
POST
/api/meters
Create a new meter
GET
/api/meters/:id
Get a specific meter by ID
PUT
/api/meters/:id
Update a meter by ID
DELETE
/api/meters/:id
Delete a meter by ID
Fields required:
* Meter ID
* Meter Type (analog/digital/smart)
* Location
* Reading Frequency
* Installation Date
* Associated Transformer ID
* Household ID (linked one-to-one)
* Status (active/inactive)
Connections:
* A Meter is linked to one Transformer.
* Meter cannot exist without a Transformer.
* Each Meter is uniquely mapped to one Household.
________________
Energy Resource (Household)
A Household represents the end-user of electricity. It consumes power for daily living and may also act as a prosumer by generating electricity using DERs.
Method
Payload
URL
Description
GET
/api/energy-resources
Get a list of energy resources (ER)
POST
/api/energy-resources
Create a new ER
GET
/api/energy-resources/:id
Get a specific ER by ID
PUT
/api/energy-resources/:id
Update an ER by ID
DELETE
/api/energy-resources/:id
Delete an ER by ID
Fields required:
* Household ID
* Address
* Owner/Resident Name
* Type (residential/commercial)
* Number of Occupants
* Associated Meter ID
* Construction Year
* Grid Connectivity Status
Connections:
* A Household is served by one Meter.
* A Household contains multiple DERs.
* A Household contains multiple Appliances.
* A Household cannot be created if a meter is not present.
________________
DER (Digital Energy Resource)
A DER is a decentralized energy generation unit within a household, such as solar panels or battery storage systems. It may also store or optimize energy consumption.
Method
Payload
URL
Description
GET
/api/ders
Get a list of DERs
POST
/api/ders
Create a new DER
GET
/api/ders/:id
Get a specific DER by ID
PUT
/api/ders/:id
Update a DER by ID
DELETE
/api/ders/:id
Delete a DER by ID
Fields required:
* DER ID
* Type (solar, battery, etc.)
* Power Output Capacity
* Status (active/inactive)
* Installation Date
* Associated Household ID
* Associated Appliance ID (one-to-one mapping)
Connections:
* Each DER is part of one Household.
* Each DER is uniquely mapped to one Appliance.
* Each DER can exist only if a household is present
________________
Appliance
An Appliance is an electrical device used in a household, such as an air conditioner, refrigerator, or washing machine. It draws energy and may be monitored for consumption patterns.
Method
Payload
URL
Description
GET
/api/appliances
Get a list of appliances
POST
/api/appliances
Create a new appliance
GET
/api/appliances/:id
Get a specific appliance by ID
PUT
/api/appliances/:id
Update an appliance by ID
DELETE
/api/appliances/:id
Delete an appliance by ID
Fields required:
* Appliance ID
* Type (AC, fridge, etc.)
* Power Rating (Watts)
* Energy Efficiency Rating
* Usage Schedule
* Purchase Date
* Associated Household ID
* Associated DER ID (if any)
Connections:
* An Appliance belongs to one Household.
* An Appliance cannot be present without a household.
* An Appliance is linked one-to-one with a DER (if it's a smart or connected appliance).
________________