mms-client 1.9.3__py3-none-any.whl → 1.11.0__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- mms_client/schemas/wsdl/mi-web-service-jbms.wsdl +276 -276
- mms_client/schemas/wsdl/omi-web-service.wsdl +262 -262
- mms_client/schemas/xsd/mi-market.xsd +2405 -2395
- mms_client/schemas/xsd/mi-outbnd-reports.xsd +1554 -1488
- mms_client/schemas/xsd/mi-report.xsd +379 -379
- mms_client/schemas/xsd/mpr.xsd +1858 -1816
- mms_client/schemas/xsd/omi.xsd +913 -793
- mms_client/services/base.py +48 -21
- mms_client/services/market.py +123 -1
- mms_client/services/omi.py +99 -0
- mms_client/types/award.py +6 -0
- mms_client/types/base.py +10 -6
- mms_client/types/bup.py +207 -0
- mms_client/types/fields.py +1 -1
- mms_client/types/market.py +15 -2
- mms_client/types/offer.py +6 -0
- mms_client/types/omi.py +26 -0
- mms_client/types/settlement.py +81 -0
- mms_client/types/surplus_capcity.py +187 -0
- mms_client/utils/errors.py +51 -0
- mms_client/utils/serialization.py +34 -18
- {mms_client-1.9.3.dist-info → mms_client-1.11.0.dist-info}/METADATA +10 -3
- mms_client-1.11.0.dist-info/RECORD +45 -0
- mms_client-1.9.3.dist-info/RECORD +0 -41
- {mms_client-1.9.3.dist-info → mms_client-1.11.0.dist-info}/LICENSE +0 -0
- {mms_client-1.9.3.dist-info → mms_client-1.11.0.dist-info}/WHEEL +0 -0
mms_client/schemas/xsd/omi.xsd
CHANGED
|
@@ -1,793 +1,913 @@
|
|
|
1
|
-
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
-
<xs:schema elementFormDefault="qualified"
|
|
3
|
-
attributeFormDefault="unqualified"
|
|
4
|
-
xmlns:xs="http://www.w3.org/2001/XMLSchema"
|
|
5
|
-
version="1.0">
|
|
6
|
-
|
|
7
|
-
<xs:annotation>
|
|
8
|
-
<xs:documentation xml:lang="en">
|
|
9
|
-
|
|
10
|
-
+-----------------------------------------------+
|
|
11
|
-
| |
|
|
12
|
-
| COPYRIGHT (c) 2021 |
|
|
13
|
-
| |
|
|
14
|
-
| |
|
|
15
|
-
| |
|
|
16
|
-
| All rights reserved |
|
|
17
|
-
| |
|
|
18
|
-
+-----------------------------------------------+
|
|
19
|
-
|
|
20
|
-
This is the XML schema for OMI data submitted/accessed by MO/TSO/BSP.
|
|
21
|
-
|
|
22
|
-
History:
|
|
23
|
-
|
|
24
|
-
001 2021-03-29 Initial version.
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
</xs:documentation>
|
|
28
|
-
</xs:annotation>
|
|
29
|
-
|
|
30
|
-
<!-- BEGIN: Common Simple Type Definitions -->
|
|
31
|
-
|
|
32
|
-
<xs:simpleType name="ValidationStatusType">
|
|
33
|
-
<xs:restriction base="xs:string">
|
|
34
|
-
<xs:enumeration value="PASSED"/>
|
|
35
|
-
<xs:enumeration value="WARNING"/>
|
|
36
|
-
<xs:enumeration value="PASSED_PARTIAL"/>
|
|
37
|
-
<xs:enumeration value="FAILED"/>
|
|
38
|
-
<xs:enumeration value="NOT_DONE"/>
|
|
39
|
-
</xs:restriction>
|
|
40
|
-
</xs:simpleType>
|
|
41
|
-
|
|
42
|
-
<xs:simpleType name="CodeType">
|
|
43
|
-
<xs:restriction base="xs:string">
|
|
44
|
-
<xs:maxLength value="50"/>
|
|
45
|
-
<xs:minLength value="2"/>
|
|
46
|
-
<xs:pattern value="[a-zA-Z_0-9\-]*"/>
|
|
47
|
-
</xs:restriction>
|
|
48
|
-
</xs:simpleType>
|
|
49
|
-
|
|
50
|
-
<xs:simpleType name="TransactionId">
|
|
51
|
-
<xs:restriction base="xs:string">
|
|
52
|
-
<xs:maxLength value="10" />
|
|
53
|
-
<xs:minLength value="8" />
|
|
54
|
-
</xs:restriction>
|
|
55
|
-
</xs:simpleType>
|
|
56
|
-
|
|
57
|
-
<!-- END: Common Simple Type Definitions -->
|
|
58
|
-
|
|
59
|
-
<!-- BEGIN: Registration Simple Type Definitions -->
|
|
60
|
-
|
|
61
|
-
<xs:simpleType name="ParticipantNameType">
|
|
62
|
-
<xs:restriction base="xs:string">
|
|
63
|
-
<xs:length value="4"/>
|
|
64
|
-
<xs:pattern value="[A-W]([0-9][0-9][1-9]|[0-9][1-9][0-9]|[1-9][0-9][0-9])"/>
|
|
65
|
-
</xs:restriction>
|
|
66
|
-
</xs:simpleType>
|
|
67
|
-
|
|
68
|
-
<xs:simpleType name="UserNameType">
|
|
69
|
-
<xs:restriction base="xs:string">
|
|
70
|
-
<xs:minLength value="1"/>
|
|
71
|
-
<xs:maxLength value="12"/>
|
|
72
|
-
<xs:pattern value="[A-Z0-9]*"/>
|
|
73
|
-
</xs:restriction>
|
|
74
|
-
</xs:simpleType>
|
|
75
|
-
|
|
76
|
-
<xs:simpleType name="ResourceNameType">
|
|
77
|
-
<xs:restriction base="xs:string">
|
|
78
|
-
<xs:minLength value="1"/>
|
|
79
|
-
<xs:maxLength value="10"/>
|
|
80
|
-
<xs:pattern value="[A-Z0-9_\-]*"/>
|
|
81
|
-
</xs:restriction>
|
|
82
|
-
</xs:simpleType>
|
|
83
|
-
|
|
84
|
-
<xs:simpleType name="ResourceShortNameType">
|
|
85
|
-
<xs:restriction base="JapaneseStringType">
|
|
86
|
-
<xs:minLength value="1"/>
|
|
87
|
-
<xs:maxLength value="10"/>
|
|
88
|
-
</xs:restriction>
|
|
89
|
-
</xs:simpleType>
|
|
90
|
-
|
|
91
|
-
<xs:simpleType name="ResourceTypeType">
|
|
92
|
-
<xs:restriction base="xs:string">
|
|
93
|
-
<xs:enumeration value="01"/>
|
|
94
|
-
<xs:enumeration value="02"/>
|
|
95
|
-
<xs:enumeration value="03"/>
|
|
96
|
-
<xs:enumeration value="04"/>
|
|
97
|
-
<xs:enumeration value="05"/>
|
|
98
|
-
<xs:enumeration value="06"/>
|
|
99
|
-
<xs:enumeration value="07"/>
|
|
100
|
-
</xs:restriction>
|
|
101
|
-
</xs:simpleType>
|
|
102
|
-
|
|
103
|
-
<xs:simpleType name="SystemCodeType">
|
|
104
|
-
<xs:restriction base="xs:string">
|
|
105
|
-
<xs:length value="5"/>
|
|
106
|
-
<xs:pattern value="[A-Z0-9]*"/>
|
|
107
|
-
</xs:restriction>
|
|
108
|
-
</xs:simpleType>
|
|
109
|
-
|
|
110
|
-
<xs:simpleType name="CompanyShortNameType">
|
|
111
|
-
<xs:restriction base="JapaneseStringType">
|
|
112
|
-
<xs:minLength value="1"/>
|
|
113
|
-
<xs:maxLength value="10"/>
|
|
114
|
-
</xs:restriction>
|
|
115
|
-
</xs:simpleType>
|
|
116
|
-
|
|
117
|
-
<xs:simpleType name="OperatorCodeType">
|
|
118
|
-
<xs:restriction base="xs:string">
|
|
119
|
-
<xs:length value="4"/>
|
|
120
|
-
<xs:pattern value="[A-Z0-9]*"/>
|
|
121
|
-
</xs:restriction>
|
|
122
|
-
</xs:simpleType>
|
|
123
|
-
|
|
124
|
-
<xs:simpleType name="PriSec1CommandOperationMethodType">
|
|
125
|
-
<xs:restriction base="xs:string">
|
|
126
|
-
<xs:enumeration value="1"/>
|
|
127
|
-
<xs:enumeration value="3"/>
|
|
128
|
-
</xs:restriction>
|
|
129
|
-
</xs:simpleType>
|
|
130
|
-
|
|
131
|
-
<xs:simpleType name="Sec2Ter1Ter2CommandOperationMethodType">
|
|
132
|
-
<xs:restriction base="xs:string">
|
|
133
|
-
<xs:enumeration value="1"/>
|
|
134
|
-
<xs:enumeration value="2"/>
|
|
135
|
-
</xs:restriction>
|
|
136
|
-
</xs:simpleType>
|
|
137
|
-
|
|
138
|
-
<!-- END: Registration Simple Type Definitions -->
|
|
139
|
-
|
|
140
|
-
<!-- BEGIN: General Simple Type Definitions -->
|
|
141
|
-
|
|
142
|
-
<xs:simpleType name="FreeStringType">
|
|
143
|
-
<xs:restriction base="xs:string">
|
|
144
|
-
<xs:pattern value="[a-zA-Z0-9 ~!@#$*()_+}{:?`='/.,%;\^\|\-\]\[\\<>&"]*"/>
|
|
145
|
-
</xs:restriction>
|
|
146
|
-
</xs:simpleType>
|
|
147
|
-
|
|
148
|
-
<xs:simpleType name="JapaneseStringType">
|
|
149
|
-
<xs:restriction base="xs:string">
|
|
150
|
-
<xs:pattern value="[ -ヿ＀-⦆ᅠ-￯一-鿪]*"/>
|
|
151
|
-
</xs:restriction>
|
|
152
|
-
</xs:simpleType>
|
|
153
|
-
|
|
154
|
-
<xs:simpleType name="BaselineLoadFileNameType">
|
|
155
|
-
<xs:restriction base="FreeStringType">
|
|
156
|
-
<xs:minLength value="31"/>
|
|
157
|
-
<xs:maxLength value="40"/>
|
|
158
|
-
<xs:pattern value="W9_[0-9]{4}_[0-9]{8}_[0-9]{2}_[A-Z0-9]{5}_[A-Z0-9_\-]{1,10}\.xml"/>
|
|
159
|
-
</xs:restriction>
|
|
160
|
-
</xs:simpleType>
|
|
161
|
-
|
|
162
|
-
<xs:simpleType name="AsciiJapaneseStringType">
|
|
163
|
-
<xs:restriction base="xs:string">
|
|
164
|
-
<xs:pattern value="[a-zA-Z0-9 ~!@#$*()_+}{:?>`='/.,%;\^\|\-\]\[\\<&" -ヿ＀-⦆ᅠ-￯一-鿪]*"/>
|
|
165
|
-
</xs:restriction>
|
|
166
|
-
</xs:simpleType>
|
|
167
|
-
|
|
168
|
-
<xs:simpleType name="DrPatternNumberType">
|
|
169
|
-
<xs:restriction base="xs:int">
|
|
170
|
-
<xs:minInclusive value="1"/>
|
|
171
|
-
<xs:maxInclusive value="20"/>
|
|
172
|
-
</xs:restriction>
|
|
173
|
-
</xs:simpleType>
|
|
174
|
-
|
|
175
|
-
<xs:simpleType name="InterconEquipmentType">
|
|
176
|
-
<xs:restriction base="xs:string">
|
|
177
|
-
<xs:enumeration value="01"/>
|
|
178
|
-
<xs:enumeration value="02"/>
|
|
179
|
-
<xs:enumeration value="07"/>
|
|
180
|
-
<xs:enumeration value="08"/>
|
|
181
|
-
<xs:enumeration value="09"/>
|
|
182
|
-
<xs:enumeration value="10"/>
|
|
183
|
-
<xs:enumeration value="11"/>
|
|
184
|
-
<xs:enumeration value="12"/>
|
|
185
|
-
<xs:enumeration value="13"/>
|
|
186
|
-
<xs:enumeration value="15"/>
|
|
187
|
-
<xs:enumeration value="21"/>
|
|
188
|
-
</xs:restriction>
|
|
189
|
-
</xs:simpleType>
|
|
190
|
-
|
|
191
|
-
<xs:simpleType name="StartTimeCodeType">
|
|
192
|
-
<xs:restriction base="xs:string">
|
|
193
|
-
<xs:
|
|
194
|
-
<xs:
|
|
195
|
-
|
|
196
|
-
|
|
197
|
-
|
|
198
|
-
|
|
199
|
-
|
|
200
|
-
<xs:
|
|
201
|
-
|
|
202
|
-
|
|
203
|
-
|
|
204
|
-
|
|
205
|
-
|
|
206
|
-
|
|
207
|
-
|
|
208
|
-
|
|
209
|
-
|
|
210
|
-
|
|
211
|
-
<xs:
|
|
212
|
-
<xs:
|
|
213
|
-
|
|
214
|
-
|
|
215
|
-
|
|
216
|
-
|
|
217
|
-
|
|
218
|
-
|
|
219
|
-
|
|
220
|
-
|
|
221
|
-
|
|
222
|
-
|
|
223
|
-
|
|
224
|
-
|
|
225
|
-
|
|
226
|
-
|
|
227
|
-
|
|
228
|
-
|
|
229
|
-
|
|
230
|
-
|
|
231
|
-
|
|
232
|
-
|
|
233
|
-
|
|
234
|
-
|
|
235
|
-
<xs:simpleType name="
|
|
236
|
-
<xs:restriction base="xs:
|
|
237
|
-
<xs:
|
|
238
|
-
<xs:
|
|
239
|
-
<xs:
|
|
240
|
-
|
|
241
|
-
|
|
242
|
-
|
|
243
|
-
|
|
244
|
-
|
|
245
|
-
|
|
246
|
-
|
|
247
|
-
|
|
248
|
-
|
|
249
|
-
|
|
250
|
-
|
|
251
|
-
|
|
252
|
-
<xs:enumeration value="
|
|
253
|
-
<xs:enumeration value="
|
|
254
|
-
<xs:enumeration value="
|
|
255
|
-
<xs:enumeration value="
|
|
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
|
-
<xs:enumeration value="
|
|
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
|
-
<xs:enumeration value="
|
|
346
|
-
<xs:enumeration value="
|
|
347
|
-
<xs:enumeration value="
|
|
348
|
-
<xs:enumeration value="
|
|
349
|
-
|
|
350
|
-
|
|
351
|
-
|
|
352
|
-
|
|
353
|
-
|
|
354
|
-
|
|
355
|
-
<xs:enumeration value="
|
|
356
|
-
<xs:enumeration value="
|
|
357
|
-
<xs:enumeration value="
|
|
358
|
-
<xs:enumeration value="
|
|
359
|
-
<xs:enumeration value="
|
|
360
|
-
<xs:enumeration value="
|
|
361
|
-
|
|
362
|
-
|
|
363
|
-
|
|
364
|
-
|
|
365
|
-
|
|
366
|
-
|
|
367
|
-
|
|
368
|
-
<xs:enumeration value="
|
|
369
|
-
<xs:enumeration value="
|
|
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
|
-
<xs:
|
|
395
|
-
<xs:
|
|
396
|
-
|
|
397
|
-
|
|
398
|
-
|
|
399
|
-
|
|
400
|
-
|
|
401
|
-
<xs:enumeration value="PRI"/>
|
|
402
|
-
<xs:enumeration value="SEC1"/>
|
|
403
|
-
<xs:enumeration value="SEC2"/>
|
|
404
|
-
|
|
405
|
-
|
|
406
|
-
|
|
407
|
-
|
|
408
|
-
|
|
409
|
-
<xs:enumeration value="
|
|
410
|
-
<xs:enumeration value="
|
|
411
|
-
<xs:enumeration value="
|
|
412
|
-
<xs:enumeration value="
|
|
413
|
-
<xs:enumeration value="
|
|
414
|
-
<xs:enumeration value="
|
|
415
|
-
|
|
416
|
-
|
|
417
|
-
|
|
418
|
-
|
|
419
|
-
|
|
420
|
-
|
|
421
|
-
|
|
422
|
-
|
|
423
|
-
|
|
424
|
-
|
|
425
|
-
|
|
426
|
-
<xs:
|
|
427
|
-
|
|
428
|
-
|
|
429
|
-
|
|
430
|
-
|
|
431
|
-
|
|
432
|
-
|
|
433
|
-
|
|
434
|
-
|
|
435
|
-
|
|
436
|
-
|
|
437
|
-
|
|
438
|
-
|
|
439
|
-
<xs:
|
|
440
|
-
<xs:
|
|
441
|
-
<xs:
|
|
442
|
-
|
|
443
|
-
|
|
444
|
-
|
|
445
|
-
|
|
446
|
-
|
|
447
|
-
|
|
448
|
-
|
|
449
|
-
|
|
450
|
-
<xs:
|
|
451
|
-
|
|
452
|
-
|
|
453
|
-
|
|
454
|
-
|
|
455
|
-
|
|
456
|
-
|
|
457
|
-
|
|
458
|
-
|
|
459
|
-
|
|
460
|
-
|
|
461
|
-
|
|
462
|
-
|
|
463
|
-
|
|
464
|
-
|
|
465
|
-
|
|
466
|
-
|
|
467
|
-
<xs:
|
|
468
|
-
|
|
469
|
-
|
|
470
|
-
|
|
471
|
-
|
|
472
|
-
|
|
473
|
-
|
|
474
|
-
|
|
475
|
-
|
|
476
|
-
|
|
477
|
-
|
|
478
|
-
|
|
479
|
-
|
|
480
|
-
|
|
481
|
-
|
|
482
|
-
|
|
483
|
-
|
|
484
|
-
|
|
485
|
-
<xs:
|
|
486
|
-
|
|
487
|
-
|
|
488
|
-
|
|
489
|
-
|
|
490
|
-
|
|
491
|
-
|
|
492
|
-
|
|
493
|
-
<xs:complexType name="
|
|
494
|
-
<xs:
|
|
495
|
-
<xs:
|
|
496
|
-
|
|
497
|
-
|
|
498
|
-
|
|
499
|
-
|
|
500
|
-
|
|
501
|
-
|
|
502
|
-
|
|
503
|
-
<xs:
|
|
504
|
-
|
|
505
|
-
|
|
506
|
-
|
|
507
|
-
|
|
508
|
-
|
|
509
|
-
|
|
510
|
-
|
|
511
|
-
|
|
512
|
-
|
|
513
|
-
|
|
514
|
-
|
|
515
|
-
|
|
516
|
-
<xs:
|
|
517
|
-
|
|
518
|
-
|
|
519
|
-
|
|
520
|
-
|
|
521
|
-
|
|
522
|
-
<xs:
|
|
523
|
-
</xs:complexType>
|
|
524
|
-
|
|
525
|
-
|
|
526
|
-
|
|
527
|
-
|
|
528
|
-
|
|
529
|
-
|
|
530
|
-
|
|
531
|
-
|
|
532
|
-
|
|
533
|
-
|
|
534
|
-
|
|
535
|
-
|
|
536
|
-
|
|
537
|
-
|
|
538
|
-
|
|
539
|
-
<xs:
|
|
540
|
-
|
|
541
|
-
|
|
542
|
-
|
|
543
|
-
|
|
544
|
-
|
|
545
|
-
|
|
546
|
-
|
|
547
|
-
|
|
548
|
-
|
|
549
|
-
|
|
550
|
-
|
|
551
|
-
|
|
552
|
-
|
|
553
|
-
|
|
554
|
-
|
|
555
|
-
|
|
556
|
-
|
|
557
|
-
|
|
558
|
-
|
|
559
|
-
|
|
560
|
-
|
|
561
|
-
|
|
562
|
-
|
|
563
|
-
|
|
564
|
-
|
|
565
|
-
|
|
566
|
-
|
|
567
|
-
|
|
568
|
-
|
|
569
|
-
|
|
570
|
-
|
|
571
|
-
|
|
572
|
-
|
|
573
|
-
|
|
574
|
-
|
|
575
|
-
<xs:
|
|
576
|
-
|
|
577
|
-
|
|
578
|
-
|
|
579
|
-
<xs:
|
|
580
|
-
|
|
581
|
-
|
|
582
|
-
|
|
583
|
-
|
|
584
|
-
|
|
585
|
-
|
|
586
|
-
<xs:
|
|
587
|
-
|
|
588
|
-
|
|
589
|
-
|
|
590
|
-
<xs:attribute name="
|
|
591
|
-
<xs:
|
|
592
|
-
|
|
593
|
-
|
|
594
|
-
|
|
595
|
-
<xs:
|
|
596
|
-
|
|
597
|
-
|
|
598
|
-
|
|
599
|
-
|
|
600
|
-
|
|
601
|
-
|
|
602
|
-
|
|
603
|
-
|
|
604
|
-
|
|
605
|
-
|
|
606
|
-
|
|
607
|
-
|
|
608
|
-
<xs:
|
|
609
|
-
|
|
610
|
-
|
|
611
|
-
|
|
612
|
-
<xs:attribute name="StartTime" type="xs:dateTime" use="required"/>
|
|
613
|
-
<xs:attribute name="EndTime" type="xs:dateTime" use="required"/>
|
|
614
|
-
<xs:attribute name="
|
|
615
|
-
<xs:attribute name="
|
|
616
|
-
<xs:
|
|
617
|
-
|
|
618
|
-
|
|
619
|
-
|
|
620
|
-
<xs:
|
|
621
|
-
|
|
622
|
-
|
|
623
|
-
|
|
624
|
-
<xs:attribute name="
|
|
625
|
-
<xs:attribute name="
|
|
626
|
-
<xs:attribute name="
|
|
627
|
-
<xs:attribute name="
|
|
628
|
-
<xs:attribute name="
|
|
629
|
-
<xs:attribute name="
|
|
630
|
-
<xs:attribute name="
|
|
631
|
-
<xs:attribute name="
|
|
632
|
-
<xs:attribute name="
|
|
633
|
-
<xs:
|
|
634
|
-
|
|
635
|
-
|
|
636
|
-
|
|
637
|
-
<xs:
|
|
638
|
-
|
|
639
|
-
|
|
640
|
-
|
|
641
|
-
|
|
642
|
-
|
|
643
|
-
|
|
644
|
-
<xs:
|
|
645
|
-
|
|
646
|
-
|
|
647
|
-
|
|
648
|
-
|
|
649
|
-
<xs:
|
|
650
|
-
|
|
651
|
-
|
|
652
|
-
|
|
653
|
-
|
|
654
|
-
|
|
655
|
-
|
|
656
|
-
<xs:sequence>
|
|
657
|
-
<xs:element name="Messages" type="MessagesType"
|
|
658
|
-
|
|
659
|
-
|
|
660
|
-
|
|
661
|
-
|
|
662
|
-
<xs:attribute name="
|
|
663
|
-
<xs:attribute name="
|
|
664
|
-
<xs:attribute name="
|
|
665
|
-
<xs:attribute name="
|
|
666
|
-
<xs:attribute name="
|
|
667
|
-
<xs:attribute name="
|
|
668
|
-
<xs:attribute name="
|
|
669
|
-
<xs:attribute name="
|
|
670
|
-
<xs:attribute name="
|
|
671
|
-
<xs:attribute name="
|
|
672
|
-
<xs:attribute name="
|
|
673
|
-
<xs:attribute name="
|
|
674
|
-
<xs:attribute name="
|
|
675
|
-
<xs:attribute name="
|
|
676
|
-
<xs:attribute name="
|
|
677
|
-
<xs:attribute name="
|
|
678
|
-
<xs:attribute name="
|
|
679
|
-
<xs:attribute name="
|
|
680
|
-
<xs:attribute name="
|
|
681
|
-
<xs:attribute name="
|
|
682
|
-
|
|
683
|
-
|
|
684
|
-
|
|
685
|
-
<xs:
|
|
686
|
-
|
|
687
|
-
|
|
688
|
-
|
|
689
|
-
|
|
690
|
-
|
|
691
|
-
|
|
692
|
-
<xs:
|
|
693
|
-
|
|
694
|
-
|
|
695
|
-
|
|
696
|
-
|
|
697
|
-
|
|
698
|
-
|
|
699
|
-
|
|
700
|
-
|
|
701
|
-
|
|
702
|
-
|
|
703
|
-
<xs:
|
|
704
|
-
|
|
705
|
-
|
|
706
|
-
|
|
707
|
-
<xs:attribute name="
|
|
708
|
-
<xs:attribute name="
|
|
709
|
-
<xs:attribute name="
|
|
710
|
-
<xs:attribute name="
|
|
711
|
-
<xs:attribute name="
|
|
712
|
-
<xs:attribute name="
|
|
713
|
-
<xs:attribute name="
|
|
714
|
-
<xs:
|
|
715
|
-
|
|
716
|
-
|
|
717
|
-
|
|
718
|
-
|
|
719
|
-
|
|
720
|
-
|
|
721
|
-
|
|
722
|
-
|
|
723
|
-
<xs:
|
|
724
|
-
|
|
725
|
-
|
|
726
|
-
|
|
727
|
-
|
|
728
|
-
|
|
729
|
-
|
|
730
|
-
<xs:
|
|
731
|
-
|
|
732
|
-
|
|
733
|
-
|
|
734
|
-
|
|
735
|
-
|
|
736
|
-
|
|
737
|
-
|
|
738
|
-
|
|
739
|
-
|
|
740
|
-
|
|
741
|
-
|
|
742
|
-
|
|
743
|
-
|
|
744
|
-
|
|
745
|
-
|
|
746
|
-
|
|
747
|
-
|
|
748
|
-
|
|
749
|
-
<xs:
|
|
750
|
-
|
|
751
|
-
|
|
752
|
-
|
|
753
|
-
|
|
754
|
-
|
|
755
|
-
|
|
756
|
-
<xs:
|
|
757
|
-
<xs:
|
|
758
|
-
|
|
759
|
-
|
|
760
|
-
|
|
761
|
-
|
|
762
|
-
|
|
763
|
-
|
|
764
|
-
|
|
765
|
-
|
|
766
|
-
|
|
767
|
-
|
|
768
|
-
|
|
769
|
-
|
|
770
|
-
|
|
771
|
-
|
|
772
|
-
|
|
773
|
-
|
|
774
|
-
|
|
775
|
-
|
|
776
|
-
<xs:
|
|
777
|
-
|
|
778
|
-
|
|
779
|
-
|
|
780
|
-
|
|
781
|
-
|
|
782
|
-
|
|
783
|
-
|
|
784
|
-
|
|
785
|
-
|
|
786
|
-
</xs:
|
|
787
|
-
|
|
788
|
-
|
|
789
|
-
|
|
790
|
-
|
|
791
|
-
|
|
792
|
-
|
|
793
|
-
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<xs:schema elementFormDefault="qualified"
|
|
3
|
+
attributeFormDefault="unqualified"
|
|
4
|
+
xmlns:xs="http://www.w3.org/2001/XMLSchema"
|
|
5
|
+
version="1.0">
|
|
6
|
+
|
|
7
|
+
<xs:annotation>
|
|
8
|
+
<xs:documentation xml:lang="en">
|
|
9
|
+
|
|
10
|
+
+-----------------------------------------------+
|
|
11
|
+
| |
|
|
12
|
+
| COPYRIGHT (c) 2021 |
|
|
13
|
+
| |
|
|
14
|
+
| |
|
|
15
|
+
| |
|
|
16
|
+
| All rights reserved |
|
|
17
|
+
| |
|
|
18
|
+
+-----------------------------------------------+
|
|
19
|
+
|
|
20
|
+
This is the XML schema for OMI data submitted/accessed by MO/TSO/BSP.
|
|
21
|
+
|
|
22
|
+
History:
|
|
23
|
+
|
|
24
|
+
001 2021-03-29 Initial version.
|
|
25
|
+
|
|
26
|
+
|
|
27
|
+
</xs:documentation>
|
|
28
|
+
</xs:annotation>
|
|
29
|
+
|
|
30
|
+
<!-- BEGIN: Common Simple Type Definitions -->
|
|
31
|
+
|
|
32
|
+
<xs:simpleType name="ValidationStatusType">
|
|
33
|
+
<xs:restriction base="xs:string">
|
|
34
|
+
<xs:enumeration value="PASSED"/>
|
|
35
|
+
<xs:enumeration value="WARNING"/>
|
|
36
|
+
<xs:enumeration value="PASSED_PARTIAL"/>
|
|
37
|
+
<xs:enumeration value="FAILED"/>
|
|
38
|
+
<xs:enumeration value="NOT_DONE"/>
|
|
39
|
+
</xs:restriction>
|
|
40
|
+
</xs:simpleType>
|
|
41
|
+
|
|
42
|
+
<xs:simpleType name="CodeType">
|
|
43
|
+
<xs:restriction base="xs:string">
|
|
44
|
+
<xs:maxLength value="50"/>
|
|
45
|
+
<xs:minLength value="2"/>
|
|
46
|
+
<xs:pattern value="[a-zA-Z_0-9\-]*"/>
|
|
47
|
+
</xs:restriction>
|
|
48
|
+
</xs:simpleType>
|
|
49
|
+
|
|
50
|
+
<xs:simpleType name="TransactionId">
|
|
51
|
+
<xs:restriction base="xs:string">
|
|
52
|
+
<xs:maxLength value="10" />
|
|
53
|
+
<xs:minLength value="8" />
|
|
54
|
+
</xs:restriction>
|
|
55
|
+
</xs:simpleType>
|
|
56
|
+
|
|
57
|
+
<!-- END: Common Simple Type Definitions -->
|
|
58
|
+
|
|
59
|
+
<!-- BEGIN: Registration Simple Type Definitions -->
|
|
60
|
+
|
|
61
|
+
<xs:simpleType name="ParticipantNameType">
|
|
62
|
+
<xs:restriction base="xs:string">
|
|
63
|
+
<xs:length value="4"/>
|
|
64
|
+
<xs:pattern value="[A-W]([0-9][0-9][1-9]|[0-9][1-9][0-9]|[1-9][0-9][0-9])"/>
|
|
65
|
+
</xs:restriction>
|
|
66
|
+
</xs:simpleType>
|
|
67
|
+
|
|
68
|
+
<xs:simpleType name="UserNameType">
|
|
69
|
+
<xs:restriction base="xs:string">
|
|
70
|
+
<xs:minLength value="1"/>
|
|
71
|
+
<xs:maxLength value="12"/>
|
|
72
|
+
<xs:pattern value="[A-Z0-9]*"/>
|
|
73
|
+
</xs:restriction>
|
|
74
|
+
</xs:simpleType>
|
|
75
|
+
|
|
76
|
+
<xs:simpleType name="ResourceNameType">
|
|
77
|
+
<xs:restriction base="xs:string">
|
|
78
|
+
<xs:minLength value="1"/>
|
|
79
|
+
<xs:maxLength value="10"/>
|
|
80
|
+
<xs:pattern value="[A-Z0-9_\-]*"/>
|
|
81
|
+
</xs:restriction>
|
|
82
|
+
</xs:simpleType>
|
|
83
|
+
|
|
84
|
+
<xs:simpleType name="ResourceShortNameType">
|
|
85
|
+
<xs:restriction base="JapaneseStringType">
|
|
86
|
+
<xs:minLength value="1"/>
|
|
87
|
+
<xs:maxLength value="10"/>
|
|
88
|
+
</xs:restriction>
|
|
89
|
+
</xs:simpleType>
|
|
90
|
+
|
|
91
|
+
<xs:simpleType name="ResourceTypeType">
|
|
92
|
+
<xs:restriction base="xs:string">
|
|
93
|
+
<xs:enumeration value="01"/>
|
|
94
|
+
<xs:enumeration value="02"/>
|
|
95
|
+
<xs:enumeration value="03"/>
|
|
96
|
+
<xs:enumeration value="04"/>
|
|
97
|
+
<xs:enumeration value="05"/>
|
|
98
|
+
<xs:enumeration value="06"/>
|
|
99
|
+
<xs:enumeration value="07"/>
|
|
100
|
+
</xs:restriction>
|
|
101
|
+
</xs:simpleType>
|
|
102
|
+
|
|
103
|
+
<xs:simpleType name="SystemCodeType">
|
|
104
|
+
<xs:restriction base="xs:string">
|
|
105
|
+
<xs:length value="5"/>
|
|
106
|
+
<xs:pattern value="[A-Z0-9]*"/>
|
|
107
|
+
</xs:restriction>
|
|
108
|
+
</xs:simpleType>
|
|
109
|
+
|
|
110
|
+
<xs:simpleType name="CompanyShortNameType">
|
|
111
|
+
<xs:restriction base="JapaneseStringType">
|
|
112
|
+
<xs:minLength value="1"/>
|
|
113
|
+
<xs:maxLength value="10"/>
|
|
114
|
+
</xs:restriction>
|
|
115
|
+
</xs:simpleType>
|
|
116
|
+
|
|
117
|
+
<xs:simpleType name="OperatorCodeType">
|
|
118
|
+
<xs:restriction base="xs:string">
|
|
119
|
+
<xs:length value="4"/>
|
|
120
|
+
<xs:pattern value="[A-Z0-9]*"/>
|
|
121
|
+
</xs:restriction>
|
|
122
|
+
</xs:simpleType>
|
|
123
|
+
|
|
124
|
+
<xs:simpleType name="PriSec1CommandOperationMethodType">
|
|
125
|
+
<xs:restriction base="xs:string">
|
|
126
|
+
<xs:enumeration value="1"/>
|
|
127
|
+
<xs:enumeration value="3"/>
|
|
128
|
+
</xs:restriction>
|
|
129
|
+
</xs:simpleType>
|
|
130
|
+
|
|
131
|
+
<xs:simpleType name="Sec2Ter1Ter2CommandOperationMethodType">
|
|
132
|
+
<xs:restriction base="xs:string">
|
|
133
|
+
<xs:enumeration value="1"/>
|
|
134
|
+
<xs:enumeration value="2"/>
|
|
135
|
+
</xs:restriction>
|
|
136
|
+
</xs:simpleType>
|
|
137
|
+
|
|
138
|
+
<!-- END: Registration Simple Type Definitions -->
|
|
139
|
+
|
|
140
|
+
<!-- BEGIN: General Simple Type Definitions -->
|
|
141
|
+
|
|
142
|
+
<xs:simpleType name="FreeStringType">
|
|
143
|
+
<xs:restriction base="xs:string">
|
|
144
|
+
<xs:pattern value="[a-zA-Z0-9 ~!@#$*()_+}{:?`='/.,%;\^\|\-\]\[\\<>&"]*"/>
|
|
145
|
+
</xs:restriction>
|
|
146
|
+
</xs:simpleType>
|
|
147
|
+
|
|
148
|
+
<xs:simpleType name="JapaneseStringType">
|
|
149
|
+
<xs:restriction base="xs:string">
|
|
150
|
+
<xs:pattern value="[ -ヿ＀-⦆ᅠ-￯一-鿪]*"/>
|
|
151
|
+
</xs:restriction>
|
|
152
|
+
</xs:simpleType>
|
|
153
|
+
|
|
154
|
+
<xs:simpleType name="BaselineLoadFileNameType">
|
|
155
|
+
<xs:restriction base="FreeStringType">
|
|
156
|
+
<xs:minLength value="31"/>
|
|
157
|
+
<xs:maxLength value="40"/>
|
|
158
|
+
<xs:pattern value="W9_[0-9]{4}_[0-9]{8}_[0-9]{2}_[A-Z0-9]{5}_[A-Z0-9_\-]{1,10}\.xml"/>
|
|
159
|
+
</xs:restriction>
|
|
160
|
+
</xs:simpleType>
|
|
161
|
+
|
|
162
|
+
<xs:simpleType name="AsciiJapaneseStringType">
|
|
163
|
+
<xs:restriction base="xs:string">
|
|
164
|
+
<xs:pattern value="[a-zA-Z0-9 ~!@#$*()_+}{:?>`='/.,%;\^\|\-\]\[\\<&" -ヿ＀-⦆ᅠ-￯一-鿪]*"/>
|
|
165
|
+
</xs:restriction>
|
|
166
|
+
</xs:simpleType>
|
|
167
|
+
|
|
168
|
+
<xs:simpleType name="DrPatternNumberType">
|
|
169
|
+
<xs:restriction base="xs:int">
|
|
170
|
+
<xs:minInclusive value="1"/>
|
|
171
|
+
<xs:maxInclusive value="20"/>
|
|
172
|
+
</xs:restriction>
|
|
173
|
+
</xs:simpleType>
|
|
174
|
+
|
|
175
|
+
<xs:simpleType name="InterconEquipmentType">
|
|
176
|
+
<xs:restriction base="xs:string">
|
|
177
|
+
<xs:enumeration value="01"/>
|
|
178
|
+
<xs:enumeration value="02"/>
|
|
179
|
+
<xs:enumeration value="07"/>
|
|
180
|
+
<xs:enumeration value="08"/>
|
|
181
|
+
<xs:enumeration value="09"/>
|
|
182
|
+
<xs:enumeration value="10"/>
|
|
183
|
+
<xs:enumeration value="11"/>
|
|
184
|
+
<xs:enumeration value="12"/>
|
|
185
|
+
<xs:enumeration value="13"/>
|
|
186
|
+
<xs:enumeration value="15"/>
|
|
187
|
+
<xs:enumeration value="21"/>
|
|
188
|
+
</xs:restriction>
|
|
189
|
+
</xs:simpleType>
|
|
190
|
+
|
|
191
|
+
<xs:simpleType name="StartTimeCodeType">
|
|
192
|
+
<xs:restriction base="xs:string">
|
|
193
|
+
<xs:length value="2"/>
|
|
194
|
+
<xs:pattern value="([0][1-9]|[1-3][0-9]|[4][0-8])"/>
|
|
195
|
+
</xs:restriction>
|
|
196
|
+
</xs:simpleType>
|
|
197
|
+
|
|
198
|
+
<xs:simpleType name="EndTimeCodeType">
|
|
199
|
+
<xs:restriction base="xs:string">
|
|
200
|
+
<xs:length value="2"/>
|
|
201
|
+
<xs:pattern value="([0][1-9]|[1-3][0-9]|[4][0-8])"/>
|
|
202
|
+
</xs:restriction>
|
|
203
|
+
</xs:simpleType>
|
|
204
|
+
|
|
205
|
+
<!-- END: General Simple Type Definitions -->
|
|
206
|
+
|
|
207
|
+
<!-- BEGIN: Precision Types -->
|
|
208
|
+
|
|
209
|
+
<xs:simpleType name="KwPosValue7.0Type">
|
|
210
|
+
<xs:restriction base="xs:int">
|
|
211
|
+
<xs:minInclusive value="0"/>
|
|
212
|
+
<xs:maxInclusive value="9999999"/>
|
|
213
|
+
</xs:restriction>
|
|
214
|
+
</xs:simpleType>
|
|
215
|
+
|
|
216
|
+
<xs:simpleType name="KwNegValue7.0Type">
|
|
217
|
+
<xs:restriction base="xs:int">
|
|
218
|
+
<xs:minInclusive value="-9999999"/>
|
|
219
|
+
<xs:maxInclusive value="0"/>
|
|
220
|
+
</xs:restriction>
|
|
221
|
+
</xs:simpleType>
|
|
222
|
+
|
|
223
|
+
<xs:simpleType name="PriceValue7.2RoundedType">
|
|
224
|
+
<xs:restriction base="xs:decimal">
|
|
225
|
+
<xs:minInclusive value="0.00"/>
|
|
226
|
+
<xs:maxInclusive value="10000.00"/>
|
|
227
|
+
<xs:fractionDigits value="2" />
|
|
228
|
+
</xs:restriction>
|
|
229
|
+
</xs:simpleType>
|
|
230
|
+
|
|
231
|
+
<!-- END: Precision Types -->
|
|
232
|
+
|
|
233
|
+
<!-- BEGIN: JBMS Simple Enumeration Types -->
|
|
234
|
+
|
|
235
|
+
<xs:simpleType name="AreaType">
|
|
236
|
+
<xs:restriction base="xs:string">
|
|
237
|
+
<xs:enumeration value="01"/>
|
|
238
|
+
<xs:enumeration value="02"/>
|
|
239
|
+
<xs:enumeration value="03"/>
|
|
240
|
+
<xs:enumeration value="04"/>
|
|
241
|
+
<xs:enumeration value="05"/>
|
|
242
|
+
<xs:enumeration value="06"/>
|
|
243
|
+
<xs:enumeration value="07"/>
|
|
244
|
+
<xs:enumeration value="08"/>
|
|
245
|
+
<xs:enumeration value="09"/>
|
|
246
|
+
<xs:enumeration value="10"/>
|
|
247
|
+
</xs:restriction>
|
|
248
|
+
</xs:simpleType>
|
|
249
|
+
|
|
250
|
+
<xs:simpleType name="BaselineTypeType">
|
|
251
|
+
<xs:restriction base="xs:string">
|
|
252
|
+
<xs:enumeration value="0131"/>
|
|
253
|
+
<xs:enumeration value="0132"/>
|
|
254
|
+
<xs:enumeration value="0331"/>
|
|
255
|
+
<xs:enumeration value="0431"/>
|
|
256
|
+
</xs:restriction>
|
|
257
|
+
</xs:simpleType>
|
|
258
|
+
|
|
259
|
+
<xs:simpleType name="BlackStartRejectFlagType">
|
|
260
|
+
<xs:restriction base="xs:string">
|
|
261
|
+
<xs:enumeration value="1"/>
|
|
262
|
+
<xs:enumeration value="2"/>
|
|
263
|
+
<xs:enumeration value="9"/>
|
|
264
|
+
</xs:restriction>
|
|
265
|
+
</xs:simpleType>
|
|
266
|
+
|
|
267
|
+
<xs:simpleType name="OverPowerRejectFlagType">
|
|
268
|
+
<xs:restriction base="xs:string">
|
|
269
|
+
<xs:enumeration value="1"/>
|
|
270
|
+
<xs:enumeration value="2"/>
|
|
271
|
+
<xs:enumeration value="9"/>
|
|
272
|
+
</xs:restriction>
|
|
273
|
+
</xs:simpleType>
|
|
274
|
+
|
|
275
|
+
<xs:simpleType name="RemainingReserveDownRejectFlagType">
|
|
276
|
+
<xs:restriction base="xs:string">
|
|
277
|
+
<xs:enumeration value="1"/>
|
|
278
|
+
<xs:enumeration value="2"/>
|
|
279
|
+
<xs:enumeration value="3"/>
|
|
280
|
+
<xs:enumeration value="9"/>
|
|
281
|
+
</xs:restriction>
|
|
282
|
+
</xs:simpleType>
|
|
283
|
+
|
|
284
|
+
<xs:simpleType name="RemainingReserveUpRejectFlagType">
|
|
285
|
+
<xs:restriction base="xs:string">
|
|
286
|
+
<xs:enumeration value="1"/>
|
|
287
|
+
<xs:enumeration value="2"/>
|
|
288
|
+
<xs:enumeration value="3"/>
|
|
289
|
+
<xs:enumeration value="9"/>
|
|
290
|
+
</xs:restriction>
|
|
291
|
+
</xs:simpleType>
|
|
292
|
+
|
|
293
|
+
<xs:simpleType name="VoltageAdjustmentRejectFlagType">
|
|
294
|
+
<xs:restriction base="xs:string">
|
|
295
|
+
<xs:enumeration value="1"/>
|
|
296
|
+
<xs:enumeration value="2"/>
|
|
297
|
+
<xs:enumeration value="9"/>
|
|
298
|
+
</xs:restriction>
|
|
299
|
+
</xs:simpleType>
|
|
300
|
+
|
|
301
|
+
<xs:simpleType name="PeakModeRejectFlagType">
|
|
302
|
+
<xs:restriction base="xs:string">
|
|
303
|
+
<xs:enumeration value="1"/>
|
|
304
|
+
<xs:enumeration value="2"/>
|
|
305
|
+
<xs:enumeration value="9"/>
|
|
306
|
+
</xs:restriction>
|
|
307
|
+
</xs:simpleType>
|
|
308
|
+
|
|
309
|
+
<xs:simpleType name="SystemSecurityPumpRejectFlagType">
|
|
310
|
+
<xs:restriction base="xs:string">
|
|
311
|
+
<xs:enumeration value="1"/>
|
|
312
|
+
<xs:enumeration value="2"/>
|
|
313
|
+
<xs:enumeration value="9"/>
|
|
314
|
+
</xs:restriction>
|
|
315
|
+
</xs:simpleType>
|
|
316
|
+
|
|
317
|
+
<xs:simpleType name="RejectReasonType">
|
|
318
|
+
<xs:restriction base="AsciiJapaneseStringType">
|
|
319
|
+
<xs:minLength value="1"/>
|
|
320
|
+
<xs:maxLength value="50"/>
|
|
321
|
+
</xs:restriction>
|
|
322
|
+
</xs:simpleType>
|
|
323
|
+
|
|
324
|
+
<xs:simpleType name="MarketTypeType">
|
|
325
|
+
<xs:restriction base="xs:string">
|
|
326
|
+
<xs:enumeration value="WAM"/>
|
|
327
|
+
<xs:enumeration value="DAM"/>
|
|
328
|
+
</xs:restriction>
|
|
329
|
+
</xs:simpleType>
|
|
330
|
+
|
|
331
|
+
<xs:simpleType name="TielineCommodityCategoryType">
|
|
332
|
+
<xs:restriction base="xs:string">
|
|
333
|
+
<xs:enumeration value="1000"/>
|
|
334
|
+
<xs:enumeration value="2100"/>
|
|
335
|
+
<xs:enumeration value="2200"/>
|
|
336
|
+
<xs:enumeration value="3100"/>
|
|
337
|
+
<xs:enumeration value="3200"/>
|
|
338
|
+
</xs:restriction>
|
|
339
|
+
</xs:simpleType>
|
|
340
|
+
|
|
341
|
+
<xs:simpleType name="OffMarketContractCommodityCategoryType">
|
|
342
|
+
<xs:restriction base="xs:string">
|
|
343
|
+
<xs:enumeration value="1000"/>
|
|
344
|
+
<xs:enumeration value="2100"/>
|
|
345
|
+
<xs:enumeration value="2200"/>
|
|
346
|
+
<xs:enumeration value="3100"/>
|
|
347
|
+
<xs:enumeration value="3200"/>
|
|
348
|
+
<xs:enumeration value="4000"/>
|
|
349
|
+
</xs:restriction>
|
|
350
|
+
</xs:simpleType>
|
|
351
|
+
|
|
352
|
+
<xs:simpleType name="OffMarketContractAreaType">
|
|
353
|
+
<xs:restriction base="xs:string">
|
|
354
|
+
<xs:enumeration value="01"/>
|
|
355
|
+
<xs:enumeration value="02"/>
|
|
356
|
+
<xs:enumeration value="03"/>
|
|
357
|
+
<xs:enumeration value="04"/>
|
|
358
|
+
<xs:enumeration value="05"/>
|
|
359
|
+
<xs:enumeration value="06"/>
|
|
360
|
+
<xs:enumeration value="07"/>
|
|
361
|
+
<xs:enumeration value="08"/>
|
|
362
|
+
<xs:enumeration value="09"/>
|
|
363
|
+
</xs:restriction>
|
|
364
|
+
</xs:simpleType>
|
|
365
|
+
|
|
366
|
+
<xs:simpleType name="DirectionUpDownType">
|
|
367
|
+
<xs:restriction base="xs:string">
|
|
368
|
+
<xs:enumeration value="1" />
|
|
369
|
+
<xs:enumeration value="2" />
|
|
370
|
+
</xs:restriction>
|
|
371
|
+
</xs:simpleType>
|
|
372
|
+
|
|
373
|
+
<xs:simpleType name="StatusType">
|
|
374
|
+
<xs:restriction base="xs:string">
|
|
375
|
+
<xs:enumeration value="1" />
|
|
376
|
+
<xs:enumeration value="0" />
|
|
377
|
+
</xs:restriction>
|
|
378
|
+
</xs:simpleType>
|
|
379
|
+
|
|
380
|
+
<xs:simpleType name="JbmsIdType">
|
|
381
|
+
<xs:restriction base="xs:string">
|
|
382
|
+
<xs:length value="18"/>
|
|
383
|
+
<xs:pattern value="[A-Z0-9]*"/>
|
|
384
|
+
</xs:restriction>
|
|
385
|
+
</xs:simpleType>
|
|
386
|
+
|
|
387
|
+
<xs:simpleType name="SubRequirementTypeType">
|
|
388
|
+
<xs:restriction base="xs:string">
|
|
389
|
+
<xs:enumeration value="PRI"/>
|
|
390
|
+
<xs:enumeration value="SEC1"/>
|
|
391
|
+
<xs:enumeration value="SEC2"/>
|
|
392
|
+
<xs:enumeration value="TER1"/>
|
|
393
|
+
<xs:enumeration value="PRI-SEC1"/>
|
|
394
|
+
<xs:enumeration value="PRI-SEC2"/>
|
|
395
|
+
<xs:enumeration value="PRI-TER1"/>
|
|
396
|
+
<xs:enumeration value="SEC1-SEC2"/>
|
|
397
|
+
<xs:enumeration value="SEC1-TER1"/>
|
|
398
|
+
<xs:enumeration value="SEC2-TER1"/>
|
|
399
|
+
<xs:enumeration value="PRI-SEC1-SEC2"/>
|
|
400
|
+
<xs:enumeration value="PRI-SEC1-TER1"/>
|
|
401
|
+
<xs:enumeration value="PRI-SEC2-TER1"/>
|
|
402
|
+
<xs:enumeration value="SEC1-SEC2-TER1"/>
|
|
403
|
+
<xs:enumeration value="PRI-SEC1-SEC2-TER1"/>
|
|
404
|
+
</xs:restriction>
|
|
405
|
+
</xs:simpleType>
|
|
406
|
+
|
|
407
|
+
<xs:simpleType name="CommodityCategoryType">
|
|
408
|
+
<xs:restriction base="xs:string">
|
|
409
|
+
<xs:enumeration value="1000"/>
|
|
410
|
+
<xs:enumeration value="2100"/>
|
|
411
|
+
<xs:enumeration value="2200"/>
|
|
412
|
+
<xs:enumeration value="3100"/>
|
|
413
|
+
<xs:enumeration value="3200"/>
|
|
414
|
+
<xs:enumeration value="4000"/>
|
|
415
|
+
</xs:restriction>
|
|
416
|
+
</xs:simpleType>
|
|
417
|
+
|
|
418
|
+
<xs:simpleType name="ProcurementTypeType">
|
|
419
|
+
<xs:restriction base="xs:string">
|
|
420
|
+
<xs:enumeration value="1"/>
|
|
421
|
+
<xs:enumeration value="2"/>
|
|
422
|
+
</xs:restriction>
|
|
423
|
+
</xs:simpleType>
|
|
424
|
+
|
|
425
|
+
<xs:simpleType name="RampDownRefundTypeType">
|
|
426
|
+
<xs:restriction base="xs:string">
|
|
427
|
+
<xs:enumeration value="0"/>
|
|
428
|
+
<xs:enumeration value="1"/>
|
|
429
|
+
</xs:restriction>
|
|
430
|
+
</xs:simpleType>
|
|
431
|
+
|
|
432
|
+
<xs:simpleType name="StartUpRefundTypeType">
|
|
433
|
+
<xs:restriction base="xs:string">
|
|
434
|
+
<xs:enumeration value="0"/>
|
|
435
|
+
<xs:enumeration value="1"/>
|
|
436
|
+
</xs:restriction>
|
|
437
|
+
</xs:simpleType>
|
|
438
|
+
|
|
439
|
+
<xs:simpleType name="ContractIdType">
|
|
440
|
+
<xs:restriction base="xs:string">
|
|
441
|
+
<xs:minLength value="19"/>
|
|
442
|
+
<xs:maxLength value="19"/>
|
|
443
|
+
<xs:pattern value="[a-zA-Z0-9]*"/>
|
|
444
|
+
</xs:restriction>
|
|
445
|
+
</xs:simpleType>
|
|
446
|
+
|
|
447
|
+
<xs:simpleType name="JbmsIdRefundType">
|
|
448
|
+
<xs:restriction base="xs:string">
|
|
449
|
+
<xs:minLength value="1"/>
|
|
450
|
+
<xs:maxLength value="18"/>
|
|
451
|
+
<xs:pattern value="[A-Z0-9]*"/>
|
|
452
|
+
</xs:restriction>
|
|
453
|
+
</xs:simpleType>
|
|
454
|
+
|
|
455
|
+
<!-- END: JBMS Simple Enumeration Types -->
|
|
456
|
+
|
|
457
|
+
<!-- BEGIN: Common Attribute Group Definitions -->
|
|
458
|
+
|
|
459
|
+
<xs:attributeGroup name="CommonAttributes">
|
|
460
|
+
<xs:attribute name="Validation" type="ValidationStatusType"
|
|
461
|
+
use="optional" default="NOT_DONE"/>
|
|
462
|
+
<xs:attribute name="Success" type="xs:boolean" use="optional"/>
|
|
463
|
+
</xs:attributeGroup>
|
|
464
|
+
|
|
465
|
+
<xs:attributeGroup name="HeaderAttributes">
|
|
466
|
+
<xs:attribute name="Date" type="xs:date" use="required" />
|
|
467
|
+
<xs:attribute name="ParticipantName" type="ParticipantNameType" use="required" />
|
|
468
|
+
<xs:attribute name="UserName" type="UserNameType" use="required" />
|
|
469
|
+
</xs:attributeGroup>
|
|
470
|
+
|
|
471
|
+
<!-- END: Common Attribute Group Definitions -->
|
|
472
|
+
|
|
473
|
+
<!-- BEGIN: Common Complex Type Definitions -->
|
|
474
|
+
|
|
475
|
+
<xs:complexType name="ErrorType">
|
|
476
|
+
<xs:simpleContent>
|
|
477
|
+
<xs:extension base="xs:string">
|
|
478
|
+
<xs:attribute name="Code" type="CodeType"
|
|
479
|
+
use="optional"/>
|
|
480
|
+
</xs:extension>
|
|
481
|
+
</xs:simpleContent>
|
|
482
|
+
</xs:complexType>
|
|
483
|
+
|
|
484
|
+
<xs:complexType name="WarningType">
|
|
485
|
+
<xs:simpleContent>
|
|
486
|
+
<xs:extension base="xs:string">
|
|
487
|
+
<xs:attribute name="Code" type="CodeType"
|
|
488
|
+
use="optional"/>
|
|
489
|
+
</xs:extension>
|
|
490
|
+
</xs:simpleContent>
|
|
491
|
+
</xs:complexType>
|
|
492
|
+
|
|
493
|
+
<xs:complexType name="InformationType">
|
|
494
|
+
<xs:simpleContent>
|
|
495
|
+
<xs:extension base="xs:string">
|
|
496
|
+
<xs:attribute name="Code" type="CodeType"
|
|
497
|
+
use="optional"/>
|
|
498
|
+
</xs:extension>
|
|
499
|
+
</xs:simpleContent>
|
|
500
|
+
</xs:complexType>
|
|
501
|
+
|
|
502
|
+
<xs:complexType name="MessagesType">
|
|
503
|
+
<xs:sequence>
|
|
504
|
+
<xs:element name="Error" type="ErrorType"
|
|
505
|
+
minOccurs="0" maxOccurs="unbounded"/>
|
|
506
|
+
<xs:element name="Warning" type="WarningType"
|
|
507
|
+
minOccurs="0" maxOccurs="unbounded"/>
|
|
508
|
+
<xs:element name="Information" type="InformationType"
|
|
509
|
+
minOccurs="0" maxOccurs="unbounded"/>
|
|
510
|
+
</xs:sequence>
|
|
511
|
+
</xs:complexType>
|
|
512
|
+
|
|
513
|
+
<xs:complexType name="ProcessingStatisticsType">
|
|
514
|
+
<xs:attribute name="Received" type="xs:int" use="optional" />
|
|
515
|
+
<xs:attribute name="Valid" type="xs:int" use="optional" />
|
|
516
|
+
<xs:attribute name="Invalid" type="xs:int" use="optional" />
|
|
517
|
+
<xs:attribute name="Successful" type="xs:int" use="optional" />
|
|
518
|
+
<xs:attribute name="Unsuccessful" type="xs:int" use="optional" />
|
|
519
|
+
<xs:attribute name="ProcessingTimeMs" type="xs:long" use="optional" />
|
|
520
|
+
<xs:attribute name="TransactionId" type="TransactionId" use="optional" />
|
|
521
|
+
<xs:attribute name="TimeStamp" type="xs:string" use="optional" />
|
|
522
|
+
<xs:attribute name="XmlTimeStamp" type="xs:dateTime" use="optional" />
|
|
523
|
+
</xs:complexType>
|
|
524
|
+
|
|
525
|
+
<!-- END: Common Complex Type Definitions -->
|
|
526
|
+
|
|
527
|
+
<!-- BEGIN: OMI Data Definitions -->
|
|
528
|
+
|
|
529
|
+
<xs:complexType name="BaselineLoadFileType">
|
|
530
|
+
<xs:sequence>
|
|
531
|
+
<xs:element name="Messages" type="MessagesType"
|
|
532
|
+
minOccurs="0" maxOccurs="1"/>
|
|
533
|
+
</xs:sequence>
|
|
534
|
+
<xs:attribute name="Name" type="BaselineLoadFileNameType" use="required"/>
|
|
535
|
+
<xs:attribute name="BaselineType" type="BaselineTypeType" use="required"/>
|
|
536
|
+
<xs:attribute name="ResourceName" type="ResourceNameType" use="optional"/>
|
|
537
|
+
<xs:attribute name="ResourceShortName" type="ResourceShortNameType" use="optional"/>
|
|
538
|
+
<xs:attribute name="SystemCode" type="SystemCodeType" use="optional"/>
|
|
539
|
+
<xs:attribute name="StartTime" type="xs:dateTime" use="optional"/>
|
|
540
|
+
<xs:attribute name="Area" type="AreaType" use="optional"/>
|
|
541
|
+
<xs:attribute name="SubmissionTime" type="xs:dateTime" use="optional"/>
|
|
542
|
+
</xs:complexType>
|
|
543
|
+
|
|
544
|
+
<xs:complexType name="BaselineLoadSubmitType">
|
|
545
|
+
<xs:annotation>
|
|
546
|
+
<xs:documentation xml:lang="en">
|
|
547
|
+
|
|
548
|
+
BaselineLoad: Submit type
|
|
549
|
+
|
|
550
|
+
</xs:documentation>
|
|
551
|
+
</xs:annotation>
|
|
552
|
+
<xs:sequence>
|
|
553
|
+
<xs:element name="Messages" type="MessagesType"
|
|
554
|
+
minOccurs="0" maxOccurs="1"/>
|
|
555
|
+
<xs:element name="File" type="BaselineLoadFileType"
|
|
556
|
+
minOccurs="0" maxOccurs="unbounded"/>
|
|
557
|
+
</xs:sequence>
|
|
558
|
+
<xs:attributeGroup ref="CommonAttributes"/>
|
|
559
|
+
</xs:complexType>
|
|
560
|
+
|
|
561
|
+
<xs:complexType name="BaselineLoadFileDownloadQueryType">
|
|
562
|
+
<xs:annotation>
|
|
563
|
+
<xs:documentation xml:lang="en">
|
|
564
|
+
|
|
565
|
+
BaselineLoad: File Download Query type.
|
|
566
|
+
|
|
567
|
+
</xs:documentation>
|
|
568
|
+
</xs:annotation>
|
|
569
|
+
<xs:sequence>
|
|
570
|
+
<xs:element name="Messages" type="MessagesType"
|
|
571
|
+
minOccurs="0" maxOccurs="1"/>
|
|
572
|
+
<xs:element name="File" type="BaselineLoadFileType"
|
|
573
|
+
minOccurs="1" maxOccurs="10"/>
|
|
574
|
+
</xs:sequence>
|
|
575
|
+
<xs:attributeGroup ref="CommonAttributes"/>
|
|
576
|
+
</xs:complexType>
|
|
577
|
+
|
|
578
|
+
<xs:complexType name="BaselineLoadFileListQueryType">
|
|
579
|
+
<xs:annotation>
|
|
580
|
+
<xs:documentation xml:lang="en">
|
|
581
|
+
|
|
582
|
+
BaselineLoad: Query List of the Files
|
|
583
|
+
|
|
584
|
+
</xs:documentation>
|
|
585
|
+
</xs:annotation>
|
|
586
|
+
<xs:sequence>
|
|
587
|
+
<xs:element name="Messages" type="MessagesType"
|
|
588
|
+
minOccurs="0" maxOccurs="1"/>
|
|
589
|
+
</xs:sequence>
|
|
590
|
+
<xs:attribute name="BaselineType" type="BaselineTypeType" use="optional"/>
|
|
591
|
+
<xs:attributeGroup ref="CommonAttributes"/>
|
|
592
|
+
</xs:complexType>
|
|
593
|
+
|
|
594
|
+
<xs:complexType name="RemainingReserveDataSubmitType">
|
|
595
|
+
<xs:annotation>
|
|
596
|
+
<xs:documentation xml:lang="en">
|
|
597
|
+
|
|
598
|
+
RemainingReserveData: Submit type
|
|
599
|
+
|
|
600
|
+
</xs:documentation>
|
|
601
|
+
</xs:annotation>
|
|
602
|
+
<xs:sequence>
|
|
603
|
+
<xs:element name="Messages" type="MessagesType"
|
|
604
|
+
minOccurs="0" maxOccurs="1"/>
|
|
605
|
+
</xs:sequence>
|
|
606
|
+
<xs:attribute name="Area" type="AreaType" use="optional"/>
|
|
607
|
+
<xs:attribute name="ParticipantName" type="ParticipantNameType" use="optional"/>
|
|
608
|
+
<xs:attribute name="CompanyShortName" type="CompanyShortNameType" use="optional"/>
|
|
609
|
+
<xs:attribute name="SystemCode" type="SystemCodeType" use="optional"/>
|
|
610
|
+
<xs:attribute name="ResourceName" type="ResourceNameType" use="required"/>
|
|
611
|
+
<xs:attribute name="ResourceShortName" type="ResourceShortNameType" use="optional"/>
|
|
612
|
+
<xs:attribute name="StartTime" type="xs:dateTime" use="required"/>
|
|
613
|
+
<xs:attribute name="EndTime" type="xs:dateTime" use="required"/>
|
|
614
|
+
<xs:attribute name="DrPatternNumber" type="DrPatternNumberType" use="optional"/>
|
|
615
|
+
<xs:attribute name="RemainingReserveUp" type="KwPosValue7.0Type" use="optional"/>
|
|
616
|
+
<xs:attribute name="RemainingReserveUpRejectFlag" type="RemainingReserveUpRejectFlagType" use="optional"/>
|
|
617
|
+
<xs:attribute name="RemainingReserveUpRejectReason" type="RejectReasonType" use="optional"/>
|
|
618
|
+
<xs:attribute name="RemainingReserveDown" type="KwPosValue7.0Type" use="optional"/>
|
|
619
|
+
<xs:attribute name="RemainingReserveDownRejectFlag" type="RemainingReserveDownRejectFlagType" use="optional"/>
|
|
620
|
+
<xs:attribute name="RemainingReserveDownRejectReason" type="RejectReasonType" use="optional"/>
|
|
621
|
+
<xs:attribute name="VoltageAdjustmentRejectFlag" type="VoltageAdjustmentRejectFlagType" use="optional"/>
|
|
622
|
+
<xs:attribute name="VoltageAdjustmentRejectReason" type="RejectReasonType" use="optional"/>
|
|
623
|
+
<xs:attribute name="BlackStartRejectFlag" type="BlackStartRejectFlagType" use="optional"/>
|
|
624
|
+
<xs:attribute name="BlackStartRejectReason" type="RejectReasonType" use="optional"/>
|
|
625
|
+
<xs:attribute name="OverPowerRemainingReserveUp" type="KwPosValue7.0Type" use="optional"/>
|
|
626
|
+
<xs:attribute name="OverPowerRejectFlag" type="OverPowerRejectFlagType" use="optional"/>
|
|
627
|
+
<xs:attribute name="OverPowerRejectReason" type="RejectReasonType" use="optional"/>
|
|
628
|
+
<xs:attribute name="PeakModeRemainingReserveUp" type="KwPosValue7.0Type" use="optional"/>
|
|
629
|
+
<xs:attribute name="PeakModeRejectFlag" type="PeakModeRejectFlagType" use="optional"/>
|
|
630
|
+
<xs:attribute name="PeakModeRejectReason" type="RejectReasonType" use="optional"/>
|
|
631
|
+
<xs:attribute name="SystemSecurityPumpRejectFlag" type="SystemSecurityPumpRejectFlagType" use="optional"/>
|
|
632
|
+
<xs:attribute name="SystemSecurityPumpRejectReason" type="RejectReasonType" use="optional"/>
|
|
633
|
+
<xs:attributeGroup ref="CommonAttributes"/>
|
|
634
|
+
</xs:complexType>
|
|
635
|
+
|
|
636
|
+
<xs:complexType name="RemainingReserveDataQueryType">
|
|
637
|
+
<xs:annotation>
|
|
638
|
+
<xs:documentation xml:lang="en">
|
|
639
|
+
|
|
640
|
+
RemainingReserveData: Query type
|
|
641
|
+
|
|
642
|
+
</xs:documentation>
|
|
643
|
+
</xs:annotation>
|
|
644
|
+
<xs:sequence>
|
|
645
|
+
<xs:element name="Messages" type="MessagesType"
|
|
646
|
+
minOccurs="0" maxOccurs="1"/>
|
|
647
|
+
</xs:sequence>
|
|
648
|
+
<xs:attribute name="StartTime" type="xs:dateTime" use="required"/>
|
|
649
|
+
<xs:attribute name="EndTime" type="xs:dateTime" use="required"/>
|
|
650
|
+
<xs:attribute name="ResourceName" type="ResourceNameType" use="optional"/>
|
|
651
|
+
<xs:attribute name="DrPatternNumber" type="DrPatternNumberType" use="optional"/>
|
|
652
|
+
<xs:attributeGroup ref="CommonAttributes"/>
|
|
653
|
+
</xs:complexType>
|
|
654
|
+
|
|
655
|
+
<xs:complexType name="TielineDataType">
|
|
656
|
+
<xs:sequence>
|
|
657
|
+
<xs:element name="Messages" type="MessagesType"
|
|
658
|
+
minOccurs="0" maxOccurs="1"/>
|
|
659
|
+
</xs:sequence>
|
|
660
|
+
<xs:attribute name="CommodityCategory" type="TielineCommodityCategoryType" use="required"/>
|
|
661
|
+
<xs:attribute name="InterconEquipment" type="InterconEquipmentType" use="required"/>
|
|
662
|
+
<xs:attribute name="AllocCapacityForward" type="KwPosValue7.0Type" use="optional"/>
|
|
663
|
+
<xs:attribute name="AllocCapacityBackward" type="KwNegValue7.0Type" use="optional"/>
|
|
664
|
+
<xs:attribute name="DkwForward" type="KwPosValue7.0Type" use="optional"/>
|
|
665
|
+
<xs:attribute name="DkwBackward" type="KwNegValue7.0Type" use="optional"/>
|
|
666
|
+
<xs:attribute name="AllocFence1Forward" type="KwPosValue7.0Type" use="optional"/>
|
|
667
|
+
<xs:attribute name="AllocFence1Backward" type="KwNegValue7.0Type" use="optional"/>
|
|
668
|
+
<xs:attribute name="AllocFence2Forward" type="KwPosValue7.0Type" use="optional"/>
|
|
669
|
+
<xs:attribute name="AllocFence2Backward" type="KwNegValue7.0Type" use="optional"/>
|
|
670
|
+
<xs:attribute name="AllocFence3Forward" type="KwPosValue7.0Type" use="optional"/>
|
|
671
|
+
<xs:attribute name="AllocFence3Backward" type="KwNegValue7.0Type" use="optional"/>
|
|
672
|
+
<xs:attribute name="AllocFence4Forward" type="KwPosValue7.0Type" use="optional"/>
|
|
673
|
+
<xs:attribute name="AllocFence4Backward" type="KwNegValue7.0Type" use="optional"/>
|
|
674
|
+
<xs:attribute name="FenceDkw1Forward" type="KwPosValue7.0Type" use="optional"/>
|
|
675
|
+
<xs:attribute name="FenceDkw1Backward" type="KwNegValue7.0Type" use="optional"/>
|
|
676
|
+
<xs:attribute name="FenceDkw2Forward" type="KwPosValue7.0Type" use="optional"/>
|
|
677
|
+
<xs:attribute name="FenceDkw2Backward" type="KwNegValue7.0Type" use="optional"/>
|
|
678
|
+
<xs:attribute name="FenceDkw3Forward" type="KwPosValue7.0Type" use="optional"/>
|
|
679
|
+
<xs:attribute name="FenceDkw3Backward" type="KwNegValue7.0Type" use="optional"/>
|
|
680
|
+
<xs:attribute name="FenceDkw4Forward" type="KwPosValue7.0Type" use="optional"/>
|
|
681
|
+
<xs:attribute name="FenceDkw4Backward" type="KwNegValue7.0Type" use="optional"/>
|
|
682
|
+
</xs:complexType>
|
|
683
|
+
|
|
684
|
+
<xs:complexType name="OffMarketContractSubmitType">
|
|
685
|
+
<xs:annotation>
|
|
686
|
+
<xs:documentation xml:lang="en">
|
|
687
|
+
|
|
688
|
+
OffMarketContract: Submit type
|
|
689
|
+
|
|
690
|
+
</xs:documentation>
|
|
691
|
+
</xs:annotation>
|
|
692
|
+
<xs:sequence>
|
|
693
|
+
<xs:element name="Messages" type="MessagesType"
|
|
694
|
+
minOccurs="0" maxOccurs="1"/>
|
|
695
|
+
<xs:element name="TielineData" type="TielineDataType"
|
|
696
|
+
minOccurs="0" maxOccurs="unbounded"/>
|
|
697
|
+
</xs:sequence>
|
|
698
|
+
<xs:attribute name="MarketType" type="MarketTypeType" use="required"/>
|
|
699
|
+
<xs:attribute name="StartTime" type="xs:dateTime" use="required"/>
|
|
700
|
+
<xs:attribute name="StartTimeCode" type="StartTimeCodeType" use="optional"/>
|
|
701
|
+
<xs:attribute name="EndTime" type="xs:dateTime" use="required"/>
|
|
702
|
+
<xs:attribute name="EndTimeCode" type="EndTimeCodeType" use="optional"/>
|
|
703
|
+
<xs:attribute name="CommodityCategory" type="OffMarketContractCommodityCategoryType" use="optional"/>
|
|
704
|
+
<xs:attribute name="ResourceName" type="ResourceNameType" use="required"/>
|
|
705
|
+
<xs:attribute name="ResourceShortName" type="ResourceShortNameType" use="optional"/>
|
|
706
|
+
<xs:attribute name="ResourceType" type="ResourceTypeType" use="optional"/>
|
|
707
|
+
<xs:attribute name="SystemCode" type="SystemCodeType" use="optional"/>
|
|
708
|
+
<xs:attribute name="ParticipantName" type="ParticipantNameType" use="optional"/>
|
|
709
|
+
<xs:attribute name="CompanyShortName" type="CompanyShortNameType" use="optional"/>
|
|
710
|
+
<xs:attribute name="OperatorCode" type="OperatorCodeType" use="optional"/>
|
|
711
|
+
<xs:attribute name="Direction" type="DirectionUpDownType" use="required"/>
|
|
712
|
+
<xs:attribute name="LinkedArea" type="OffMarketContractAreaType" use="required"/>
|
|
713
|
+
<xs:attribute name="Area" type="OffMarketContractAreaType" use="optional"/>
|
|
714
|
+
<xs:attribute name="SubRequirementType" type="SubRequirementTypeType" use="optional"/>
|
|
715
|
+
<xs:attribute name="PrimaryContractQuantityInKw" type="KwPosValue7.0Type" use="optional"/>
|
|
716
|
+
<xs:attribute name="Secondary1ContractQuantityInKw" type="KwPosValue7.0Type" use="optional"/>
|
|
717
|
+
<xs:attribute name="Secondary2ContractQuantityInKw" type="KwPosValue7.0Type" use="optional"/>
|
|
718
|
+
<xs:attribute name="Tertiary1ContractQuantityInKw" type="KwPosValue7.0Type" use="optional"/>
|
|
719
|
+
<xs:attribute name="CompoundContractQuantityInKw" type="KwPosValue7.0Type" use="optional"/>
|
|
720
|
+
<xs:attribute name="Tertiary2ContractQuantityInKw" type="KwPosValue7.0Type" use="optional"/>
|
|
721
|
+
<xs:attribute name="ContractPrice" type="PriceValue7.2RoundedType" use="required"/>
|
|
722
|
+
<xs:attribute name="RampDownUnitPrice" type="PriceValue7.2RoundedType" use="optional"/>
|
|
723
|
+
<xs:attribute name="StartUpUnitPrice" type="PriceValue7.2RoundedType" use="optional"/>
|
|
724
|
+
<xs:attribute name="DrPatternNumber" type="DrPatternNumberType" use="optional"/>
|
|
725
|
+
<xs:attribute name="PriSec1CommandOperationMethod" type="PriSec1CommandOperationMethodType" use="optional"/>
|
|
726
|
+
<xs:attribute name="Sec2Ter1Ter2CommandOperationMethod" type="Sec2Ter1Ter2CommandOperationMethodType" use="optional"/>
|
|
727
|
+
<xs:attribute name="Status" type="StatusType" use="required"/>
|
|
728
|
+
<xs:attribute name="JbmsId" type="JbmsIdType" use="optional"/>
|
|
729
|
+
<xs:attribute name="SubmitterArea" type="OffMarketContractAreaType" use="optional"/>
|
|
730
|
+
<xs:attributeGroup ref="CommonAttributes"/>
|
|
731
|
+
</xs:complexType>
|
|
732
|
+
|
|
733
|
+
<xs:complexType name="OffMarketContractQueryType">
|
|
734
|
+
<xs:annotation>
|
|
735
|
+
<xs:documentation xml:lang="en">
|
|
736
|
+
|
|
737
|
+
OffMarketContract: Query type
|
|
738
|
+
|
|
739
|
+
</xs:documentation>
|
|
740
|
+
</xs:annotation>
|
|
741
|
+
<xs:sequence>
|
|
742
|
+
<xs:element name="Messages" type="MessagesType"
|
|
743
|
+
minOccurs="0" maxOccurs="1"/>
|
|
744
|
+
</xs:sequence>
|
|
745
|
+
<xs:attribute name="StartTime" type="xs:dateTime" use="required"/>
|
|
746
|
+
<xs:attribute name="EndTime" type="xs:dateTime" use="required"/>
|
|
747
|
+
<xs:attribute name="MarketType" type="MarketTypeType" use="optional"/>
|
|
748
|
+
<xs:attribute name="Area" type="OffMarketContractAreaType" use="optional"/>
|
|
749
|
+
<xs:attribute name="LinkedArea" type="OffMarketContractAreaType" use="optional"/>
|
|
750
|
+
<xs:attribute name="ResourceName" type="ResourceNameType" use="optional"/>
|
|
751
|
+
<xs:attribute name="Status" type="StatusType" use="optional"/>
|
|
752
|
+
<xs:attributeGroup ref="CommonAttributes"/>
|
|
753
|
+
</xs:complexType>
|
|
754
|
+
|
|
755
|
+
<xs:complexType name="RefundDataQueryType">
|
|
756
|
+
<xs:annotation>
|
|
757
|
+
<xs:documentation xml:lang="en">
|
|
758
|
+
|
|
759
|
+
RefundData: Query type
|
|
760
|
+
|
|
761
|
+
</xs:documentation>
|
|
762
|
+
</xs:annotation>
|
|
763
|
+
<xs:sequence>
|
|
764
|
+
<xs:element name="Messages" type="MessagesType"
|
|
765
|
+
minOccurs="0" maxOccurs="1"/>
|
|
766
|
+
</xs:sequence>
|
|
767
|
+
<xs:attribute name="StartTime" type="xs:dateTime" use="required"/>
|
|
768
|
+
<xs:attribute name="EndTime" type="xs:dateTime" use="required"/>
|
|
769
|
+
<xs:attribute name="ProcurementType" type="ProcurementTypeType" use="optional"/>
|
|
770
|
+
<xs:attribute name="JbmsId" type="JbmsIdRefundType" use="optional"/>
|
|
771
|
+
<xs:attribute name="ResourceName" type="ResourceNameType" use="optional"/>
|
|
772
|
+
<xs:attribute name="ContractId" type="ContractIdType" use="optional"/>
|
|
773
|
+
<xs:attribute name="SystemCode" type="SystemCodeType" use="optional"/>
|
|
774
|
+
<xs:attribute name="ParticipantName" type="ParticipantNameType" use="optional" />
|
|
775
|
+
<xs:attribute name="Area" type="AreaType" use="optional"/>
|
|
776
|
+
<xs:attributeGroup ref="CommonAttributes"/>
|
|
777
|
+
</xs:complexType>
|
|
778
|
+
|
|
779
|
+
<xs:complexType name="RefundTargetContractResultQueryType">
|
|
780
|
+
<xs:annotation>
|
|
781
|
+
<xs:documentation xml:lang="en">
|
|
782
|
+
|
|
783
|
+
RefundTargetContractResult: Query type
|
|
784
|
+
|
|
785
|
+
</xs:documentation>
|
|
786
|
+
</xs:annotation>
|
|
787
|
+
<xs:sequence>
|
|
788
|
+
<xs:element name="Messages" type="MessagesType"
|
|
789
|
+
minOccurs="0" maxOccurs="1"/>
|
|
790
|
+
</xs:sequence>
|
|
791
|
+
<xs:attribute name="StartTime" type="xs:dateTime" use="required"/>
|
|
792
|
+
<xs:attribute name="EndTime" type="xs:dateTime" use="required"/>
|
|
793
|
+
<xs:attribute name="ProcurementType" type="ProcurementTypeType" use="required"/>
|
|
794
|
+
<xs:attribute name="JbmsId" type="JbmsIdRefundType" use="optional"/>
|
|
795
|
+
<xs:attribute name="ResourceName" type="ResourceNameType" use="optional"/>
|
|
796
|
+
<xs:attribute name="ContractId" type="ContractIdType" use="optional"/>
|
|
797
|
+
<xs:attribute name="SystemCode" type="SystemCodeType" use="optional"/>
|
|
798
|
+
<xs:attributeGroup ref="CommonAttributes"/>
|
|
799
|
+
</xs:complexType>
|
|
800
|
+
|
|
801
|
+
<xs:complexType name="RefundDataType">
|
|
802
|
+
<xs:annotation>
|
|
803
|
+
<xs:documentation xml:lang="en">
|
|
804
|
+
|
|
805
|
+
RefundData: Submit type
|
|
806
|
+
|
|
807
|
+
</xs:documentation>
|
|
808
|
+
</xs:annotation>
|
|
809
|
+
<xs:sequence>
|
|
810
|
+
<xs:element name="Messages" type="MessagesType"
|
|
811
|
+
minOccurs="0" maxOccurs="1"/>
|
|
812
|
+
</xs:sequence>
|
|
813
|
+
<xs:attribute name="ProcurementType" type="ProcurementTypeType" use="required"/>
|
|
814
|
+
<xs:attribute name="JbmsId" type="JbmsIdRefundType" use="required"/>
|
|
815
|
+
<xs:attribute name="ContractId" type="ContractIdType" use="optional"/>
|
|
816
|
+
<xs:attribute name="StartTime" type="xs:dateTime" use="required"/>
|
|
817
|
+
<xs:attribute name="EndTime" type="xs:dateTime" use="optional"/>
|
|
818
|
+
<xs:attribute name="ParticipantName" type="ParticipantNameType" use="optional"/>
|
|
819
|
+
<xs:attribute name="ResourceName" type="ResourceNameType" use="optional"/>
|
|
820
|
+
<xs:attribute name="SystemCode" type="SystemCodeType" use="optional"/>
|
|
821
|
+
<xs:attribute name="CommodityCategory" type="CommodityCategoryType" use="optional"/>
|
|
822
|
+
<xs:attribute name="ContractPrice" type="PriceValue7.2RoundedType" use="optional"/>
|
|
823
|
+
<xs:attribute name="RampDownUnitPrice" type="PriceValue7.2RoundedType" use="optional"/>
|
|
824
|
+
<xs:attribute name="StartUpUnitPrice" type="PriceValue7.2RoundedType" use="optional"/>
|
|
825
|
+
<xs:attribute name="RampDownRefundType" type="RampDownRefundTypeType" use="required"/>
|
|
826
|
+
<xs:attribute name="StartUpRefundType" type="StartUpRefundTypeType" use="required"/>
|
|
827
|
+
<xs:attribute name="SubmissionTime" type="xs:dateTime" use="optional"/>
|
|
828
|
+
<xs:attributeGroup ref="CommonAttributes"/>
|
|
829
|
+
</xs:complexType>
|
|
830
|
+
|
|
831
|
+
<!-- END: OMI Data Definitions -->
|
|
832
|
+
|
|
833
|
+
<!-- BEGIN: Interface DEFINITIONS -->
|
|
834
|
+
|
|
835
|
+
<!-- Submit Types -->
|
|
836
|
+
<xs:complexType name="MarketSubmitType">
|
|
837
|
+
<xs:annotation>
|
|
838
|
+
<xs:documentation xml:lang="en">
|
|
839
|
+
|
|
840
|
+
This is used to submit the different Interface Data.
|
|
841
|
+
|
|
842
|
+
</xs:documentation>
|
|
843
|
+
</xs:annotation>
|
|
844
|
+
<xs:sequence>
|
|
845
|
+
<xs:element name="Messages" type="MessagesType" minOccurs="0" />
|
|
846
|
+
<xs:choice>
|
|
847
|
+
|
|
848
|
+
<xs:element name="BaselineLoad" type="BaselineLoadSubmitType"
|
|
849
|
+
minOccurs="0" maxOccurs="1"/>
|
|
850
|
+
<xs:element name="RemainingReserveData" type="RemainingReserveDataSubmitType"
|
|
851
|
+
minOccurs="0" maxOccurs="unbounded"/>
|
|
852
|
+
<xs:element name="OffMarketContract" type="OffMarketContractSubmitType"
|
|
853
|
+
minOccurs="0" maxOccurs="unbounded"/>
|
|
854
|
+
<xs:element name="RefundData" type="RefundDataType"
|
|
855
|
+
minOccurs="0" maxOccurs="unbounded"/>
|
|
856
|
+
|
|
857
|
+
</xs:choice>
|
|
858
|
+
</xs:sequence>
|
|
859
|
+
<xs:attributeGroup ref="HeaderAttributes" />
|
|
860
|
+
<xs:attributeGroup ref="CommonAttributes"/>
|
|
861
|
+
</xs:complexType>
|
|
862
|
+
|
|
863
|
+
<!-- Query Types -->
|
|
864
|
+
<xs:complexType name="MarketQueryType">
|
|
865
|
+
<xs:annotation>
|
|
866
|
+
<xs:documentation xml:lang="en">
|
|
867
|
+
|
|
868
|
+
This is used to query the different Interface Data.
|
|
869
|
+
|
|
870
|
+
</xs:documentation>
|
|
871
|
+
</xs:annotation>
|
|
872
|
+
<xs:sequence>
|
|
873
|
+
<xs:element name="Messages" type="MessagesType" minOccurs="0" />
|
|
874
|
+
<xs:choice>
|
|
875
|
+
|
|
876
|
+
<xs:element name="BaselineLoadFileListQuery" type="BaselineLoadFileListQueryType"
|
|
877
|
+
minOccurs="0" maxOccurs="1"/>
|
|
878
|
+
<xs:element name="BaselineLoadFileDownloadQuery" type="BaselineLoadFileDownloadQueryType"
|
|
879
|
+
minOccurs="0" maxOccurs="1"/>
|
|
880
|
+
<xs:element name="RemainingReserveDataQuery" type="RemainingReserveDataQueryType"
|
|
881
|
+
minOccurs="0" maxOccurs="1"/>
|
|
882
|
+
<xs:element name="OffMarketContractQuery" type="OffMarketContractQueryType"
|
|
883
|
+
minOccurs="0" maxOccurs="1"/>
|
|
884
|
+
<xs:element name="RefundDataQuery" type="RefundDataQueryType"
|
|
885
|
+
minOccurs="0" maxOccurs="1"/>
|
|
886
|
+
<xs:element name="RefundTargetContractResultQuery" type="RefundTargetContractResultQueryType"
|
|
887
|
+
minOccurs="0" maxOccurs="1"/>
|
|
888
|
+
|
|
889
|
+
</xs:choice>
|
|
890
|
+
</xs:sequence>
|
|
891
|
+
<xs:attributeGroup ref="HeaderAttributes" />
|
|
892
|
+
<xs:attributeGroup ref="CommonAttributes"/>
|
|
893
|
+
</xs:complexType>
|
|
894
|
+
|
|
895
|
+
<xs:complexType name="MarketDataListType">
|
|
896
|
+
<xs:sequence>
|
|
897
|
+
<xs:element name="ProcessingStatistics" type="ProcessingStatisticsType"
|
|
898
|
+
minOccurs="0" maxOccurs="1" />
|
|
899
|
+
<xs:element name="Messages" type="MessagesType" minOccurs="0"/>
|
|
900
|
+
<xs:choice>
|
|
901
|
+
<xs:element name="MarketSubmit" type="MarketSubmitType"
|
|
902
|
+
minOccurs="0" maxOccurs="1" />
|
|
903
|
+
<xs:element name="MarketQuery" type="MarketQueryType" minOccurs="0"
|
|
904
|
+
maxOccurs="1" />
|
|
905
|
+
</xs:choice>
|
|
906
|
+
</xs:sequence>
|
|
907
|
+
</xs:complexType>
|
|
908
|
+
|
|
909
|
+
<xs:element name="MarketData" type="MarketDataListType" />
|
|
910
|
+
|
|
911
|
+
<!-- END: Interface DEFINITIONS -->
|
|
912
|
+
|
|
913
|
+
</xs:schema>
|