-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathschema.json
More file actions
2068 lines (2068 loc) · 71 KB
/
Copy pathschema.json
File metadata and controls
2068 lines (2068 loc) · 71 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
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://raw.githubusercontent.com/OpenEnergyPlatform/oemetadata/production/oemetadata/v2/v21/schema.json",
"description": "Open Energy Metadata (OEMetadata) - metadata schema",
"type": "object",
"required": [
"resources"
],
"properties": {
"@context": {
"description": "Explanation of metadata keys in ontology terms.",
"examples": [
"https://raw.githubusercontent.com/OpenEnergyPlatform/oemetadata/production/oemetadata/latest/context.json"
],
"type": [
"string",
"null"
],
"badge": "Platinum",
"title": "@context",
"readOnly": true
},
"@id": {
"description": "A unique identifier (UUID/DOI) for the collection.",
"type": [
"string",
"null"
],
"examples": [
"https://databus.openenergyplatform.org/oeplatform/supply/wri_global_power_plant_database/"
],
"badge": "Platinum",
"title": "Dataset Identifier",
"format": "uri",
"readOnly": true
},
"name": {
"description": "A filename or database conform dataset name.",
"type": [
"string",
"null"
],
"examples": [
"oep_oemetadata"
],
"badge": "Iron",
"title": "Dataset Name"
},
"title": {
"description": "A human readable dataset name.",
"type": [
"string",
"null"
],
"examples": [
"OEP OEMetadata Dataset"
],
"badge": "Bronze",
"title": "Dataset Title"
},
"description": {
"description": "A free text description of the dataset.",
"type": [
"string",
"null"
],
"examples": [
"A dataset for the OEMetadata examples."
],
"badge": "Bronze",
"title": "Dataset Description"
},
"extent": {
"description": "An object that describes a covered area or region of the dataset.",
"type": "object",
"properties": {
"name": {
"description": "The name of the spatial region of the dataset.",
"type": [
"string",
"null"
],
"examples": [
"Europe"
],
"badge": "Silver",
"title": "Dataset Extent Name"
},
"@id": {
"description": "A URI reference for the region of the dataset.",
"type": [
"string",
"null"
],
"examples": [
"https://www.wikidata.org/wiki/Q458"
],
"format": "uri",
"badge": "Platinum",
"title": "Dataset Extent Identifier"
}
}
},
"referenceDate": {
"description": "A base year, month or day. The time for which the dataset should be accurate. Date Format is ISO 8601.",
"type": [
"string",
"null"
],
"examples": [
"2020-01-01"
],
"badge": "Silver",
"title": "Dataset Reference Date",
"format": "date"
},
"languages": {
"description": "An array of languages used within the described data structures (e.g. titles, descriptions) or metadata.",
"type": "array",
"items": {
"description": "The language keys must follow the Standard IETF (BCP47) and can be repeated if more languages are used.",
"type": [
"string",
"null"
],
"examples": [
"en-GB",
"de-DE"
],
"badge": "Gold",
"title": "Language"
},
"badge": "Gold",
"title": "Languages"
},
"version": {
"description": "A version string identifying the version of the package.",
"type": [
"string",
"null"
],
"examples": [
"0.1.0"
],
"badge": "Silver",
"title": "Dataset Version"
},
"image": {
"description": "An image to use for this data package",
"type": [
"string",
"null"
],
"examples": [
"https://openenergyplatform.org/static/img/about/OpenEnergyFamily_GroupPhoto2.png"
],
"badge": "Gold",
"title": "Image"
},
"subject": {
"description": "An array of objects that references to the subjects of the resource in ontology terms.",
"type": "array",
"items": {
"type": "object",
"properties": {
"name": {
"description": "A class label of the ontology term.",
"type": [
"string",
"null"
],
"examples": [
"energy"
],
"badge": "Platinum",
"title": "Subject Name"
},
"@id": {
"description": "A unique identifier (URI/IRI) of the ontology class.",
"type": [
"string",
"null"
],
"examples": [
"https://openenergyplatform.org/ontology/oeo/OEO_00000150"
],
"badge": "Platinum",
"title": "Subject Identifier",
"format": "uri"
}
},
"badge": "Platinum",
"title": "Subject"
},
"badge": "Platinum",
"title": "Subject"
},
"keywords": {
"description": "An array of freely selectable keywords that help with searching and structuring.",
"type": "array",
"items": {
"description": "The keyword are used and managed in the OEP as table tags.",
"type": [
"string",
"null"
],
"examples": [
"example",
"ODbL-1.0",
"NFDI4Energy"
],
"badge": "Silver",
"title": "Keyword"
},
"badge": "Silver",
"title": "Keywords"
},
"projectContext": {
"description": "An Object that describes the general setting, environment or project leading to the creation or maintenance of this dataset. In science this can be the research project.",
"type": "object",
"properties": {
"title": {
"description": "A title of the associated project.",
"type": [
"string",
"null"
],
"examples": [
"NFDI4Energy"
],
"badge": "Gold",
"title": "Context Title"
},
"homepage": {
"description": "A URL of the project.",
"type": [
"string",
"null"
],
"examples": [
"https://nfdi4energy.uol.de/"
],
"badge": "Gold",
"title": "Homepage",
"format": "uri"
},
"documentation": {
"description": "A URL of the project documentation.",
"type": [
"string",
"null"
],
"examples": [
"https://nfdi4energy.uol.de/sites/about_us/"
],
"badge": "Gold",
"title": "Documentation"
},
"sourceCode": {
"description": "A URL of the source code of the project.",
"type": [
"string",
"null"
],
"examples": [
"https://github.com/NFDI4Energy"
],
"badge": "Gold",
"title": "Source Code"
},
"publisher": {
"description": "The publishing agency of the data. This can be the OEP.",
"type": [
"string",
"null"
],
"examples": [
"Open Energy Platform (OEP)"
],
"badge": "Bronze",
"title": "Publisher"
},
"publisherLogo": {
"description": "A URL to the logo of the publishing agency of data.",
"type": [
"string",
"null"
],
"examples": [
"https://github.com/OpenEnergyPlatform/organisation/blob/production/logo/OpenEnergyFamily_Logo_OpenEnergyPlatform.svg"
],
"badge": "Gold",
"title": "Publisher Logo",
"format": "uri"
},
"contact": {
"description": "A reference to the creator or maintainer of the data set. This can be an email address or a GitHub handle.",
"type": [
"string",
"null"
],
"examples": [
"contact@example.com"
],
"badge": "Gold",
"title": "E-Mail Contact",
"format": "email"
},
"fundingAgency": {
"description": "A name of the entity providing the funding. This can be a government agency or a company.",
"type": [
"string",
"null"
],
"examples": [
" Deutsche Forschungsgemeinschaft (DFG)"
],
"badge": "Gold",
"title": "Funding Agency"
},
"fundingAgencyLogo": {
"description": "A URL to the logo or image of the funding agency.",
"type": [
"string",
"null"
],
"examples": [
"https://upload.wikimedia.org/wikipedia/commons/8/86/DFG-logo-blau.svg"
],
"badge": "Gold",
"title": "Funding Agency Logo",
"format": "uri"
},
"grantNo": {
"description": "An identifying grant number. In case of a publicly funded project, this number is assigned by the funding agency.",
"type": [
"string",
"null"
],
"examples": [
"501865131"
],
"badge": "Gold",
"title": "Grant Number"
}
},
"badge": "Gold",
"title": "Context"
},
"contributors": {
"description": "An array of objects of contributors and contributions to the data or metadata.",
"type": "array",
"items": {
"type": "object",
"properties": {
"title": {
"description": "A full name of the contributor.",
"type": [
"string",
"null"
],
"examples": [
"Ludwig Hülk"
],
"badge": "Bronze",
"title": "Contributor Title"
},
"path": {
"description": "A qualified link or path pointing to a relevant location online for the contributor. This can be the GitHub page or ORCID.",
"type": [
"string",
"null"
],
"examples": [
"https://github.com/Ludee"
],
"badge": "Bronze",
"title": "Path"
},
"organization": {
"description": "A string describing the organization this contributor is affiliated to. This can be relevant for the copyright.",
"type": [
"string",
"null"
],
"examples": [
"Reiner Lemoine Institut"
],
"badge": "Bronze",
"title": "Organization"
},
"roles": {
"description": "An array describing the roles of the contributor.",
"type": "array",
"items": {
"description": "A role is recommended to follow an established vocabulary: DataCite Metadata Schema’s contributorRole. Useful roles to indicate are: DataCollector, ContactPerson, and DataCurator.",
"type": [
"string",
"null"
],
"examples": [
"DataCollector",
"DataCurator"
],
"badge": "Bronze",
"title": "Role"
},
"badge": "Bronze",
"title": "Roles"
},
"date": {
"description": "The date of the contribution. Date Format is ISO 8601.",
"type": [
"string",
"null"
],
"examples": [
"2024-10-21"
],
"badge": "Bronze",
"title": "Date",
"format": "date"
},
"object": {
"description": "The object of the contribution. Which part of the package was supplied or changed.",
"type": [
"string",
"null"
],
"examples": [
"dataset, data, metadata"
],
"badge": "Bronze",
"title": "Object"
},
"comment": {
"description": "A free-text commentary on what has been done.",
"type": [
"string",
"null"
],
"examples": [
"Add metadata example."
],
"badge": "Bronze",
"title": "Comment"
}
},
"required": [
"title"
],
"badge": "Bronze",
"title": "Contributor"
}
},
"moduleEnergySystems": {
"description": "An Object that describes the main concepts of an energy system.",
"type": "object",
"properties": {
"supplyTechnologies": {
"description": "A supply technology describes how specific technical components and processes are combined to generate or provide energy.",
"type": "array",
"items": {
"type": "object",
"properties": {
"name": {
"description": "A class label of the ontology term.",
"type": [
"string",
"null"
],
"examples": [
"energy transformation"
],
"badge": "Module",
"title": "Supply Technologies Subject Name"
},
"@id": {
"description": "A unique identifier (URI/IRI) of the ontology class.",
"type": [
"string",
"null"
],
"examples": [
"https://openenergyplatform.org/ontology/oeo/OEO_00020003"
],
"badge": "Module",
"title": "Supply Technologies Subject Identifier",
"format": "uri"
}
},
"badge": "Module",
"title": "Supply Technologies Subject"
},
"badge": "Module",
"title": "Supply Technologies"
},
"storageTechnologies": {
"description": "An energy storage technology describes how energy storage components and energy carriers are combined to charge, store, and discharge energy for temporary use.",
"type": "array",
"items": {
"type": "object",
"properties": {
"name": {
"description": "A class label of the ontology term.",
"type": [
"string",
"null"
],
"examples": [
"energy storage technology"
],
"badge": "Module",
"title": "Storage Technologies Subject Name"
},
"@id": {
"description": "A unique identifier (URI/IRI) of the ontology class.",
"type": [
"string",
"null"
],
"examples": [
"https://openenergyplatform.org/ontology/oeo/OEO_00020366"
],
"badge": "Module",
"title": "Storage Technologies Subject Identifier",
"format": "uri"
}
},
"badge": "Module",
"title": "Storage Technologies Subject"
},
"badge": "Module",
"title": "Storage Technologies"
},
"supplyGrid": {
"description": "A supply grid is a system of interconnected technical components that together enable the distribution and delivery of energy.",
"type": "array",
"items": {
"type": "object",
"properties": {
"name": {
"description": "A class label of the ontology term.",
"type": [
"string",
"null"
],
"examples": [
"supply grid"
],
"badge": "Module",
"title": "Supply Grid Subject Name"
},
"@id": {
"description": "A unique identifier (URI/IRI) of the ontology class.",
"type": [
"string",
"null"
],
"examples": [
"https://openenergyplatform.org/ontology/oeo/OEO_00000200"
],
"badge": "Module",
"title": "Supply Grid Subject Identifier",
"format": "uri"
}
},
"badge": "Module",
"title": "Supply Grid Subject"
},
"badge": "Module",
"title": "Supply Grid"
},
"finalEnergyCarrier": {
"description": "A final energy carrier is an energy carrier that is delivered to and directly used by end users without further transformation.",
"type": "array",
"items": {
"type": "object",
"properties": {
"name": {
"description": "A class label of the ontology term.",
"type": [
"string",
"null"
],
"examples": [
"final energy carrier"
],
"badge": "Module",
"title": "Final Energy Carrier Subject Name"
},
"@id": {
"description": "A unique identifier (URI/IRI) of the ontology class.",
"type": [
"string",
"null"
],
"examples": [
"https://openenergyplatform.org/ontology/oeo/OEO_00140080"
],
"badge": "Module",
"title": "Final Energy Carrier Subject Identifier",
"format": "uri"
}
},
"badge": "Module",
"title": "Final Energy Carrier Subject"
},
"badge": "Module",
"title": "Final Energy Carrier"
},
"demandSectors": {
"description": "An energy demand sector is a sector of the energy system that groups together energy consumers with similar usage characteristics.",
"type": "array",
"items": {
"type": "object",
"properties": {
"name": {
"description": "A class label of the ontology term.",
"type": [
"string",
"null"
],
"examples": [
"energy demand sector"
],
"badge": "Module",
"title": "Demand Sectors Subject Name"
},
"@id": {
"description": "A unique identifier (URI/IRI) of the ontology class.",
"type": [
"string",
"null"
],
"examples": [
"https://openenergyplatform.org/ontology/oeo/OEO_00000128"
],
"badge": "Module",
"title": "Demand Sectors Subject Identifier",
"format": "uri"
}
},
"badge": "Module",
"title": "Demand Sectors Subject"
},
"badge": "Module",
"title": "Demand Sectors"
},
"moduleDescription": {
"description": "A description of the module. It should be usable as summary information for the module that is described by the metadata.",
"type": [
"string",
"null"
],
"examples": [
"Example module for an energy system dataset"
],
"badge": "Module",
"title": "Energy Systems Module Description"
}
},
"badge": "Module",
"title": "Energy Systems Module"
},
"moduleMeasurementData": {
"description": "An Object that describes the instruments used in the measurement.",
"type": "array",
"items": {
"type": "object",
"properties": {
"instrumentIdentifier": {
"description": "Unique string that identifies the instrument instance.",
"type": [
"string",
"null"
],
"examples": [
"http://hdl.handle.net/21.11157/a9250866-bbec-4542-86b3-a5f78c0c6922"
],
"badge": "Module",
"title": "Instrument Identifier"
},
"instrumentPath": {
"description": "A landing page that the identifier resolves to.",
"type": [
"string",
"null"
],
"examples": [
"https://sms.atmohub.kit.edu/devices/961"
],
"badge": "Module",
"title": "Instrument Path",
"format": "uri"
},
"instrumentName": {
"description": "Name by which the instrument instance is known.",
"type": [
"string",
"null"
],
"examples": [
"MFC_001000_02 - Merck KGaA - FC-2926V - DH9806004"
],
"badge": "Module",
"title": "Instrument Name"
},
"instrumentOwner": {
"description": "Institution(s) responsible for the management of the instrument. This may include the legal owner, the operator, or an institute providing access to the instrument.",
"type": [
"string",
"null"
],
"examples": [
"Karlsruhe Institute of Technology (KIT)"
],
"badge": "Module",
"title": "Instrument Owner"
},
"manufacturerName": {
"description": "Full name of the manufacturer.",
"type": [
"string",
"null"
],
"examples": [
"Merck KGaA"
],
"badge": "Module",
"title": "Manufacturer Name"
},
"moduleDescription": {
"description": "A description of the module. It should be usable as summary information for the module that is described by the metadata.",
"type": "string",
"examples": [
"Example instrument of PIDINST schema."
],
"badge": "Module",
"title": "Module Description"
}
},
"badge": "Module",
"title": "Instrument"
},
"badge": "Module",
"title": "Measurement Data Module"
},
"datasetLicenses": {
"description": "An array of objects of licenses under which the described data is provided.",
"type": "array",
"items": {
"type": "object",
"properties": {
"name": {
"description": "The SPDX identifier.",
"type": [
"string",
"null"
],
"examples": [
"ODbL-1.0"
],
"badge": "Bronze",
"title": "Name"
},
"title": {
"description": "The official (human readable) title of the license.",
"type": [
"string",
"null"
],
"examples": [
"Open Data Commons Open Database License 1.0"
],
"badge": "Bronze",
"title": "Title"
},
"path": {
"description": "A link or path to the license text.",
"type": [
"string",
"null"
],
"examples": [
"https://opendatacommons.org/licenses/odbl/1-0/index.html"
],
"badge": "Bronze",
"title": "Path",
"format": "uri"
},
"instruction": {
"description": "A short description of rights and obligations. The use of tl;drLegal is recommended.",
"type": [
"string",
"null"
],
"examples": [
"You are free to share and change, but you must attribute, and share derivations under the same license. See https://tldrlegal.com/license/odc-open-database-license-(odbl) for further information."
],
"badge": "Bronze",
"title": "Instruction"
},
"attribution": {
"description": "A copyright holder of the data. Must be provided if attribution licenses are used.",
"type": [
"string",
"null"
],
"examples": [
"© Reiner Lemoine Institut"
],
"badge": "Bronze",
"title": "Attribution"
},
"copyrightStatement": {
"description": "A link or path that proves that the source or data has the appropriate license. This can be a page number or website imprint.",
"type": [
"string",
"null"
],
"examples": [
"https://github.com/OpenEnergyPlatform/oemetadata/blob/production/LICENSE.txt"
],
"badge": "Bronze",
"title": "Copyright Statement"
}
},
"badge": "Bronze",
"title": "Dataset License"
},
"badge": "Bronze",
"title": "Dataset Licenses"
},
"review": {
"description": "The metadata on the OEP can go through an open peer review process. See the Academy course [Open Peer Review](https://openenergyplatform.github.io/academy/courses/09_peer_review/) for further information.",
"type": "object",
"properties": {
"path": {
"description": "A link or path to the documented open peer review.",
"type": [
"string",
"null"
],
"examples": [
"https://openenergyplatform.org/database/"
],
"badge": null,
"title": "Path",
"format": "uri"
},
"badge": {
"description": "A badge of either Iron, Bronze, Silver, Gold or Platinum is used to label the quality of the metadata.",
"type": [
"string",
"null"
],
"examples": [
"Platinum"
],
"badge": null,
"title": "Badge"
}
},
"title": "Review",
"options": {
"hidden": true
}
},
"resources": {
"description": "A collection of related resources.",
"type": "array",
"items": {
"type": "object",
"properties": {
"@id": {
"description": "A Uniform Resource Identifier (URI) that links the resource via the OpenEnergyDatabus (DBpedia Databus).",
"type": [
"string",
"null"
],
"examples": [
"https://databus.openenergyplatform.org/oeplatform/supply/wri_global_power_plant_database/2022-11-07/wri_global_power_plant_database_variant=data.csv"
],
"badge": "Platinum",
"title": "@Id",
"readOnly": true
},
"path": {
"description": "A unique identifier (URI/UUID/DOI) for the table or file.",
"type": [
"string",
"null"
],
"examples": [
"example.csv"
],
"badge": "Bronze",
"title": "Path",
"readOnly": true
},
"name": {
"description": "A filename or database conform table name.",
"type": [
"string",
"null"
],
"examples": [
"oemetadata_table_example"
],
"badge": "Iron",
"title": "Name"
},
"title": {
"description": "A human readable resource or table name.",
"type": [
"string",
"null"
],
"examples": [
"OEMetadata Table Example"
],
"badge": "Silver",
"title": "Title"
},
"description": {
"description": "A description of the table. It should be usable as summary information for the table that is described by the metadata.",
"type": [
"string",
"null"
],
"examples": [
"Example metadata and table used to illustrate the OEMetadata structure and features."
],
"badge": "Silver",
"title": "Description"
},
"publicationDate": {
"description": "A date of publication of the data or metadata. The date format is ISO 8601 (YYYY-MM-DD).",
"type": [
"string",
"null"
],
"examples": [
"2024-10-15"
],
"badge": "Bronze",
"title": "Publication Date",
"format": "date"
},
"topics": {
"description": "An array of predefined topics that correspond to the database schemas of the OEP.",
"type": "array",
"items": {
"description": "The topics are used to group the data in the database.",
"type": [
"string",
"null"
],
"examples": [
"model_draft"
],
"badge": "Bronze",
"title": "Topic"
},
"badge": "Bronze",
"title": "Topics"
},
"subject": {
"description": "An array of objects that references to the subjects of the resource in ontology terms.",
"type": "array",
"items": {
"type": "object",
"properties": {
"name": {
"description": "A class label of the ontology term.",
"type": [
"string",
"null"
],
"examples": [
"energy"
],
"badge": "Platinum",
"title": "Subject Name"
},
"@id": {
"description": "A unique identifier (URI/IRI) of the ontology class.",
"type": [
"string",
"null"
],
"examples": [
"https://openenergyplatform.org/ontology/oeo/OEO_00000150"
],
"badge": "Platinum",
"title": "Subject Identifier",
"format": "uri"
}
},