-
Notifications
You must be signed in to change notification settings - Fork 26
/
dcschema_enum_instances.mcf
3147 lines (2485 loc) · 96.3 KB
/
dcschema_enum_instances.mcf
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
Node: dcid:CensusACS5yrSurveySubjectTable
typeOf: dcs:CensusSurveyEnum
name: "CensusACS5yrSurveySubjectTable"
description: "American Community Survey 5 year estimates from Subject Tables"
Node: dcid:CensusACS5yrSurvey
typeOf: dcs:CensusSurveyEnum
name: "CensusACS5yrSurvey"
description: "American Community Survey 5 year estimates"
Node: dcid:CensusACS1yrSurvey
typeOf: dcs:CensusSurveyEnum
name: "CensusACS1yrSurvey"
description: "American Community Survey 1 year estimates"
Node: dcid:USDecennialCensus
typeOf: dcs:CensusSurveyEnum
name: "USDecennialCensus"
description: "Survey legally mandated by the US constitution that takes place every 10 years"
Node: dcid:Difference
typeOf: dcs:BinaryOperatorEnum
name: "Difference"
description: "Represents the first input minus the second input"
Node: dcid:DifferenceRelativeToBaseDate
typeOf: dcs:BinaryOperatorEnum
name: "DifferenceRelativeToBaseDate"
description: "Represents the difference relative to the observation value of a base date"
Node: dcid:DifferenceAcrossModels
typeOf: dcs:BinaryOperatorEnum
name: "DifferenceAcrossModels"
description: "Represents the difference of observation values across different models"
Node: dcid:DifferenceRelativeToObservedData
name: "DifferenceRelativeToObservedData"
typeOf: dcs:BinaryOperatorEnum
description: "Represents the difference relative to the value from an observation from satellites, ground-based monitoring stations, etc."
Node: dcid:Ratio
typeOf: dcs:BinaryOperatorEnum
name: "Ratio"
description: "Represents the ratio between the first input and the second input"
Node: dcid:Percentage
typeOf: dcs:BinaryOperatorEnum
name: "Percentage"
description: "The percentage of the first input where the whole is the second input"
Node: Percentile1
dcid: "Percentile1"
typeOf: dcs:PercentileEnum
description: "1st percentile value"
name: "Percentile1"
Node: Percentile10
dcid: "Percentile10"
description: "10th percentile value"
name: "Percentile10"
typeOf: dcs:PercentileEnum
Node: Percentile25
dcid: "Percentile25"
name: "Percentile25"
typeOf: dcs:PercentileEnum
description: "25th percentile value"
Node: Percentile50
dcid: "Percentile50"
name: "Percentile50"
typeOf: dcs:PercentileEnum
description: "50th percentile value"
Node: Percentile75
dcid: "Percentile75"
name: "Percentile75"
typeOf: dcs:PercentileEnum
description: "75th percentile value"
Node: Percentile100
dcid: "Percentile100"
typeOf: dcs:PercentileEnum
name: "Percentile100"
description: "100th percentile value"
Node: Windy
dcid: "Windy"
name: "Windy"
typeOf: dcs:NOAA_WeatherConditionEnum
Node: Thunder
dcid: "Thunder"
typeOf: dcs:NOAA_WeatherConditionEnum
name: "Thunder"
Node: Fog
dcid: "Fog"
name: "Fog"
typeOf: dcs:NOAA_WeatherConditionEnum
Node: Rain
dcid: "Rain"
name: "Rain"
typeOf: dcs:NOAA_WeatherConditionEnum
Node: Hail
dcid: "Hail"
typeOf: dcs:NOAA_WeatherConditionEnum
name: "Hail"
Node: Snow
dcid: "Snow"
typeOf: dcs:NOAA_WeatherConditionEnum
name: "Snow"
Node: Tornado
dcid: "Tornado"
typeOf: dcs:NOAA_WeatherConditionEnum
name: "Tornado"
Node: IPEDS_75000To110000
dcid: "IPEDS_75000To110000"
name: "IPEDS_75000To110000"
typeOf: dcs:FamilyIncomeEnum
Node: IPEDS_48000To75000
dcid: "IPEDS_48000To75000"
name: "IPEDS_48000To75000"
typeOf: dcs:FamilyIncomeEnum
Node: IPEDS_110000AndAbove
dcid: "IPEDS_110000AndAbove"
name: "IPEDS_110000AndAbove"
typeOf: dcs:FamilyIncomeEnum
description: "Family income brackets for statistics provided by IPEDS."
Node: IPEDS_30000To48000
dcid: "IPEDS_30000To48000"
typeOf: dcs:FamilyIncomeEnum
name: "IPEDS_30000To48000"
Node: IPEDS_0To30000
dcid: "IPEDS_0To30000"
name: "IPEDS_0To30000"
typeOf: dcs:FamilyIncomeEnum
Node: OI_RaceOther
dcid: "OI_RaceOther"
name: "OI_RaceOther"
description: "Category of race or ethnicity group used by Opportunity Insights that combines non-enumerated categories."
typeOf: dcs:OI_RaceCodeEnum
###---- begin BEA enum instances ----###
Node: dcid:ConsumerGoodsAndServices
name: "Consumer Goods and Services"
typeOf: dcs:EconomicProductEnum
description: "Consumer goods are usually tangible final commodities purchased by the average consumer. Consumer services are intangible activities that are typically produced by other people and consumed by the consumer simultaneously."
descriptionUrl: "https://en.wikipedia.org/wiki/Goods_and_services"
Node: dcid:BEAServicesRents
name: "Housing Rental Prices"
description: "Indicates Housing Rental Prices to determine Consumer Price Index (CPI) by US Bureau of Economic Analysis."
typeOf: dcs:EconomicProductEnum
dcid: "BEAServicesRents"
Node: dcid:BEAServicesOthers
name: "Services other than Rentals"
description: "Indicates Services Others than Rentals to determine Consumer Price Index (CPI) by US Bureau of Economic Analysis."
typeOf: dcs:EconomicProductEnum
dcid: "BEAServicesOthers"
Node: dcid:BEAAllItems
name: "All Items"
description: "Indicates the entire bucket of goods and services used to determine Consumer Price Index (CPI) by US Bureau of Economic Analysis."
typeOf: dcs:EconomicProductEnum
dcid: "BEAAllItems"
Node: dcid:BEAGoods
name: "List of Goods"
description: "Indicates the list of Goods to determine Consumer Price Index (CPI) by US Bureau of Economic Analysis."
typeOf: dcs:EconomicProductEnum
dcid: "BEAGoods"
Node: dcid:InflationAdjustmentEnum
typeOf: schema:Enumeration
name: "InflationAdjustmentEnum"
description: "Enumerations that enable comparison of quantities in real terms as if prices had not changed OR in nominal terms where there value has not been adjusted for inflation"
Node: dcid:InflationAdjusted
typeOf: dcs:InflationAdjustmentEnum
name: "InflationAdjusted"
description: "Indicates adjustment of a time series data to eliminate the effect Inflation or price changes over a period"
Node: dcid:InflationUnadjusted
typeOf: dcs:InflationAdjustmentEnum
name: "InflationUnAdjusted"
description: "Indicates raw time series data or nominal data without adjustments to eliminate the effect of inflation or price changes"
Node: dcid:BEASurvey
typeOf: dcs:CensusSurveyEnum
name: "BEASurvey"
description: "Methodology used by the Bureau of Economic Analysis (BEA) to produce its annual Gross domestic product (GDP)"
###---- begin FEC enum instances ----###
Node: dcid:CandidateStatusIncumbent
name: "Incumbent"
typeOf: dcs:CandidateICOStatusEnum
Node: dcid:CandidateStatusChallenger
name: "Challenger"
typeOf: dcs:CandidateICOStatusEnum
Node: dcid:CandidateStatusOpenSeat
name: "OpenSeat"
typeOf: dcs:CandidateICOStatusEnum
Node: dcid:FEC_CmteDesignationPrincipal
name: "PrincipalCampaignCommitteeOfCandidate"
typeOf: dcs:PoliticalCampaignCmteDesignationEnum
description: "FEC Committee Designation Types as defined in https://www.fec.gov/campaign-finance-data/candidate-committee-linkage-file-description/"
Node: dcid:FEC_CmteDesignationAuthorized
name: "AuthorizedByCandidate"
typeOf: dcs:PoliticalCampaignCmteDesignationEnum
description: "FEC Committee Designation Types as defined in https://www.fec.gov/campaign-finance-data/candidate-committee-linkage-file-description/"
Node: dcid:FEC_CmteDesignationLobbyistOrRegistrantPAC
name: "Lobbyist/RegistrantPAC"
typeOf: dcs:PoliticalCampaignCmteDesignationEnum
description: "FEC Committee Designation Types as defined in https://www.fec.gov/campaign-finance-data/candidate-committee-linkage-file-description/"
Node: dcid:FEC_CmteDesignationLeadershipPAC
name: "LeadershipPAC"
typeOf: dcs:PoliticalCampaignCmteDesignationEnum
description: "FEC Committee Designation Types as defined in https://www.fec.gov/campaign-finance-data/candidate-committee-linkage-file-description/"
Node: dcid:FEC_CmteDesignationJoint
name: "JointFundraiser"
typeOf: dcs:PoliticalCampaignCmteDesignationEnum
description: "FEC Committee Designation Types as defined in https://www.fec.gov/campaign-finance-data/candidate-committee-linkage-file-description/"
Node: dcid:FEC_CmteDesignationUnauthorized
name: "Unauthorized"
typeOf: dcs:PoliticalCampaignCmteDesignationEnum
description: "FEC Committee Designation Types as defined in https://www.fec.gov/campaign-finance-data/candidate-committee-linkage-file-description/"
Node: dcid:FEC_CmteTypeHouse
name: "House"
typeOf: dcs:PoliticalCampaignCmteTypeEnum
description: "Campaign committee for candidates for the U.S. House of Representatives - https://www.fec.gov/campaign-finance-data/committee-type-code-descriptions/"
Node: dcid:FEC_CmteTypeSenate
name: "Senate"
typeOf: dcs:PoliticalCampaignCmteTypeEnum
description: "Campaign committee for candidate for Senate - https://www.fec.gov/campaign-finance-data/committee-type-code-descriptions/"
Node: dcid:FEC_CmteTypePresidential
name: "Presidential"
typeOf: dcs:PoliticalCampaignCmteTypeEnum
description: "Campaign committee for candidate for U.S. President - https://www.fec.gov/campaign-finance-data/committee-type-code-descriptions/"
Node: dcid:FEC_CmteTypeCommunicationCost
name: "CommunicationCost"
typeOf: dcs:PoliticalCampaignCmteTypeEnum
description: "Organizations like corporations or unions may prepare communications for their employees or members that advocate the election of specific candidates and they must disclose them under certain circumstances. These are usually paid with direct corporate or union funds rather than from PACs - https://www.fec.gov/campaign-finance-data/committee-type-code-descriptions/"
Node: dcid:FEC_CmteTypeDelegateCommittee
name: "DelegateCommittee"
typeOf: dcs:PoliticalCampaignCmteTypeEnum
description: "Delegate committees are organized for the purpose of influencing the selection of delegates to Presidential nominating conventions. The term includes a group of delegates, a group of individuals seeking to become delegates, and a group of individuals supporting delegates - https://www.fec.gov/campaign-finance-data/committee-type-code-descriptions/"
Node: dcid:FEC_CmteTypeElectioneeringCommunication
name: "ElectioneeringCommunication"
typeOf: dcs:PoliticalCampaignCmteTypeEnum
description: "Groups (other than PACs) making electioneering communications - https://www.fec.gov/campaign-finance-data/committee-type-code-descriptions/"
Node: dcid:FEC_CmteTypeIndependentExpenditorPersonOrGroup
name: "IndependentExpenditorPersonOrGroup"
typeOf: dcs:PoliticalCampaignCmteTypeEnum
description: "Individuals or groups (other than PACs) making independent expenditures over $250 in a year must disclose those expenditures - https://www.fec.gov/campaign-finance-data/committee-type-code-descriptions/"
Node: dcid:FEC_CmteTypeIndependentExpenditureOnlySuperPACs
name: "IndependentExpenditureOnlySuperPACs"
typeOf: dcs:PoliticalCampaignCmteTypeEnum
description: "Political Committee that has filed a statement consistent with AO 2010-09 or AO 2010-11 - https://www.fec.gov/campaign-finance-data/committee-type-code-descriptions/"
Node: dcid:FEC_CmteTypeSingleCandidateIndependentExpenditure
name: "SingleCandidateIndependentExpenditure"
typeOf: dcs:PoliticalCampaignCmteTypeEnum
description: "Enumerated in https://www.fec.gov/campaign-finance-data/committee-type-code-descriptions/ but without a description"
Node: dcid:FEC_CmteTypeNationalPartyNonfederalAccount
name: "NationalPartyNonfederalAccount"
typeOf: dcs:PoliticalCampaignCmteTypeEnum
description: "National party nonfederal accounts. Not permitted after enactment of Bipartisan Campaign Reform Act of 2002 - https://www.fec.gov/campaign-finance-data/committee-type-code-descriptions/"
Node: dcid:FEC_CmteTypePAC
name: "PAC"
typeOf: dcs:PoliticalCampaignCmteTypeEnum
description: "Political Action Committee - https://www.fec.gov/campaign-finance-data/committee-type-code-descriptions/"
Node: dcid:FEC_CmteTypePACWithNonContributionAccount
name: "PACWithNonContributionAccount"
typeOf: dcs:PoliticalCampaignCmteTypeEnum
description: "Link to description: https://www.fec.gov/help-candidates-and-committees/registering-pac/bank-accounts-nonconnected-pacs/"
Node: dcid:FEC_CmteTypeParty
name: "Party"
typeOf: dcs:PoliticalCampaignCmteTypeEnum
description: "Party committees. May be affiliated with another party committee - https://www.fec.gov/campaign-finance-data/committee-type-code-descriptions/"
# Begin general education enums
Node: USInState
dcid: "USInState"
typeOf: dcs:StudentTypeEnum
name: "USInState"
Node: USOutOfState
dcid: "USOutOfState"
typeOf: dcs:StudentTypeEnum
description: "Students who are not from the state of their College or University"
name: "USOutOfState"
Node: Graduate
dcid: "Graduate"
name: "Graduate"
typeOf: dcs:EnrollmentLevelEnum
Node: PostGraduate
dcid: "PostGraduate"
description: "Educational enrollment level."
typeOf: dcs:EnrollmentLevelEnum
name: "PostGraduate"
Node: UnderGraduate
dcid: "UnderGraduate"
name: "UnderGraduate"
typeOf: dcs:EnrollmentLevelEnum
Node: dcid:PrePrimaryEducation
name: "PrePrimaryEducation"
typeOf: dcid:EnrollmentLevelEnum
Node: InstitutionControlUnknown
typeOf: dcs:InstitutionControlEnum
dcid: "InstitutionControlUnknown"
name: "InstitutionControlUnknown"
description: "Unknown educational institution control."
Node: InstitutionControlPublic
typeOf: dcs:InstitutionControlEnum
dcid: "InstitutionControlPublic"
name: "InstitutionControlPublic"
description: "A public educational institution."
Node: InstitutionControlPrivateNonProfit
typeOf: dcs:InstitutionControlEnum
dcid: "InstitutionControlPrivateNonProfit"
name: "InstitutionControlPrivateNonProfit"
description: "A private non-profit educational institution."
Node: InstitutionControlPrivateForProfit
typeOf: dcs:InstitutionControlEnum
dcid: "InstitutionControlPrivateForProfit"
name: "InstitutionControlPrivateForProfit"
description: "A private for-profit educational institution."
###---- begin Carnegie enum instances ----###
Node: CarnegieInstitutionTypeUnknown
typeOf: dcs:CarnegieInstitutionTypeEnum
dcid: "CarnegieInstitutionTypeUnknown"
name: "CarnegieInstitutionTypeUnknown"
description: "An educational institution of unknown type Carnegie classification."
Node: CarnegieInstitutionTypeTwoYear
typeOf: dcs:CarnegieInstitutionTypeEnum
dcid: "CarnegieInstitutionTypeTwoYear"
name: "CarnegieInstitutionTypeTwoYear"
description: "A two-year study educational institution per Carnegie classification."
Node: CarnegieInstitutionTypeFourYear
typeOf: dcs:CarnegieInstitutionTypeEnum
dcid: "CarnegieInstitutionTypeFourYear"
name: "CarnegieInstitutionTypeFourYear"
description: "A four-year study educational institution per Carnegie classification."
Node: CarnegieInstitutionTypeExclusivelyGraduate
typeOf: dcs:CarnegieInstitutionTypeEnum
dcid: "CarnegieInstitutionTypeExclusivelyGraduate"
name: "CarnegieInstitutionTypeExclusivelyGraduate"
description: "An exclusively graduate educational institution per Carnegie classification."
Node: CarnegieInstitutionSizeUnknown
typeOf: dcs:CarnegieInstitutionSizeEnum
dcid: "CarnegieInstitutionSizeUnknown"
name: "CarnegieInstitutionSizeUnknown"
description: "An educational institution with an unknown size per Carnegie classification."
Node: CarnegieInstitutionSizeVerySmall
typeOf: dcs:CarnegieInstitutionSizeEnum
dcid: "CarnegieInstitutionSizeVerySmall"
name: "CarnegieInstitutionSizeVerySmall"
description: "A very small educational institution per Carnegie classification."
Node: CarnegieInstitutionSizeSmall
typeOf: dcs:CarnegieInstitutionSizeEnum
dcid: "CarnegieInstitutionSizeSmall"
name: "CarnegieInstitutionSizeSmall"
description: "A small educational institution per Carnegie classification."
Node: CarnegieInstitutionSizeMedium
typeOf: dcs:CarnegieInstitutionSizeEnum
dcid: "CarnegieInstitutionSizeMedium"
name: "CarnegieInstitutionSizeMedium"
description: "A medium sized educational institution per Carnegie classification."
Node: CarnegieInstitutionSizeLarge
typeOf: dcs:CarnegieInstitutionSizeEnum
dcid: "CarnegieInstitutionSizeLarge"
name: "CarnegieInstitutionSizeLarge"
description: "A large educational institution per Carnegie classification."
Node: CarnegieInstitutionSizeVeryLarge
typeOf: dcs:CarnegieInstitutionSizeEnum
dcid: "CarnegieInstitutionSizeVeryLarge"
name: "CarnegieInstitutionSizeVeryLarge"
description: "A very large educational institution per Carnegie classification."
Node: CarnegieResidenceTypeUnknown
typeOf: dcs:ResidenceTypeEnum
dcid: "CarnegieResidenceTypeUnknown"
name: "CarnegieResidenceTypeUnknown"
description: "An educational institution with an unknown residence type per Carnegie classification."
Node: CarnegieResidenceTypeNonResidential
typeOf: dcs:ResidenceTypeEnum
dcid: "CarnegieResidenceTypeNonResidential"
name: "CarnegieResidenceTypeNonResidential"
description: "A non-residential educational institution per Carnegie classification."
Node: CarnegieResidenceTypeResidential
typeOf: dcs:ResidenceTypeEnum
dcid: "CarnegieResidenceTypeResidential"
name: "CarnegieResidenceTypeResidential"
description: "A residential educational institution per Carnegie classification."
Node: CarnegieResidenceTypeHighlyResidential
typeOf: dcs:ResidenceTypeEnum
dcid: "CarnegieResidenceTypeHighlyResidential"
name: "CarnegieResidenceTypeHighlyResidential"
description: "A highly residential educational institution per Carnegie classification."
###---- begin EIA enum instances ----###
Node: dcid:EIA_AllOther
name: "EIA_AllOther"
typeOf: dcs:GeneratorTechnologyEnum
Node: dcid:EIA_Batteries
name: "EIA_Batteries"
typeOf: dcs:GeneratorTechnologyEnum
Node: dcid:EIA_CoalIntegratedGasificationCombinedCycle
name: "EIA_CoalIntegratedGasificationCombinedCycle"
typeOf: dcs:GeneratorTechnologyEnum
Node: dcid:EIA_ConventionalHydroelectric
name: "EIA_ConventionalHydroelectric"
typeOf: dcs:GeneratorTechnologyEnum
Node: dcid:EIA_ConventionalSteamCoal
name: "EIA_ConventionalSteamCoal"
typeOf: dcs:GeneratorTechnologyEnum
Node: dcid:EIA_Flywheels
name: "EIA_Flywheels"
typeOf: dcs:GeneratorTechnologyEnum
Node: dcid:EIA_Geothermal
name: "EIA_Geothermal"
typeOf: dcs:GeneratorTechnologyEnum
Node: dcid:EIA_HydroelectricPumpedStorage
name: "EIA_HydroelectricPumpedStorage"
typeOf: dcs:GeneratorTechnologyEnum
Node: dcid:EIA_LandfillGas
name: "EIA_LandfillGas"
typeOf: dcs:GeneratorTechnologyEnum
Node: dcid:EIA_MunicipalSolidWaste
name: "EIA_MunicipalSolidWaste"
typeOf: dcs:GeneratorTechnologyEnum
Node: dcid:EIA_NaturalGasFiredCombinedCycle
name: "EIA_NaturalGasFiredCombinedCycle"
typeOf: dcs:GeneratorTechnologyEnum
Node: dcid:EIA_NaturalGasFiredCombustionTurbine
name: "EIA_NaturalGasFiredCombustionTurbine"
typeOf: dcs:GeneratorTechnologyEnum
Node: dcid:EIA_NaturalGasInternalCombustionEngine
name: "EIA_NaturalGasInternalCombustionEngine"
typeOf: dcs:GeneratorTechnologyEnum
Node: dcid:EIA_NaturalGasSteamTurbine
name: "EIA_NaturalGasSteamTurbine"
typeOf: dcs:GeneratorTechnologyEnum
Node: dcid:EIA_NaturalGaswithCompressedAirStorage
name: "EIA_NaturalGaswithCompressedAirStorage"
typeOf: dcs:GeneratorTechnologyEnum
Node: dcid:EIA_Nuclear
name: "EIA_Nuclear"
typeOf: dcs:GeneratorTechnologyEnum
Node: dcid:EIA_OffshoreWindTurbine
name: "EIA_OffshoreWindTurbine"
typeOf: dcs:GeneratorTechnologyEnum
Node: dcid:EIA_OnshoreWindTurbine
name: "EIA_OnshoreWindTurbine"
typeOf: dcs:GeneratorTechnologyEnum
Node: dcid:EIA_OtherGases
name: "EIA_OtherGases"
typeOf: dcs:GeneratorTechnologyEnum
Node: dcid:EIA_OtherNaturalGas
name: "EIA_OtherNaturalGas"
typeOf: dcs:GeneratorTechnologyEnum
Node: dcid:EIA_OtherWasteBiomass
name: "EIA_OtherWasteBiomass"
typeOf: dcs:GeneratorTechnologyEnum
Node: dcid:EIA_PetroleumCoke
name: "EIA_PetroleumCoke"
typeOf: dcs:GeneratorTechnologyEnum
Node: dcid:EIA_PetroleumLiquids
name: "EIA_PetroleumLiquids"
typeOf: dcs:GeneratorTechnologyEnum
Node: dcid:EIA_SolarPhotovoltaic
name: "EIA_SolarPhotovoltaic"
typeOf: dcs:GeneratorTechnologyEnum
Node: dcid:EIA_SolarThermalwithEnergyStorage
name: "EIA_SolarThermalwithEnergyStorage"
typeOf: dcs:GeneratorTechnologyEnum
Node: dcid:EIA_SolarThermalwithoutEnergyStorage
name: "EIA_SolarThermalwithoutEnergyStorage"
typeOf: dcs:GeneratorTechnologyEnum
Node: dcid:EIA_WoodWasteBiomass
name: "EIA_WoodWasteBiomass"
typeOf: dcs:GeneratorTechnologyEnum
Node: dcid:EIA_OutOfService_InServiceNextYear
name: "EIA_OutOfService_InServiceNextYear"
typeOf: dcs:PowerPlantStatusEnum
Node: dcid:EIA_Operating
name: "EIA_Operating"
typeOf: dcs:PowerPlantStatusEnum
Node: dcid:EIA_OutOfService
name: "EIA_OutOfService"
typeOf: dcs:PowerPlantStatusEnum
Node: dcid:EIA_Standby_Backup
name: "EIA_Standby_Backup"
typeOf: dcs:PowerPlantStatusEnum
Node: dcid:EIA_Retired
name: "EIA_Retired"
typeOf: dcs:PowerPlantStatusEnum
Node: dcid:EIA_Cancelled
name: "EIA_Cancelled"
typeOf: dcs:PowerPlantStatusEnum
Node: dcid:EIA_IndefinitelyPostponed
name: "EIA_IndefinitelyPostponed"
typeOf: dcs:PowerPlantStatusEnum
Node: dcid:EIA_Testing_ConstructionComplete
name: "EIA_Testing_ConstructionComplete"
typeOf: dcs:PowerPlantStatusEnum
Node: dcid:EIA_Planned
name: "EIA_Planned"
typeOf: dcs:PowerPlantStatusEnum
Node: dcid:EIA_Legal_RegulatoryApprovalPending
name: "EIA_Legal_RegulatoryApprovalPending"
typeOf: dcs:PowerPlantStatusEnum
Node: dcid:EIA_RegulatoryApproval
name: "EIA_RegulatoryApproval"
typeOf: dcs:PowerPlantStatusEnum
Node: dcid:EIA_UnderConstruction
name: "EIA_UnderConstruction"
typeOf: dcs:PowerPlantStatusEnum
Node: dcid:EIA_UnderConstruction_MoreThanHalfComplete
name: "EIA_UnderConstruction_MoreThanHalfComplete"
typeOf: dcs:PowerPlantStatusEnum
Node: dcid:EIA_Other
name: "EIA_Other"
typeOf: dcs:PowerPlantStatusEnum
Node: dcid:EIA_AnthraciteCoal
name: "EIA_AnthraciteCoal"
typeOf: dcs:EnergySourceEnum
Node: dcid:EIA_BituminousCoal
name: "EIA_BituminousCoal"
typeOf: dcs:EnergySourceEnum
Node: dcid:EIA_LigniteCoal
name: "EIA_LigniteCoal"
typeOf: dcs:EnergySourceEnum
Node: dcid:EIA_CoalDerivedSynthesisGas
name: "EIA_CoalDerivedSynthesisGas"
typeOf: dcs:EnergySourceEnum
Node: dcid:EIA_SubbituminousCoal
name: "EIA_SubbituminousCoal"
typeOf: dcs:EnergySourceEnum
Node: dcid:EIA_Waste_OtherCoal
name: "EIA_Waste_OtherCoal"
typeOf: dcs:EnergySourceEnum
Node: dcid:EIA_RefinedCoal
name: "EIA_RefinedCoal"
typeOf: dcs:EnergySourceEnum
Node: dcid:EIA_DistillateFuelOil
name: "EIA_DistillateFuelOil"
typeOf: dcs:EnergySourceEnum
Node: dcid:EIA_JetFuel
name: "EIA_JetFuel"
typeOf: dcs:EnergySourceEnum
Node: dcid:EIA_Kerosene
name: "EIA_Kerosene"
typeOf: dcs:EnergySourceEnum
Node: dcid:EIA_PetroleumCoke
name: "EIA_PetroleumCoke"
typeOf: dcs:EnergySourceEnum
Node: dcid:EIA_GaseousPropane
name: "EIA_GaseousPropane"
typeOf: dcs:EnergySourceEnum
Node: dcid:EIA_ResidualFuelOil
name: "EIA_ResidualFuelOil"
typeOf: dcs:EnergySourceEnum
Node: dcid:EIA_SynthesisGasfromPetroleumCoke
name: "EIA_SynthesisGasfromPetroleumCoke"
typeOf: dcs:EnergySourceEnum
Node: dcid:EIA_Waste_OtherOil
name: "EIA_Waste_OtherOil"
typeOf: dcs:EnergySourceEnum
Node: dcid:EIA_BlastFurnaceGas
name: "EIA_BlastFurnaceGas"
typeOf: dcs:EnergySourceEnum
Node: dcid:EIA_NaturalGas
name: "EIA_NaturalGas"
typeOf: dcs:EnergySourceEnum
Node: dcid:EIA_OtherGas
name: "EIA_OtherGas"
typeOf: dcs:EnergySourceEnum
Node: dcid:EIA_WoodWasteBiomass
name: "EIA_WoodWasteBiomass"
typeOf: dcs:EnergySourceEnum
Node: dcid:EIA_Wind
name: "EIA_Wind"
typeOf: dcs:EnergySourceEnum
Node: dcid:EIA_Water
name: "EIA_Water"
typeOf: dcs:EnergySourceEnum
Node: dcid:EIA_EnergyStorageBattery
name: "EIA_EnergyStorageBattery"
typeOf: dcs:PrimeMoverEnum
Node: dcid:EIA_EnergyStorageCompressedAir
name: "EIA_EnergyStorageCompressedAir"
typeOf: dcs:PrimeMoverEnum
Node: dcid:EIA_EnergyStorageConcentratedSolarPower
name: "EIA_EnergyStorageConcentratedSolarPower"
typeOf: dcs:PrimeMoverEnum
Node: dcid:EIA_EnergyStorageFlywheel
name: "EIA_EnergyStorageFlywheel"
typeOf: dcs:PrimeMoverEnum
Node: dcid:EIA_EnergyStorageReversibleHydraulicTurbine
name: "EIA_EnergyStorageReversibleHydraulicTurbine"
typeOf: dcs:PrimeMoverEnum
Node: dcid:EIA_EnergyStorageOther
name: "EIA_EnergyStorageOther"
typeOf: dcs:PrimeMoverEnum
Node: dcid:EIA_SteamTurbineAllexceptcombinedcycle
name: "EIA_SteamTurbineAllexceptcombinedcycle"
typeOf: dcs:PrimeMoverEnum
Node: dcid:EIA_GasTurbine
name: "EIA_GasTurbine"
typeOf: dcs:PrimeMoverEnum
Node: dcid:EIA_InternalCombustionEngine
name: "EIA_InternalCombustionEngine"
typeOf: dcs:PrimeMoverEnum
Node: dcid:EIA_CombinedCycleSteamPart
name: "EIA_CombinedCycleSteamPart"
typeOf: dcs:PrimeMoverEnum
Node: dcid:EIA_CombinedCycleCombustionTurbinePart
name: "EIA_CombinedCycleCombustionTurbinePart"
typeOf: dcs:PrimeMoverEnum
Node: dcid:EIA_CombinedCycleSingleShaft
name: "EIA_CombinedCycleSingleShaft"
typeOf: dcs:PrimeMoverEnum
Node: dcid:EIA_CombinedCycleTotalUnit
name: "EIA_CombinedCycleTotalUnit"
typeOf: dcs:PrimeMoverEnum
Node: dcid:EIA_HydrokineticAxialFlowTurbine
name: "EIA_HydrokineticAxialFlowTurbine"
typeOf: dcs:PrimeMoverEnum
Node: dcid:EIA_HydrokineticWaveBuoy
name: "EIA_HydrokineticWaveBuoy"
typeOf: dcs:PrimeMoverEnum
Node: dcid:EIA_HydrokineticOther
name: "EIA_HydrokineticOther"
typeOf: dcs:PrimeMoverEnum
Node: dcid:EIA_HydroelectricTurbine
name: "EIA_HydroelectricTurbine"
typeOf: dcs:PrimeMoverEnum
Node: dcid:EIA_TurbinesinBinaryCycle
name: "EIA_TurbinesinBinaryCycle"
typeOf: dcs:PrimeMoverEnum
Node: dcid:EIA_Photovoltaic
name: "EIA_Photovoltaic"
typeOf: dcs:PrimeMoverEnum
Node: dcid:EIA_WindTurbineOnshore
name: "EIA_WindTurbineOnshore"
typeOf: dcs:PrimeMoverEnum
Node: dcid:EIA_WindTurbineOffshore
name: "EIA_WindTurbineOffshore"
typeOf: dcs:PrimeMoverEnum
Node: dcid:EIA_FuelCell
name: "EIA_FuelCell"
typeOf: dcs:PrimeMoverEnum
Node: dcid:EIA_BlastFurnaceGas
name: "EIA_BlastFurnaceGas"
typeOf: dcs:PrimeMoverEnum
Node: dcid:EIA_NaturalGas
name: "EIA_NaturalGas"
typeOf: dcs:PrimeMoverEnum
Node: dcid:EIA_OtherGas
name: "EIA_OtherGas"
typeOf: dcs:PrimeMoverEnum
Node: dcid:EIA_AgriculturalByproducts
name: "EIA_AgriculturalByproducts"
typeOf: dcs:PrimeMoverEnum
Node: dcid:EIA_MunicipalSolidWaste
name: "EIA_MunicipalSolidWaste"
typeOf: dcs:PrimeMoverEnum
Node: dcid:EIA_OtherBiomassSolids
name: "EIA_OtherBiomassSolids"
typeOf: dcs:PrimeMoverEnum
Node: dcid:EIA_WoodWasteBiomass
name: "EIA_WoodWasteBiomass"
typeOf: dcs:PrimeMoverEnum
Node: dcid:EIA_OtherBiomassLiquids
name: "EIA_OtherBiomassLiquids"
typeOf: dcs:PrimeMoverEnum
Node: dcid:EIA_SludgeWaste
name: "EIA_SludgeWaste"
typeOf: dcs:PrimeMoverEnum
Node: dcid:EIA_BlackLiquor
name: "EIA_BlackLiquor"
typeOf: dcs:PrimeMoverEnum
Node: dcid:EIA_WoodWasteLiquidsexcludingBlackLiquor
name: "EIA_WoodWasteLiquidsexcludingBlackLiquor"
typeOf: dcs:PrimeMoverEnum
Node: dcid:EIA_LandfillGas
name: "EIA_LandfillGas"
typeOf: dcs:PrimeMoverEnum
Node: dcid:EIA_OtherBiomassGas
name: "EIA_OtherBiomassGas"
typeOf: dcs:PrimeMoverEnum
Node: dcid:EIA_Solar
name: "EIA_Solar"
typeOf: dcs:PrimeMoverEnum
Node: dcid:EIA_Wind
name: "EIA_Wind"
typeOf: dcs:PrimeMoverEnum
Node: dcid:EIA_Geothermal
name: "EIA_Geothermal"
typeOf: dcs:PrimeMoverEnum
Node: dcid:EIA_Water
name: "EIA_Water"
typeOf: dcs:PrimeMoverEnum
Node: dcid:EIA_Nuclear
name: "EIA_Nuclear"
typeOf: dcs:PrimeMoverEnum
Node: dcid:EIA_PurchasedSteam
name: "EIA_PurchasedSteam"
typeOf: dcs:PrimeMoverEnum
Node: dcid:EIA_Wasteheatnotdirectlyattributedtoafuelsource
name: "EIA_Wasteheatnotdirectlyattributedtoafuelsource"
typeOf: dcs:PrimeMoverEnum
Node: dcid:EIA_TireDerivedFuels
name: "EIA_TireDerivedFuels"
typeOf: dcs:PrimeMoverEnum
Node: dcid:EIA_Electricityusedforenergystorage
name: "EIA_Electricityusedforenergystorage"
typeOf: dcs:PrimeMoverEnum
Node: dcid:EIA_Other
name: "EIA_Other"
typeOf: dcs:PrimeMoverEnum
Node: dcid:EIA_SingleOwner
name: "EIA_SingleOwner"
typeOf: dcs:TypeOfPowerPlantUnitOwnershipEnum
Node: dcid:EIA_JointlyOwned
name: "EIA_JointlyOwned"
typeOf: dcs:TypeOfPowerPlantUnitOwnershipEnum
Node: dcid:EIA_SingleOwnerNotRespondent
name: "EIA_SingleOwnerNotRespondent"
typeOf: dcs:TypeOfPowerPlantUnitOwnershipEnum
Node: dcid:EIA_Topping
name: "EIA_Topping"
typeOf: dcs:ToppingOrBottomingEnum
Node: dcid:EIA_Bottoming
name: "EIA_Bottoming"
typeOf: dcs:ToppingOrBottomingEnum
Node: dcid:EIA_DuctBurners
name: "EIA_DuctBurners"
typeOf: dcs:CombustionPowerPlantPropertiesEnum
Node: dcid:EIA_CanBypassHeatRecoverySteamGenerator
name: "EIA_CanBypassHeatRecoverySteamGenerator"
typeOf: dcs:CombustionPowerPlantPropertiesEnum
Node: dcid:EIA_AssociatedwithCombinedHeatandPowerSystem
name: "EIA_AssociatedwithCombinedHeatandPowerSystem"
typeOf: dcs:CombustionPowerPlantPropertiesEnum
Node: dcid:EIA_ToppingorBottoming
name: "EIA_ToppingorBottoming"
typeOf: dcs:CombustionPowerPlantPropertiesEnum
Node: dcid:EIA_SolidFuelGasificationSystem
name: "EIA_SolidFuelGasificationSystem"
typeOf: dcs:CombustionPowerPlantPropertiesEnum
Node: dcid:EIA_CarbonCaptureTechnology
name: "EIA_CarbonCaptureTechnology"
typeOf: dcs:CombustionPowerPlantPropertiesEnum
Node: dcid:EIA_FluidizedBedTechnology
name: "EIA_FluidizedBedTechnology"
typeOf: dcs:CombustionPowerPlantPropertiesEnum
Node: dcid:EIA_PulverizedCoalTechnology
name: "EIA_PulverizedCoalTechnology"
typeOf: dcs:CombustionPowerPlantPropertiesEnum
Node: dcid:EIA_StokerTechnology
name: "EIA_StokerTechnology"
typeOf: dcs:CombustionPowerPlantPropertiesEnum
Node: dcid:EIA_OtherCombustionTechnology
name: "EIA_OtherCombustionTechnology"
typeOf: dcs:CombustionPowerPlantPropertiesEnum
Node: dcid:EIA_SubcriticalTechnology
name: "EIA_SubcriticalTechnology"
typeOf: dcs:CombustionPowerPlantPropertiesEnum
Node: dcid:EIA_SupercriticalTechnology
name: "EIA_SupercriticalTechnology"
typeOf: dcs:CombustionPowerPlantPropertiesEnum
Node: dcid:EIA_UltrasupercriticalTechnology
name: "EIA_UltrasupercriticalTechnology"
typeOf: dcs:CombustionPowerPlantPropertiesEnum
Node: dcid:EIA_MultipleFuels
name: "EIA_MultipleFuels"
typeOf: dcs:CombustionPowerPlantPropertiesEnum
Node: dcid:EIA_CofireFuels
name: "EIA_CofireFuels"
typeOf: dcs:CombustionPowerPlantPropertiesEnum
Node: dcid:EIA_SwitchBetweenOilandNaturalGas
name: "EIA_SwitchBetweenOilandNaturalGas"
typeOf: dcs:CombustionPowerPlantPropertiesEnum
Node: dcid:EIA_ElectricUtility
name: "EIA_ElectricUtility"
typeOf: dcs:PowerProviderCategoryEnum
Node: dcid:EIA_IndependentPowerProducer_NonCombinedHeatandPower
name: "EIA_IndependentPowerProducer_NonCombinedHeatandPower"
typeOf: dcs:PowerProviderCategoryEnum
Node: dcid:EIA_IndependentPowerProducer_CombinedHeatandPower
name: "EIA_IndependentPowerProducer_CombinedHeatandPower"
typeOf: dcs:PowerProviderCategoryEnum
Node: dcid:EIA_Commercial_NonCombinedHeatandPower
name: "EIA_Commercial_NonCombinedHeatandPower"
typeOf: dcs:PowerProviderCategoryEnum
Node: dcid:EIA_Commercial_CombinedHeatandPower
name: "EIA_Commercial_CombinedHeatandPower"
typeOf: dcs:PowerProviderCategoryEnum
Node: dcid:EIA_Industrial_NonCombinedHeatandPower
name: "EIA_Industrial_NonCombinedHeatandPower"
typeOf: dcs:PowerProviderCategoryEnum
Node: dcid:EIA_Industrial_CombinedHeatandPower
name: "EIA_Industrial_CombinedHeatandPower"
typeOf: dcs:PowerProviderCategoryEnum
Node: dcid:EIA_AnthraciteCoal
name: "EIA_AnthraciteCoal"
typeOf: dcs:StartupEnergySourceEnum
Node: dcid:EIA_BituminousCoal
name: "EIA_BituminousCoal"