-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathiec_61400-15-2_eya_def.schema.json
More file actions
3376 lines (3376 loc) · 144 KB
/
Copy pathiec_61400-15-2_eya_def.schema.json
File metadata and controls
3376 lines (3376 loc) · 144 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
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
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
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
{
"$defs": {
"BasicStatistic": {
"additionalProperties": false,
"description": "Specification of a statistic that only requires type definition.",
"properties": {
"evaluation_period": {
"anyOf": [
{
"exclusiveMinimum": 0,
"type": "integer"
},
{
"exclusiveMinimum": 0,
"type": "number"
},
{
"type": "null"
}
],
"default": null,
"description": "Optional specification of the evaluation period in years, to be included when relevant to the context and statistic in question. This may for example define a 10-year evaluation period for the standard deviation of an uncertainty distribution or a certain probability of exceedance level.",
"examples": [
1.0,
10.0
],
"title": "Evaluation Period"
},
"statistic_type": {
"description": "Specification of the type of statistic, using the standardised naming conventions.",
"enum": [
"sum",
"mean",
"median",
"standard_deviation",
"minimum",
"maximum",
"sample_count"
],
"title": "Statistic Type",
"type": "string"
}
},
"required": [
"statistic_type"
],
"title": "BasicStatistic",
"type": "object"
},
"Dataset": {
"additionalProperties": false,
"description": "Collection of labelled data for one specific quantity. The data is labelled by specifying dimensions and including coordinates along the dimensions for each data value.",
"properties": {
"comments": {
"anyOf": [
{
"minLength": 1,
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"description": "Optional comments on the dataset, which should not be empty if the field is included.",
"title": "Comments"
},
"description": {
"anyOf": [
{
"minLength": 1,
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"description": "Optional description of the dataset, which should not be empty if the field is included.",
"title": "Description"
},
"dimensions": {
"anyOf": [
{
"items": {
"description": "Dimension along which dataset values are assigned.",
"enum": [
"minute",
"hour",
"day",
"month",
"year",
"start_date",
"end_date",
"start_datetime",
"end_datetime",
"wind_speed",
"wind_from_direction",
"wind_dataset_id",
"point_id",
"height",
"wind_farm_id",
"turbine_id",
"operational_dataset_id",
"variable_id"
],
"title": "Dataset Dimension",
"type": "string"
},
"minItems": 1,
"type": "array"
},
{
"type": "null"
}
],
"default": null,
"description": "Dimensions along which the dataset is binned. All statistics within the same dataset object must have the same dimensions. The dimensions must correspond to and be listed in the same order as the coordinates for the values of all statistics. A dataset without dimensions can only have a single value for each statistic.",
"examples": [
[
"turbine_id",
"year"
],
[
"wind_dataset_id",
"height"
]
],
"title": "Dimensions"
},
"label": {
"anyOf": [
{
"minLength": 1,
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"description": "Optional label of the dataset, which should not be empty if the field is included.",
"examples": [
"Seasonal distribution of net energy"
],
"title": "Label"
},
"statistics": {
"description": "List of dataset statistic objects that each include data values for a specific statistic type. For example, there may be two statistics, one for mean values and one for standard deviation values.",
"items": {
"additionalProperties": false,
"description": "Dataset values for one specific statistic type.",
"properties": {
"comments": {
"anyOf": [
{
"minLength": 1,
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"description": "Optional comments on the dataset statistic, which should not be empty if the field is included.",
"title": "Comments"
},
"description": {
"anyOf": [
{
"minLength": 1,
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"description": "Optional description of the dataset statistic, which should not be empty if the field is included.",
"title": "Description"
},
"statistic": {
"description": "Specification of the statistic that the element of the dataset corresponds to.",
"discriminator": {
"mapping": {
"exceedance_level": "#/$defs/ExceedanceLevelStatistic",
"inter_annual_variability": "#/$defs/InterAnnualVariabilityStatistic",
"maximum": "#/$defs/BasicStatistic",
"mean": "#/$defs/BasicStatistic",
"median": "#/$defs/BasicStatistic",
"minimum": "#/$defs/BasicStatistic",
"sample_count": "#/$defs/BasicStatistic",
"standard_deviation": "#/$defs/BasicStatistic",
"sum": "#/$defs/BasicStatistic"
},
"propertyName": "statistic_type"
},
"oneOf": [
{
"$ref": "#/$defs/BasicStatistic"
},
{
"$ref": "#/$defs/InterAnnualVariabilityStatistic"
},
{
"$ref": "#/$defs/ExceedanceLevelStatistic"
}
],
"title": "Statistic"
},
"values": {
"anyOf": [
{
"type": "number"
},
{
"items": {
"maxItems": 2,
"minItems": 2,
"prefixItems": [
{
"items": {
"anyOf": [
{
"type": "integer"
},
{
"type": "number"
},
{
"minLength": 1,
"type": "string"
}
]
},
"type": "array"
},
{
"type": "number"
}
],
"type": "array"
},
"minItems": 1,
"type": "array"
}
],
"description": "Dataset value(s) as a single number or one or more values at coordinates. If more than one value is included the values must be represented together with coordinates. A single value can be included either with or without coordinates. The coordinates must correspond to and be listed the same order as the dimensions specified for the dataset.",
"title": "Values"
}
},
"required": [
"statistic",
"values"
],
"title": "Dataset Statistic",
"type": "object"
},
"minItems": 1,
"title": "Statistics",
"type": "array"
}
},
"required": [
"statistics"
],
"title": "Dataset",
"type": "object"
},
"DerivedDatasetClassification": {
"additionalProperties": false,
"description": "Classification of a derived operational dataset.",
"properties": {
"data_source_type": {
"const": "secondary",
"default": "secondary",
"description": "The data source type, which for derived data is 'secondary'.",
"title": "Data Source Type",
"type": "string"
},
"data_type": {
"const": "derived",
"default": "derived",
"description": "The type of operational data, categorised as 'derived' for all derived operational datasets (e.g. operational reports or databases with aggregate data). Details of the data type shall be included in the description of the operational dataset, including the type of derived dataset (e.g. an operational report), who produced it (e.g. the turbine OEM) and any relevant details known about how the data were processed.",
"title": "Data Type",
"type": "string"
}
},
"title": "DerivedDatasetClassification",
"type": "object"
},
"ExceedanceLevelStatistic": {
"additionalProperties": false,
"description": "Specification of a probability of exceedance level statistic.",
"properties": {
"evaluation_period": {
"anyOf": [
{
"exclusiveMinimum": 0,
"type": "integer"
},
{
"exclusiveMinimum": 0,
"type": "number"
},
{
"type": "null"
}
],
"default": null,
"description": "Optional specification of the evaluation period in years, to be included when relevant to the context and statistic in question. This may for example define a 10-year evaluation period for the standard deviation of an uncertainty distribution or a certain probability of exceedance level.",
"examples": [
1.0,
10.0
],
"title": "Evaluation Period"
},
"probability": {
"description": "The dimensionless probability of exceedance level (i.e. probability value between 0.0 and 1.0) of the statistic.",
"examples": [
0.25,
0.75,
0.9,
0.99
],
"maximum": 1.0,
"minimum": 0.0,
"title": "Probability",
"type": "number"
},
"statistic_type": {
"const": "exceedance_level",
"default": "exceedance_level",
"description": "Specification of the type of statistic, using the standardised naming conventions. For an exceedance level statistic, the type must always be 'exceedance_level'.",
"title": "Statistic Type",
"type": "string"
}
},
"required": [
"probability"
],
"title": "ExceedanceLevelStatistic",
"type": "object"
},
"FirstPartyAssessmentComponentProvenance": {
"additionalProperties": false,
"description": "First party provenance of an EYA or WRA component. First party in this context means an organisation receiving and/or having commissioned the EYA report.",
"properties": {
"assessor_type": {
"default": "receiving_organisation",
"description": "Type of organisation that undertook the assessment of the EYA or WRA component, which must be one of the options 'issuing_organisation', 'receiving_organisation', 'commissioning_organisation' and 'other_organisation'. The value 'commissioning_organisation' should be used only when the commissioning organisation is not also a receiving organisation.",
"enum": [
"receiving_organisation",
"commissioning_organisation"
],
"title": "Assessor Type",
"type": "string"
},
"is_verified_by_issuing_organisation": {
"description": "Whether an assessment component provided by a receiving organisation, commissioning organisation or other organisation (e.g. independent third party) has been verified by the issuing organisation(s) of the EYA.",
"title": "Is Verified By Issuing Organisation",
"type": "boolean"
}
},
"required": [
"is_verified_by_issuing_organisation"
],
"title": "FirstPartyAssessmentComponentProvenance",
"type": "object"
},
"InterAnnualVariabilityStatistic": {
"additionalProperties": false,
"description": "Specification of an inter-annual variability statistic.",
"properties": {
"evaluation_period": {
"const": 1,
"default": 1,
"description": "Specification of the evaluation period in years, which for inter-annual variability must always be 1 (it is by definition the variability of a one-year period relative to the full time period).",
"title": "Evaluation Period",
"type": "integer"
},
"statistic_type": {
"const": "inter_annual_variability",
"default": "inter_annual_variability",
"description": "Specification of the type of statistic, using the standardised naming conventions. For a standard deviation statistic, the type must always be 'standard_deviation'.",
"title": "Statistic Type",
"type": "string"
}
},
"title": "InterAnnualVariabilityStatistic",
"type": "object"
},
"IssuingOrganisationAssessmentComponentProvenance": {
"additionalProperties": false,
"description": "Provenance of a component assessed by the issuing organisation.",
"properties": {
"assessor_type": {
"const": "issuing_organisation",
"default": "issuing_organisation",
"description": "Type of organisation that undertook the assessment of the EYA or WRA component, which must be one of the options 'issuing_organisation', 'receiving_organisation', 'commissioning_organisation' and 'other_organisation'. The value 'issuing_organisation' means that the component has been assessed by the organisation(s) having undertaken and issued the EYA.",
"title": "Assessor Type",
"type": "string"
}
},
"title": "IssuingOrganisationAssessmentComponentProvenance",
"type": "object"
},
"OperationalRestriction": {
"additionalProperties": false,
"description": "Specifications of a restriction that limits power output. In the current draft of the schema, 'label', 'description' and 'comments' fields are available to describe the restriction with free text. This is intended to be expanded into a more comprehensive data model.",
"properties": {
"comments": {
"anyOf": [
{
"minLength": 1,
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"description": "Optional comments on the operational restriction, which should not be empty if the field is included.",
"title": "Comments"
},
"description": {
"description": "Description of the operational restriction.",
"minLength": 1,
"title": "Description",
"type": "string"
},
"end_datetime": {
"anyOf": [
{
"format": "date-time",
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"description": "Optional operational restriction end datetime in the ISO 8601 standard format with the 'T' required between the calendar date and time, i.e. YYYY-MM-DDThh:mm:ss. In cases where the time is not relevant (i.e. only the date is relevant), hours, minutes and seconds shall all be set to zero. If using the time part, the timezone of the data must be consistent with the UTC offset specified for the EYA DEF document.",
"examples": [
"2024-12-24T23:15:00",
"2024-12-31T00:00:00"
],
"title": "End Datetime"
},
"label": {
"description": "Short label to indicate the type of operational restriction.",
"examples": [
"WSM curtailment",
"MEC curtailment"
],
"minLength": 1,
"title": "Label",
"type": "string"
},
"start_datetime": {
"anyOf": [
{
"format": "date-time",
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"description": "Optional operational restriction start datetime in the ISO 8601 standard format with the 'T' required between the calendar date and time, i.e. YYYY-MM-DDThh:mm:ss. In cases where the time is not relevant (i.e. only the date is relevant), hours, minutes and seconds shall all be set to zero. If using the time part, the timezone of the data must be consistent with the UTC offset specified for the EYA DEF document.",
"examples": [
"2023-11-24T05:02:00",
"2023-11-01T00:00:00"
],
"title": "Start Datetime"
}
},
"required": [
"label",
"description"
],
"title": "OperationalRestriction",
"type": "object"
},
"Organisation": {
"additionalProperties": false,
"description": "Basic metadata to describe an organisation. This model is for example used for issuing and receiving organisations of an energy yield assessment.",
"properties": {
"abbreviation": {
"anyOf": [
{
"minLength": 1,
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"description": "Abbreviated name of the organisation.",
"examples": [
"Torre Egger",
"Miranda"
],
"title": "Abbreviation"
},
"address": {
"anyOf": [
{
"minLength": 1,
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"description": "Address of the organisation.",
"examples": [
"5 Munro Road, Summit Centre, Sgurrsville, G12 0YE, UK"
],
"title": "Address"
},
"contact_name": {
"anyOf": [
{
"minLength": 1,
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"description": "Name(s) of contact person(s) in the organisation.",
"examples": [
"Luis Bunuel",
"Miles Davis, John Coltrane"
],
"title": "Contact Name"
},
"name": {
"description": "Entity name of the organisation.",
"examples": [
"The Torre Egger Consultants Limited",
"Miranda Investments Limited"
],
"minLength": 1,
"title": "Name",
"type": "string"
}
},
"required": [
"name"
],
"title": "Organisation",
"type": "object"
},
"OtherOrganisationAssessmentComponentProvenance": {
"additionalProperties": false,
"description": "Provenance of a component assessed by another organisation.",
"properties": {
"assessor_organisations": {
"description": "Specification of the other (third party) organisation(s) that undertook the assessment of the component.",
"items": {
"$ref": "#/$defs/Organisation"
},
"minItems": 1,
"title": "Assessor Organisations",
"type": "array"
},
"assessor_type": {
"const": "other_organisation",
"default": "other_organisation",
"description": "Type of organisation that undertook the assessment of the EYA or WRA component, which must be one of the options 'issuing_organisation', 'receiving_organisation', 'commissioning_organisation' and 'other_organisation'. The value 'other_organisation' should be used for independent third parties or any other organisation that has not issued, received or commissioned the EYA.",
"title": "Assessor Type",
"type": "string"
},
"is_verified_by_issuing_organisation": {
"description": "Whether an assessment component provided by a receiving organisation, commissioning organisation or other organisation (e.g. independent third party) has been verified by the issuing organisation(s) of the EYA.",
"title": "Is Verified By Issuing Organisation",
"type": "boolean"
}
},
"required": [
"assessor_organisations",
"is_verified_by_issuing_organisation"
],
"title": "OtherOrganisationAssessmentComponentProvenance",
"type": "object"
},
"PlantPerformanceResults": {
"additionalProperties": false,
"description": "Plant performance loss assessment results.",
"properties": {
"efficiency": {
"description": "Dimensionless plant performance efficiency (loss factor) results. The first standard dataset should have no binning dimension (i.e. correspond to the overall value for the wind farm(s) under assessment). Datasets with results binned by turbine should also be included where the efficiency is predicted at the turbine level, such as for the turbine interaction losses. Further results with other dimensions may also be included. All datasets should include the 'mean' and 'standard_deviation', statistics, where the former represents the central estimate and the latter the standard deviation of the associated uncertainty distribution. For the overall plant performance efficiency estimate at the wind farm level (i.e. the result dataset without binning), the statistic 'inter_annual_variability' must also be included. The inter-annual variability may optionally also be included for some or all of the other datasets.",
"items": {
"$ref": "#/$defs/Dataset"
},
"minItems": 1,
"title": "Efficiency",
"type": "array"
}
},
"required": [
"efficiency"
],
"title": "PlantPerformanceResults",
"type": "object"
},
"SingleSourceDatasetClassification": {
"additionalProperties": false,
"description": "Classification of an operational dataset from a single source.",
"properties": {
"data_source_type": {
"description": "The type of the operational data source. Primary data, such as primary SCADA data, comes directly from the source without any intermediary. Secondary data covers all other types of data sources, where the data does not come directly from the source, such as secondary SCADA data provided in harmonised form by a data management service provider.",
"enum": [
"primary",
"secondary"
],
"title": "Operational Data Source Type",
"type": "string"
},
"data_type": {
"description": "The type of operational data, categorised as 'scada' for data from a Supervisory Control and Data Acquisition (SCADA) system, 'metered' for data from a production meter and 'environmental_measurement' for data from an (on-site) environmental measurement station such as a meteorological mast or a remote sensing device (RSD).",
"enum": [
"scada",
"metered",
"environmental_measurement"
],
"title": "Data Type",
"type": "string"
}
},
"required": [
"data_type",
"data_source_type"
],
"title": "SingleSourceDatasetClassification",
"type": "object"
},
"TimeResolution": {
"additionalProperties": false,
"description": "Resolution of time series data.",
"properties": {
"unit": {
"description": "The measurement unit of time in which the time resolution is specified.",
"enum": [
"year",
"month",
"day",
"hour",
"minute",
"second"
],
"title": "Time Measurement Unit",
"type": "string"
},
"value": {
"description": "The value of the time resolution in the specified unit. For example, for 10-minute resolution, the value is '10.0' and the unit is 'minute'",
"examples": [
0.5,
1.0,
10.0
],
"title": "Value",
"type": "number"
}
},
"required": [
"value",
"unit"
],
"title": "TimeResolution",
"type": "object"
},
"TimeVariabilityType": {
"description": "Type of time variability considered for an assessment element.",
"enum": [
"static",
"variable"
],
"title": "TimeVariabilityType",
"type": "string"
},
"WindUncertaintyResults": {
"additionalProperties": false,
"description": "Wind uncertainty assessment results.",
"properties": {
"relative_energy_uncertainty": {
"anyOf": [
{
"items": {
"$ref": "#/$defs/Dataset"
},
"minItems": 1,
"type": "array"
},
{
"type": "null"
}
],
"default": null,
"description": "Uncertainty assessment results as dimensionless relative values expressed in terms of net annual energy production (AEP) and calculated as the standard deviation of the energy uncertainty distribution divided by the net P50 (50% probability of exceedance level) AEP. The first standard dataset should present results without binning (i.e. correspond to the overall value for the wind farm under assessment). Datasets with other binning dimensions may also be included optionally.",
"title": "Relative Energy Uncertainty"
},
"relative_wind_speed_uncertainty": {
"anyOf": [
{
"items": {
"$ref": "#/$defs/Dataset"
},
"minItems": 1,
"type": "array"
},
{
"type": "null"
}
],
"default": null,
"description": "Uncertainty assessment results as dimensionless relative values expressed in terms of wind speed and calculated as the standard deviation of the wind speed uncertainty distribution divided by the mean wind speed. The first standard dataset should present results without binning (i.e. correspond to the overall value for the wind farm under assessment). For wind uncertainty components related to a wind dataset (e.g. measurement uncertainty), a second standard dataset should present results with binning dimension 'wind_dataset_id'. Datasets with other binning dimensions may also be included optionally.",
"title": "Relative Wind Speed Uncertainty"
}
},
"title": "WindUncertaintyResults",
"type": "object"
}
},
"$id": "https://raw.githubusercontent.com/IEC-61400-15/eya_def/refs/heads/main/json_schema/iec_61400-15-2_eya_def.schema.json",
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$version": "0.0.1",
"additionalProperties": true,
"description": "IEC 61400-15-2 EYA DEF top-level data model.",
"properties": {
"$schema": {
"default": "https://raw.githubusercontent.com/IEC-61400-15/eya_def/refs/heads/main/json_schema/iec_61400-15-2_eya_def.schema.json",
"description": "URI of the EYA DEF JSON Schema, which should have the field name '$schema' in the JSON document. It is assumed to be the latest published version if not included.",
"examples": [
"https://raw.githubusercontent.com/IEC-61400-15/eya_def/refs/heads/main/json_schema/iec_61400-15-2_eya_def.schema.json"
],
"format": "uri",
"minLength": 1,
"title": "EYA DEF JSON Schema URI",
"type": "string"
},
"comments": {
"anyOf": [
{
"minLength": 1,
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"description": "Optional comments on the energy yield assessment (EYA) report, which should not be empty if the field is included.",
"examples": [
"Report labelled as draft. To be finalised following review by all parties."
],
"title": "Comments"
},
"commissioning_organisations": {
"anyOf": [
{
"items": {
"$ref": "#/$defs/Organisation"
},
"minItems": 1,
"type": "array"
},
{
"type": "null"
}
],
"default": null,
"description": "Optional specification of the organisation(s) having commissioned the report, if relevant. This is to be included only if not identical to the receiving organisation(s). Whenever receiving organisation(s) are specified and commissioning organisation(s) are not, is shall be assumed they are the same. As an example, the commissioning organisation could be a project developer and the receiving organisation a financing bank.",
"title": "Commissioning Organisations"
},
"confidentiality_classification": {
"anyOf": [
{
"minLength": 1,
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"description": "Optional confidentiality classification of the report document, if relevant. The field should not be empty if it is included.",
"examples": [
"Strictly confidential",
"Commercial in confidence",
"Public"
],
"title": "Confidentiality Classification"
},
"contract_reference": {
"anyOf": [
{
"minLength": 1,
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"description": "Optional reference to contract between the issuing and receiving organisations that governs the energy yield assessment (EYA) report document, if relevant. The field should not be empty if it is included.",
"examples": [
"Contract ID.: P-MIR-00239432-0001-C, dated 2022-11-30"
],
"title": "Contract Reference"
},
"contributors": {
"description": "List of report contributors (e.g. author and verifier)",
"items": {
"additionalProperties": false,
"description": "Contributor to an energy yield assessment.",
"properties": {
"completion_date": {
"anyOf": [
{
"format": "date",
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"description": "Optional contribution completion date (format YYYY-MM-DD).",
"examples": [
"2022-10-04"
],
"title": "Completion Date"
},
"contribution_comments": {
"anyOf": [
{
"minLength": 1,
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"description": "Optional comments to clarify contribution, which should not be empty if the field is included.",
"examples": [
"Second author"
],
"title": "Contribution Comments"
},
"contributor_type": {
"description": "Type of contributor.",
"enum": [
"author",
"verifier",
"approver",
"other"
],
"title": "Report Contributor Type",
"type": "string"
},
"email_address": {
"anyOf": [
{
"format": "email",
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"description": "Optional email address of the contributor, which should not be empty if the field is included.",
"examples": [
"j.miro@art.cat",
"andrei.tarkovsky@cinema.com"
],
"title": "Email Address"
},
"name": {
"description": "Name of the contributor.",
"examples": [
"Joan Miro",
"Andrei Tarkovsky"
],
"minLength": 1,
"title": "Name",
"type": "string"
}
},
"required": [
"name",
"contributor_type"
],
"title": "Report Contributor",
"type": "object"
},
"minItems": 1,
"title": "Contributors",
"type": "array"
},
"description": {
"anyOf": [
{
"minLength": 1,
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"description": "Optional description of the energy yield assessment (EYA) report, which should not be empty if the field is included.",
"examples": [
"An updated document to incorporate the latest measurement data."
],
"title": "Description"
},
"document_id": {
"anyOf": [
{
"minLength": 1,
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"description": "Optional ID of the report document; not including the version when 'document_version' is used. This will typically follow the convention of the document management system of the issuing organisation(s). The field should not be empty if it is included.",
"examples": [
"C385945/A/UK/R/002",
"0345.923454.0001"
],
"title": "Document ID"
},
"document_version": {
"anyOf": [
{
"minLength": 1,
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"description": "Optional version of the report document, also known as revision. As with the 'document_id', this will typically follow the document versioning convention of the document management system of the issuing organisation(s). The field should not be empty if it is included.",
"examples": [
"1.2.3",
"A",
"Rev. A"
],
"title": "Document Version"
},
"epsg_srid": {
"description": "EPSG Spatial Reference System Identifier (SRID) for the Coordinate Reference System (CRS) used for all spatial data (e.g. turbine locations) in the EYA DEF document. All location coordinates must be reported in this one CRS, which must have an EPSG code. If different CRSs are used, the data must be converted to be consistent with the EPSG code specified here.",
"examples": [
27700,
3006
],
"title": "Epsg Srid",
"type": "integer"
},
"issue_date": {
"description": "Report issue date in the ISO 8601 standard format for a calendar date, i.e. YYYY-MM-DD.",
"examples": [
"2022-10-05"
],
"format": "date",
"title": "Issue Date",
"type": "string"
},
"issuing_organisations": {
"description": "The organisation(s) issuing the report (e.g. consultant).",
"items": {
"$ref": "#/$defs/Organisation"
},
"minItems": 1,
"title": "Issuing Organisations",
"type": "array"
},
"measurement_stations": {
"anyOf": [
{
"items": {
"allOf": [
{
"$ref": "https://raw.githubusercontent.com/IEA-Task-43/digital_wra_data_standard/master/schema/iea43_wra_data_model.schema.json"
}
],
"description": "A wind dataset metadata document according to the IEA Wind Task 43 WRA Data Model JSON Schema.",
"examples": [