-
Notifications
You must be signed in to change notification settings - Fork 26
/
dcschema.mcf
4218 lines (3529 loc) · 134 KB
/
dcschema.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:typeOf
name: "typeOf"
typeOf: schema:Property
domainIncludes: schema:Thing
rangeIncludes: schema:Class
description: "Indicates the type of an entity. The type should be the Class the entity is an instance of."
Node: dcid:subClassOf
name: "subClassOf"
typeOf: schema:Property
domainIncludes: schema:Class
rangeIncludes: schema:Class
description: "Indicates Class hierarchy. For example, City is a subClassOf AdministrativeArea. Thus, instances of City are also instances of AdministrativeArea."
Node: dcid:subPropertyOf
name: "subPropertyOf"
typeOf: schema:Property
domainIncludes: schema:Property
rangeIncludes: schema:Property
description: "Indicates Property hierarchy."
Node: dcid:equivalentClass
name: "equivalentClass"
typeOf: schema:Property
domainIncludes: schema:Class
rangeIncludes: schema:Class
Node: dcid:equivalentProperty
name: "equivalentProperty"
typeOf: schema:Property
domainIncludes: schema:Property
rangeIncludes: schema:Property
Node: dcid:descriptionUrl
name: "descriptionUrl"
typeOf: schema:Property
domainIncludes: schema:Class, schema:Property, schema:Enumeration
rangeIncludes: schema:URL
description: "Provenance URL of the description value."
Node: dcid:nameWithLanguage
name: "nameWithLanguage"
typeOf: schema:Property
domainIncludes: schema:Class
rangeIncludes: schema:Text
description: "Text string in quotes ending with @<lang> where <lang> is a 2 letter ISO 639-1 language code."
Node: dcid:utteranceTemplate
name: "utteranceTemplate"
typeOf: schema:Property
domainIncludes: schema:Thing, schema:StatisticalVariable
rangeIncludes: schema:Text
description: "A text string that captures how a node may be referred to by a user. It can have placeholders prefixed with a '$' to indicate parts that can be substituted with a set of strings, for instance, '$Location' or '$Year'."
Node: dcid:geoId
name: "geoId"
typeOf: schema:Property
domainIncludes: schema:Place
rangeIncludes: schema:Text
description: "An identifier for a place, usually assigned by an administrative agency. For example, Miami-Dade county has a FIPS ID 12086 given by the US government."
Node: dcid:usCensusGeoId
name: "usCensusGeoId"
typeOf: schema:Property
domainIncludes: schema:Place
rangeIncludes: schema:Text
description: "A geographic identifier that uniquely identify all administrative/legal and statistical geographic areas for which the Census Bureau tabulates data. Some of the most common administrative/legal and statistical geographic entities with unique GEOIDs include states, counties, congressional districts, core based statistical areas (metropolitan and micropolitan areas), census tracts, block groups and census blocks."
descriptionUrl: "https://www.census.gov/programs-surveys/geography/guidance/geo-identifiers.html"
Node: dcid:marginOfError
name: "marginOfError"
typeOf: schema:Property
domainIncludes: schema:Observation
rangeIncludes: schema:Number, dcs:Percent
Node: dcid:marginOfErrorSignificanceLevel
typeOf: schema:Property
domainIncludes: dcs:StatVarObservation
name: "marginOfErrorSignificanceLevel"
description: "The probability (expressed as a percentage) of a predicted/estimated value falling within the margin of error (absolute error) specified."
rangeIncludes: dcs:Percent
descriptionUrl: "https://en.wikipedia.org/wiki/Statistical_significance"
Node: dcid:stdError
name: "stdError"
typeOf: schema:Property
domainIncludes: schema:Observation
rangeIncludes: schema:Number
description: "The standard error of a statistic (usually an estimate of a parameter) is the standard deviation of its sampling distribution or an estimate of that standard deviation. If the parameter or the statistic is the mean, it is called the standard error of the mean."
descriptionUrl: "https://en.wikipedia.org/wiki/Standard_error"
Node: dcid:countRelative
name: "countRelative"
typeOf: schema:Property
domainIncludes: schema:StatisticalPopulation
rangeIncludes: schema:Number, dcs:Percent
description: "Ratio of counts between the observed population and its parent population with all constraints except population type and location removed. If measuredProperty=count/relative, unit=Percent, measuredValue=34.3 for people with smallpox in San Francisco, then for every 100 people in San Francisco, 34.3 of them have smallpox."
Node: dcid:percent
name: "percent"
typeOf: schema:Property
domainIncludes: schema:StatisticalPopulation, dcs:Person
rangeIncludes: schema:Number, dcs:Percent
supersededBy: dcs:countRelative
Node: dcid:unit
name: "unit"
typeOf: schema:Property
rangeIncludes: schema:Text
domainIncludes: schema:Observation, dcs:StatVarObservation
Node: dcid:subPopulation
rangeIncludes: schema:StatisticalPopulation
domainIncludes: schema:StatisticalPopulation
name: "subPopulation"
typeOf: schema:Property
Node: Cohort
dcid: "Cohort"
typeOf: schema:Class
subClassOf: schema:Thing
name: "Cohort"
description: "Group of people banded together or taken as a group."
Node: provenance
dcid: "provenance"
rangeIncludes: schema:Text
typeOf: schema:Property
domainIncludes: schema:Thing
name: "provenance"
Node: meanValue
dcid: "meanValue"
typeOf: schema:Property
rangeIncludes: schema:Number
domainIncludes: schema:Observation
name: "meanValue"
Node: dcid:Election
name: "Election"
typeOf: schema:Class
subClassOf: schema:Event
description: "A formal group decision-making process by which a population chooses an individual to hold public office."
descriptionUrl: "https://en.wikipedia.org/wiki/Election"
Node: dcid:GeneralElection
name: "GeneralElection"
typeOf: dcs:Class
subClassOf: dcs:Election
description: "A general election is a political voting election where generally all or most members of a given political body are chosen. These are usually held for a nation, state, or territory's primary legislative body, and are different from by-elections (only one electorate goes to election)."
descriptionUrl: "https://en.wikipedia.org/wiki/General_election"
Node: dcid:PresidentialElection
name: "PresidentialElection"
typeOf: dcs:Class
subClassOf: dcs:GeneralElection
description: "A presidential election is the election of any head of state whose official title is President."
descriptionUrl: "https://en.wikipedia.org/wiki/Presidential_election"
Node: totalPopulation
dcid: "totalPopulation"
name: "totalPopulation"
typeOf: schema:Property
Node: sumValue
dcid: "sumValue"
rangeIncludes: schema:Number
name: "sumValue"
typeOf: schema:Property
domainIncludes: schema:Observation
Node: dcid:measurementMethod
name: "measurementMethod"
domainIncludes: schema:Observation, dcs:StatisticalVariable
rangeIncludes: schema:Text, schema:Enumeration
typeOf: schema:Property
description: "Used when extra clarification is needed about how the measuredProperty was measured."
Node: dcid:measurementResult
name: "measurementResult"
domainIncludes: schema:Observation, dcs:StatisticalVariable
rangeIncludes: schema:Text, schema:Enumeration
typeOf: schema:Property
description: "Used when extra description is needed for the measurement result. For example, if there was a result but you do not make it available in Data Commons for privacy reasons, you may set measurementResult to DataSuppressed."
Node: dcid:growthRate
name: "growthRate"
domainIncludes: schema:Observation
rangeIncludes: schema:Number
typeOf: schema:Property
description: "The percentage change of a specific variable within a specific time period and given a certain context."
descriptionUrl: "https://www.investopedia.com/terms/g/growthrates.asp"
Node: dcid:percentile10
typeOf: schema:Property
name: "percentile10"
domainIncludes: dcs:StatVarObservation
rangeIncludes: schema:Number
Node: dcid:percentile25
typeOf: schema:Property
name: "percentile25"
domainIncludes: dcs:StatVarObservation
rangeIncludes: schema:Number
Node: dcid:percentile75
typeOf: schema:Property
name: "percentile75"
domainIncludes: dcs:StatVarObservation
rangeIncludes: schema:Number
Node: dcid:percentile90
typeOf: schema:Property
name: "percentile90"
domainIncludes: dcs:StatVarObservation
rangeIncludes: schema:Number
Node: dcid:County
name: "County"
typeOf: schema:Class
subClassOf: schema:AdministrativeArea
Node: dcid:Division
name: "Division"
typeOf: schema:Class
subClassOf: schema:AdministrativeArea
Node: dcid:Governorate
name: "Governorate"
typeOf: schema:Class
subClassOf: schema:AdministrativeArea
Node: dcid:Island
name: "Island"
typeOf: schema:Class
subClassOf: dcs:Place
Node: dcid:Oblast
name: "Oblast"
typeOf: schema:Class
subClassOf: schema:AdministrativeArea
Node: dcid:Parish
name: "Parish"
typeOf: schema:Class
subClassOf: schema:AdministrativeArea
Node: dcid:Province
name: "Province"
typeOf: schema:Class
subClassOf: schema:AdministrativeArea
Node: dcid:Region
name: "Region"
typeOf: schema:Class
subClassOf: schema:AdministrativeArea
Node: dcid:Emirate
name: "Emirate"
typeOf: schema:Class
subClassOf: schema:AdministrativeArea
Node: dcid:Municipality
name: "Municipality"
typeOf: schema:Class
subClassOf: schema:AdministrativeArea
Node: dcid:Commune
name: "Commune"
typeOf: schema:Class
subClassOf: schema:AdministrativeArea
Node: dcid:EurostatNUTS1
name: "EurostatNUTS1"
typeOf: schema:Class
description: "First level statistical subdivision within an EU member country"
subClassOf: schema:StatisticalArea
Node: dcid:EurostatNUTS2
name: "EurostatNUTS2"
typeOf: schema:Class
description: "Second level statistical subdivision within an EU member country"
subClassOf: schema:StatisticalArea
Node: dcid:EurostatNUTS3
name: "EurostatNUTS3"
typeOf: schema:Class
description: "Third level statistical subdivision within an EU member country"
subClassOf: schema:StatisticalArea
Node: dcid:AdministrativeArea1
name: "AdministrativeArea1"
typeOf: schema:Class
description: "A level-1 administrative subdivision of a country, e.g. departments in Bolivia."
subClassOf: schema:AdministrativeArea
Node: dcid:AdministrativeArea2
name: "AdministrativeArea2"
typeOf: schema:Class
description: "A level-2 administrative subdivision of a country, e.g. municipalities in Bulgaria."
subClassOf: schema:AdministrativeArea
Node: dcid:AdministrativeArea3
name: "AdministrativeArea3"
typeOf: schema:Class
description: "A level-3 administrative subdivision of a country, e.g. municipalities in Bosnia and Herzegovina."
subClassOf: schema:AdministrativeArea
Node: dcid:AdministrativeArea4
name: "AdministrativeArea4"
typeOf: schema:Class
description: "A level-4 administrative subdivision of a country, e.g. wards in South Africa."
subClassOf: schema:AdministrativeArea
Node: dcid:AdministrativeArea5
name: "AdministrativeArea5"
typeOf: schema:Class
description: "A level-5 administrative subdivision of a country."
subClassOf: schema:AdministrativeArea
Node: dcid:Town
name: "Town"
typeOf: schema:Class
description: "A settlement that is bigger than a village but smaller than a city."
descriptionUrl: "https://www.wikidata.org/wiki/Q3957"
subClassOf: schema:Place
Node: dcid:Village
name: "Village"
typeOf: schema:Class
description: "A small clustered human settlement smaller than a town."
descriptionUrl: "https://www.wikidata.org/wiki/Q532"
subClassOf: schema:Place
Node: dcid:Neighborhood
name: "Neighborhood"
typeOf: schema:Class
description: "A geographically localized community within a larger city, town or suburb."
descriptionUrl: "https://www.wikidata.org/wiki/Q123705"
subClassOf: schema:Place
Node: dcid:USMetropolitanDivision
name: "USMetropolitanDivision"
typeOf: schema:Class
description: "Subdivisions of US Metropolitan Statistical Areas (MSAs) and New England City and Town Areas (NECTAs)."
subClassOf: schema:Place
Node: dcid:CensusOutputArea
name: "CensusOutputArea"
typeOf: schema:Class
subClassOf: schema:AdministrativeArea
description: "Output Areas (OA) are the lowest level of geographical area for census statistics in the United Kingdom."
descriptionUrl: "https://www.ons.gov.uk/methodology/geography/ukgeographies/censusgeographies/census2021geographies#output-areas-oas"
Node: dcid:LowerLayerSuperOutputArea
name: "LowerLayerSuperOutputArea"
typeOf: schema:Class
subClassOf: schema:AdministrativeArea
description: "Lower layer Super Output Areas (LSOA) are geographical area for census statistics in the United kingdom. They are made up of groups of Output Area (OAs), usually four or five. They comprise between 400 and 1,200 households and have a usually resident population between 1,000 and 3,000 persons."
descriptionUrl: "https://www.ons.gov.uk/methodology/geography/ukgeographies/censusgeographies/census2021geographies#lower-layer-super-output-areas-lsoas"
Node: dcid:MiddleLayerSuperOutputArea
name: "MiddleLayerSuperOutputArea"
typeOf: schema:Class
subClassOf: schema:AdministrativeArea
description: "Middle layer Super Output Areas (MSOA) are geographical area for census statistics in the United kingdom. They are made up of groups of Lower layer Super Output Area (LSOAs), usually four or five. They comprise between 2,000 and 6,000 households and have a usually resident population between 5,000 and 15,000 persons. MSOAs fit within local authorities."
descriptionUrl: "https://www.ons.gov.uk/methodology/geography/ukgeographies/censusgeographies/census2021geographies#middle-layer-super-output-areas-msoas"
Node: dcid:ElectoralWard
name: "ElectoralWard"
typeOf: schema:Class
subClassOf: schema:AdministrativeArea
description: "Electoral wards are spatial units of UK administrative geography used to elect local government councillors."
descriptionUrl: "https://geoportal.statistics.gov.uk/documents/ons::a-beginners-guide-to-uk-geography-2021-v1-0-1/explore"
Node: dcid:governmentStatisticalServiceCode
typeOf: schema:Property
name: "governmentStatisticalServiceCode"
description: "Government Statistical Service (GSS) codes are nine-character geocodes maintained by the United Kingdom's Office for National Statistics to represent a wide range of geographical areas of the UK, for use in tabulating census and other statistical data. The first three characters of the GSS code indicate the level of geography, and the six digits following define the individual unit."
descriptionUrl: "https://en.wikipedia.org/wiki/GSS_coding_system"
Node: dcid:PinCodeArea
typeOf: schema:Class
subClassOf: schema:AdministrativeArea
name: "PinCodeArea"
description: "Postal delivery area representations of India Post."
Node: dcid:pinCode
typeOf: schema:Property
name: "pinCode"
description: "PIN code is a six digit code in Indian postal code system used by India Post."
domainIncludes: schema:Place
rangeIncludes: schema:Text
Node: dcid:administrativeCapital
name: "administrativeCapital"
typeOf: schema:Property
description: "The municipality exercising primary status in a country, state, province, or other administrative region, usually as its seat of government."
descriptionUrl: "https://en.wikipedia.org/wiki/Capital_city"
rangeIncludes: schema:City, schema:Town
domainIncludes: schema:AdministrativeArea
Node: rentAsked
dcid: "rentAsked"
name: "rentAsked"
typeOf: schema:Property
Node: timezone
dcid: "timezone"
typeOf: schema:Property
name: "timezone"
rangeIncludes: schema:Text
domainIncludes: schema:AdministrativeArea
Node: unweightedSampleCountOfThePopulation
dcid: "unweightedSampleCountOfThePopulation"
name: "unweightedSampleCountOfThePopulation"
typeOf: schema:Property
Node: populationMember
dcid: "populationMember"
rangeIncludes: schema:Thing
typeOf: schema:Property
name: "populationMember"
domainIncludes: schema:StatisticalPopulation
Node: freebaseId
dcid: "freebaseId"
typeOf: schema:Property
domainIncludes: schema:Thing
rangeIncludes: schema:Text
name: "freebaseId"
Node: Project
dcid: "Project"
subClassOf: schema:Organization
typeOf: schema:Class
description: "An enterprise (potentially individual but typically collaborative), planned to achieve a particular aim. Use properties from Organization, subOrganization/parentOrganization to indicate project sub-structures"
descriptionUrl: "https://metacpan.org/pod/SemanticWeb::Schema::Project"
name: "Project"
Node: duration
dcid: "duration"
typeOf: schema:Property
domainIncludes: schema:Observation
name: "duration"
Node: schoolingDuration
dcid: "schoolingDuration"
typeOf: schema:Property
rangeIncludes: dcs:QuantityRange
domainIncludes: schema:Student
name: "schoolingDuration"
Node: age
dcid: "age"
name: "age"
typeOf: schema:Property
rangeIncludes: dcs:QuantityRange, schema:Number, dcs:AgeStatusEnum, dcs:SDG_AgeEnum
domainIncludes: schema:Person, schema:Organization, schema:Household
Node: employmentStatus
dcid: "employmentStatus"
typeOf: schema:Property
name: "employmentStatus"
domainIncludes: schema:Person, schema:Household
rangeIncludes: dcs:EmploymentStatusEnum, dcs:EmploymentEnum
Node: geoNamesId
dcid: "geoNamesId"
typeOf: schema:Property
rangeIncludes: schema:Text
name: "geoNamesId"
domainIncludes: schema:Thing
Node: dcid:observationPeriod
name: "observationPeriod"
typeOf: schema:Property
domainIncludes: schema:Observation, schema:StatVarObservation
rangeIncludes: schema:Text
description: "The length of time an Observation took place over. The format follows `P[0-9]*[Y|M|D|h|m|s]`. For example, P1Y is Period 1 Year, P3M is Period 3 Months, P3h is Period 3 hours."
Node: dcid:accumulationPeriod
name: "accumulationPeriod"
typeOf: schema:Property
domainIncludes: schema:Observation, schema:StatVarObservation
rangeIncludes: schema:Quantity
description: "The length of time an Observation covers. Observation does not happen throughout that time. For example, [2 dcs:Month] means that a value includes accumulation of the previous 2 months."
Node: housingUnits
dcid: "housingUnits"
typeOf: schema:Property
name: "housingUnits"
Node: dcid:mid
typeOf: schema:Property
domainIncludes: schema:Thing
name: "mid"
rangeIncludes: schema:Text
Node: dcid
dcid: "dcid"
typeOf: schema:Property
domainIncludes: schema:Thing
name: "dcid"
rangeIncludes: schema:Text
Node: dcid:placeId
typeOf: schema:Property
domainIncludes: schema:Place
name: "placeId"
rangeIncludes: schema:Text
Node: dcid:kmlCoordinates
typeOf: schema:Property
name: "kmlCoordinates"
description: "Geographical boundary of a place in Keyhole Markup Language (KML)."
domainIncludes: schema:Place
rangeIncludes: schema:Text
Node: dcid:geoJsonCoordinates
typeOf: schema:Property
name: "geoJsonCoordinates"
description: "Geographical boundary of a place in GeoJSON format."
domainIncludes: schema:Place
rangeIncludes: schema:Text
Node: dcid:geoJsonCoordinatesDP1
typeOf: schema:Property
name: "geoJsonCoordinatesDP1"
description: "Simplified geographical boundary of a place in GeoJSON format. Created by running the Ramer-Douglas-Peucker algorithm on geoJsonCoordinates with epsilon of 0.01."
domainIncludes: schema:Place
rangeIncludes: schema:Text
Node: dcid:geoJsonCoordinatesDP2
typeOf: schema:Property
name: "geoJsonCoordinatesDP2"
description: "Simplified geographical boundary of a place in GeoJSON format. Created by running the Ramer-Douglas-Peucker algorithm on geoJsonCoordinates with epsilon of 0.03."
domainIncludes: schema:Place
rangeIncludes: schema:Text
Node: dcid:geoJsonCoordinatesDP3
typeOf: schema:Property
name: "geoJsonCoordinatesDP3"
description: "Simplified geographical boundary of a place in GeoJSON format. Created by running the Ramer-Douglas-Peucker algorithm on geoJsonCoordinates with epsilon of 0.05."
domainIncludes: schema:Place
rangeIncludes: schema:Text
Node: dcid:geoJsonCoordinatesUN
typeOf: schema:Property
name: "geoJsonCoordinatesUN"
description: "Geographical boundary of a place in GeoJSON format from United Nations."
domainIncludes: schema:Place
rangeIncludes: schema:Text
Node: dcid:geoJsonCoordinatesUNDP1
typeOf: schema:Property
name: "geoJsonCoordinatesUNDP1"
description: "Simplified geographical boundary of a place in GeoJSON format. Created by running the Ramer-Douglas-Peucker algorithm on geoJsonCoordinates with epsilon of 0.01."
domainIncludes: schema:Place
rangeIncludes: schema:Text
Node: dcid:geoJsonCoordinatesUNDP2
typeOf: schema:Property
name: "geoJsonCoordinatesUNDP2"
description: "Simplified geographical boundary of a place in GeoJSON format. Created by running the Ramer-Douglas-Peucker algorithm on geoJsonCoordinates with epsilon of 0.03."
domainIncludes: schema:Place
rangeIncludes: schema:Text
Node: dcid:geoJsonCoordinatesUNDP3
typeOf: schema:Property
name: "geoJsonCoordinatesUNDP3"
description: "Simplified geographical boundary of a place in GeoJSON format. Created by running the Ramer-Douglas-Peucker algorithm on geoJsonCoordinates with epsilon of 0.05."
domainIncludes: schema:Place
rangeIncludes: schema:Text
Node: CriminalActivities
dcid: "CriminalActivities"
typeOf: schema:Class
name: "CriminalActivities"
subClassOf: schema:Intangible
description: "Refers to an offense which is a breach of the criminal laws."
Node: dcid:CriminalIncidents
typeOf: schema:Class
name: "CriminalIncidents"
subClassOf: schema:Intangible
description: "A criminal incident is defined as one or more offenses committed by the same offender, or group of offenders acting in concert, at the same time and place."
descriptionUrl: "https://ucr.fbi.gov/nibrs/2015/resource-pages/incidents-and-offenses-2015_final.pdf"
Node: dcid:HateCrimeIncidents
typeOf: schema:Class
name: "HateCrimeIncidents"
subClassOf: dcs:CriminalIncidents
description: "A hate crime is a criminal offense against a person or property motivated in whole or in part by an offender's bias against a race, religion, disability, sexual orientation, ethnicity, gender, or gender identity."
descriptionUrl: "https://www.fbi.gov/investigate/civil-rights/hate-crimes"
Node: location
dcid: "location"
typeOf: schema:Property
domainIncludes: schema:StatisticalPopulation, schema:Observation, schema:Event
name: "location"
Node: workerPopulation
dcid: "workerPopulation"
name: "workerPopulation"
typeOf: schema:Property
Node: minValue
dcid: "minValue"
typeOf: schema:Property
domainIncludes: schema:Observation
name: "minValue"
Node: wikidataId
dcid: "wikidataId"
domainIncludes: schema:Thing
typeOf: schema:Property
name: "wikidataId"
rangeIncludes: schema:Text
Node: crimeType
dcid: "crimeType"
domainIncludes: schema:CriminalActivities, dcs:CriminalIncidents
rangeIncludes: schema:CrimeTypeEnum, schema:ViolentCrimeTypeEnum
typeOf: schema:Property
name: "crimeType"
# TODO: Remove this once related statvars are updated to use HateCrimeIncidents
Node: dcid:isHateCrime
name: "isHateCrime"
typeOf: schema:Property
domainIncludes: dcs:CriminalActivities, dcs:CriminalIncidents
rangeIncludes: schema:Boolean
Node: dcid:biasMotivation
name: "biasMotivation"
typeOf: schema:Property
domainIncludes: dcs:CriminalActivities, dcs:HateCrimeIncidents
rangeIncludes: schema:Property, dcs:BiasMotivationEnum
Node: dcid:sexualOrientation
name: "sexualOrientation"
typeOf: schema:Property
domainIncludes: schema:Person, dcs:CriminalActivities, dcs:CriminalIncidents
rangeIncludes: dcs:SexualOrientationEnum
description: "The term for a person's physical, romantic, and/or emotional attraction to members of the same and/or opposite sex, including lesbian, gay, bisexual, and heterosexual (straight) individuals."
descriptionUrl: "https://www.fbi.gov/file-repository/ucr/ucr-hate-crime-data-collection-guidelines-training-manual-02272015.pdf/view"
Node: dcid:offenderType
name: "offenderType"
typeOf: schema:Property
domainIncludes: dcs:CriminalActivities, dcs:CriminalIncidents
rangeIncludes: dcs:OffenderTypeEnum
Node: dcid:ethnicity
name: "ethnicity"
typeOf: schema:Property
domainIncludes: schema:Person, dcs:CriminalActivities, dcs:CriminalIncidents, dcs:Household
rangeIncludes: dcs:EthnicityEnum, dcs:RaceCodeEnum
Node: dcid:offenderRace
name: "offenderRace"
typeOf: schema:Property
domainIncludes: dcs:CriminalActivities, dcs:CriminalIncidents
rangeIncludes: dcs:RaceCodeEnum
Node: dcid:offenderEthnicity
name: "offenderEthnicity"
typeOf: schema:Property
domainIncludes: dcs:CriminalActivities, dcs:CriminalIncidents
rangeIncludes: dcs:EthnicityEnum
Node: dcid:offenderAge
name: "offenderAge"
typeOf: schema:Property
domainIncludes: dcs:CriminalIncidents
rangeIncludes: dcs:QuantityRange
Node: dcid:victimAge
name: "victimAge"
typeOf: schema:Property
domainIncludes: dcs:CriminalIncidents
rangeIncludes: dcs:QuantityRange
Node: dcid:targetedRace
name: "targetedRace"
typeOf: schema:Property
domainIncludes: dcs:CriminalActivities, dcs:HateCrimeIncidents
rangeIncludes: dcs:RaceCodeEnum
Node: dcid:targetedGender
name: "targetedGender"
typeOf: schema:Property
domainIncludes: dcs:CriminalActivities, dcs:HateCrimeIncidents
rangeIncludes: schema:GenderType
Node: dcid:targetedEthnicity
name: "targetedEthnicity"
typeOf: schema:Property
domainIncludes: dcs:CriminalActivities, dcs:HateCrimeIncidents
rangeIncludes: dcs:EthnicityEnum
Node: dcid:targetedReligion
name: "targetedReligion"
typeOf: schema:Property
domainIncludes: dcs:CriminalActivities, dcs:HateCrimeIncidents
rangeIncludes: dcs:ReligionEnum
Node: dcid:targetedDisabilityStatus
name: "targetedDisabilityStatus"
typeOf: schema:Property
domainIncludes: dcs:CriminalActivities, dcs:HateCrimeIncidents
rangeIncludes: dcs:USC_DisabilityStatusEnum
Node: dcid:targetedSexualOrientation
name: "targetedSexualOrientation"
typeOf: schema:Property
domainIncludes: dcs:CriminalActivities, dcs:HateCrimeIncidents
rangeIncludes: dcs:SexualOrientationEnum
Node: victimType
dcid: "victimType"
name: "victimType"
typeOf: schema:Property
rangeIncludes: dcs:VictimTypeEnum, schema:Class
domainIncludes: dcs:CriminalActivities, dcs:CriminalIncidents
Node: locationOfCrime
dcid: "locationOfCrime"
name: "locationOfCrime"
typeOf: schema:Property
rangeIncludes: dcs:LocationOfCrimeEnum, schema:Class
domainIncludes: dcs:CriminalActivities, dcs:CriminalIncidents
Node: voterStatus
dcid: "voterStatus"
name: "voterStatus"
typeOf: schema:Property
rangeIncludes: dcs:VoterStatusEnum
domainIncludes: schema:Person
Node: maxValue
dcid: "maxValue"
domainIncludes: schema:Observation
typeOf: schema:Property
name: "maxValue"
Node: tenure
dcid: "tenure"
name: "tenure"
typeOf: schema:Property
Node: vacancyStatus
dcid: "vacancyStatus"
typeOf: schema:Property
name: "vacancyStatus"
Node: ancestry
dcid: "ancestry"
name: "ancestry"
typeOf: schema:Property
Node: area
dcid: "area"
name: "area"
typeOf: schema:Property
domainIncludes: schema:AdministrativeArea, schema:LandCover
rangeIncludes: schema:Number
Node: countValue
dcid: "countValue"
typeOf: schema:Property
domainIncludes: schema:Observation
rangeIncludes: schema:Integer
name: "countValue"
Node: value
dcid: "value"
typeOf: schema:Property
name: "value"
domainIncludes: schema:Quantity, dcs:QuantitativeValue
rangeIncludes: schema:Text, schema:Enumeration, schema:Number
Node: medianValue
dcid: "medianValue"
rangeIncludes: schema:Number
name: "medianValue"
typeOf: schema:Property
domainIncludes: schema:Observation
Node: dcid:stdDeviationValue
typeOf: schema:Property
name: "stdDeviationValue"
domainIncludes: dcs:StatVarObservation
rangeIncludes: dcs:Number
description: "A measure of the amount of variation or dispersion of a set of values"
descriptionUrl: "https://en.wikipedia.org/wiki/Standard_deviation"
Node: dcid:skewnessValue
typeOf: schema:Property
name: "skewnessValue"
domainIncludes: dcs:StatVarObservation
rangeIncludes: dcs:Number
description: "A measure of the asymmetry of the probability distribution of a real-valued random variable about its mean"
descriptionUrl: "https://en.wikipedia.org/wiki/Skewness"
Node: dcid:kurtosisValue
typeOf: schema:Property
name: "kurtosisValue"
domainIncludes: dcs:StatVarObservation
rangeIncludes: dcs:Number
description: "A measure of the 'tailedness' of the probability distribution of a real-valued random variable"
descriptionUrl: "https://en.wikipedia.org/wiki/Kurtosis"
Node: dcid:decileValue
typeOf: schema:Property
name: "decileValue"
domainIncludes: schema:StatVarObservation
rangeIncludes: schema:Number
description: "Each of ten equal groups into which a population can be divided according to the distribution of values of a particular variable"
Node: dcid:rankingValue
typeOf: schema:Property
name: "rankingValue"
domainIncludes: schema:StatVarObservation
rangeIncludes: schema:Number
description: "The ordinal value within a some data when the values are sorted."
descriptionUrl: "https://en.wikipedia.org/wiki/Ranking_(statistics)"
Node: dcid:sampleSize
typeOf: schema:Property
name: "sampleSize"
domainIncludes: schema:Observation
rangeIncludes: schema:Number
Node: employment
dcid: "employment"
typeOf: schema:Property
name: "employment"
domainIncludes: schema:Person
rangeIncludes: dcs:EmploymentEnum
Node: dcid:count
rangeIncludes: schema:Integer
domainIncludes: schema:StatisticalPopulation
typeOf: schema:Property
name: "count"
Node: dcid:cumulativeCount
rangeIncludes: schema:Integer
domainIncludes: schema:StatisticalPopulation, schema:FoodBasket, schema:Household
typeOf: schema:Property
name: "cumulativeCount"
description: "A running count of all instances that have satisfied the constraints of the Statistical Population."
Node: dcid:incrementalCount
rangeIncludes: schema:Integer
domainIncludes: schema:StatisticalPopulation, dcs:Person
typeOf: schema:Property
name: "incrementalCount"
description: "A count of new instances satisfying the constraints of the Statistical Population since the last observation was made."
Node: dcid:daysSinceLastReportedCase
rangeIncludes: schema:Integer
domainIncludes: dcs:MedicalConditionIncident
typeOf: schema:Property
name: "daysSinceLastReportedCase"
description: "Number of days since the last reported case."
Node: ElectionCampaign
dcid: "ElectionCampaign"
subClassOf: schema:Project
description: "An effort led by candidates of elections in order to be elected to hold public office like that of House of Representatives, President, etc"
typeOf: schema:Class
name: "ElectionCampaign"
Node: dcid:beaProduct
description: "Products and Services designated by US Bureau of Economic Analysis, of consumer spending (such as food, clothing, shelter, and services) that people buy for day-to-day living"
dcid: "beaProduct"
name: "beaProduct"
rangeIncludes: dcid:EconomicProductEnum
typeOf: dcid:Property
domainIncludes: schema:Product
Node: dcid:grossDomesticProduct
typeOf: schema:Property
name: "grossDomesticProduct"
rangeIncludes: schema:MonetaryAmount
domainIncludes: schema:AdministrativeArea, dcs:NAICSEnum
description: "Gross domestic product (GDP) is the monetary value of all the finished goods and services produced within a place in a specific time period"
Node: dcid:growthRate
typeOf: schema:Property
name: "growthRate"
rangeIncludes: schema:Number
domainIncludes: schema:Observation
description: "Growth rate refers to percentage change of a specific variable within a time period"
Node: dcid:USCEstablishment
typeOf: schema:Class
subClassOf: schema:Organization
name: "USCEstablishment"
description: "An establishment or business as defined by US Census Bureau, which is ata fixed physical location or permanent structure, where some form of business activity is conducted. A single firm or a company operating in multiple locations can have many establishments"
Node: dcid:USCFirm
typeOf: schema:Class
subClassOf: schema:Organization
name: "USCFirm"
description: "A firm is typically an organizational entity, comparable to the familiar use of the word company. A firm can exist in one location or have many locations and can have multiple establishments."
Node: dcid:USCWorker
typeOf: schema:Class
subClassOf: schema:Person
name: "USCWorker"
description: "An employee or worker as defined by US Census Bureau that excludes self-employed individuals, employees of private households, railroad employees, agricultural production employees and most government employees"
Node: dcid:Child
typeOf: schema:Class
subClassOf: schema:Person
name: "Child"
Node: dcid:childBirthOrder
name: "childBirthOrder"
description: "The birth order of the child.A first-order birth is the first child born to parents, second-order is the second, and so on."
rangeIncludes: dcs:QuantityRange
typeOf: schema:Property
Node: DarwinCoreBiologicalSpecimen
dcid: "BiologicalSpecimen"
name: "BiologicalSpecimen"
typeOf: schema:Class
subClassOf: schema:Thing
description: "Biological Specimens facilitate the sharing of information about biological diversity by providing identifiers, labels, and definitions. The class definition is loosely based on the Darwin Core schema."
# EVENT for births
Node: BirthEvent
typeOf: schema:Class
subClassOf: schema:Event
dcid: "BirthEvent"
name: "BirthEvent"
description: "Birth"
Node: dcid:birthConductedBy
name: "birthConductedBy"
rangeIncludes: dcs:HealthWorkerEnum
typeOf: schema:Property
Node: dcid:postBirthCare
name: "postBirthCare"
rangeIncludes: dcs:PostBirthCareEnum
typeOf: schema:Property
Node: dcid:PostBirthCareEnum
typeOf: schema:Class
subClassOf: schema:Enumeration
name: "PostBirthCareEnum"
Node: dcid:ReceivedBirthCareWithin24Hour
typeOf: dcs:PostBirthCareEnum
name: "ReceivedBirthCareWithin24Hour"
# EXTENDING PROPERTIES OF BIRTHEVENT
Node: mothersAge
typeOf: schema:Property
dcid: "mothersAge"
name: "mothersAge"
rangeIncludes: schema:Number, schema:Text, dcs:QuantityRange
domainIncludes: schema:BirthEvent
description: "The age of the mother at the time of birth"
Node: dcid:mothersRace
typeOf: schema:Property
name: "mothersRace"
rangeIncludes: dcs:RaceCodeEnum, schema:Text
domainIncludes: schema:BirthEvent
description: "The race of the mother"
Node: dcid:mothersEducation
typeOf: schema:Property
name: "mothersEducation"
rangeIncludes: dcs:USC_EducationalAttainmentEnum, schema:Text
domainIncludes: schema:BirthEvent
description: "The highest level of education attained by the mother at the time of birth"
Node: dcid:mothersEthnicity
typeOf: schema:Property
name: "mothersEthnicity"
rangeIncludes: dcs:EthnicityEnum
domainIncludes: schema:BirthEvent
description: "The ethnicity of the mother"
Node: dcid:mothersNativity
typeOf: schema:Property
name: "mothersNativity"
rangeIncludes: dcs:NativityEnum
domainIncludes: schema:BirthEvent
description: "The nativity of the mother"
Node: dcid:mothersMaritalStatus