Skip to content

Commit 4305959

Browse files
authored
Merge pull request #235 from ESIPFed/develop
v1.3.1
2 parents 4c956fa + 59fbfc8 commit 4305959

File tree

3 files changed

+17
-19
lines changed

3 files changed

+17
-19
lines changed

GOVERNANCE.md

-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@ We will leverage the [Earth Science Information Partners - Science on Schema.org
55
Meetings are scheduled twice monthly:
66

77
- When:
8-
- 1st Monday at 5pmET
98
- 4th Thursday, 2:30pmET
109
- Where: Telecons via Zoom
1110
- Connection: https://us02web.zoom.us/j/85680809640?pwd=a09zQTl2eFd6NnpoRkRxNHlDdFN0dz09

README.md

-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,6 @@ Science on Schema.org (SOSO) releases are archived on Zenodo, and the current re
3030
This guidance has been created by members of the ESIP [science-on-schema.org cluster](http://wiki.esipfed.org/index.php/Schema.org_Cluster). The cluster will be seeking endorsement across all members of ESIP, and in the meantime is releasing a series of progressively more mature guidance documents for the community. Your feedback and contributions are welcome. The cluster meets twice monthly, and all are welcome:
3131

3232
- When:
33-
- 1st Monday at 5pm ET
3433
- 4th Thursday, 2:30pm ET
3534
- Where: Telecons via Zoom
3635
- Connection: https://us02web.zoom.us/j/84043422486?pwd=bGM4YkFyMkFGSW1FZG5yaFRNaGNvdz09

guides/Dataset.md

+17-17
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
- [Handling multiple locations](#handling-multiple-locations)
2525
- [Spatial Reference Systems](#spatial-reference-systems)
2626
- [Roles of People](#roles-of-people)
27-
- [Publisher / Provider](#publisher-provider)
27+
- [Publisher and Provider](#publisher-and-provider)
2828
- [Funding](#funding)
2929
- [License](#license)
3030
- [Checksum](#checksum)
@@ -316,7 +316,7 @@ Or as a URL:
316316
}
317317
</pre>
318318

319-
However, if the identifier is a persistent identifier such as a DOI, ARK, or accession nmumber, then the best way to represent these identifiers is by using a [schema:PropertyValue](https://schema.org/PropertyValue). The PropertyValue allows for more information about the identifier to be represented such as the identifier type or scheme, the identifier's value, it's URL and more. Because of this flexibility, we recommend using PropertyValue for all identifier types.
319+
However, if the identifier is a persistent identifier such as a DOI, ARK, or accession number, then the best way to represent these identifiers is by using a [schema:PropertyValue](https://schema.org/PropertyValue). The PropertyValue allows for more information about the identifier to be represented such as the identifier type or scheme, the identifier's value, it's URL and more. Because of this flexibility, we recommend using PropertyValue for all identifier types.
320320

321321
[schema:Dataset](https://schema.org/Dataset) also defines a field for the [schema:citation](https://schema.org/citation) as either text or a [schema:CreativeWork](https://schema.org/CreativeWork). To provide citation text:
322322

@@ -722,7 +722,7 @@ These examples can be found in one JSON-LD file at [temporalCoverage.jsonld](/ex
722722

723723
"@type": "Dataset",
724724
"description": "Eruptive activity at Mt. St. Helens, Washington, March 1980 - January 1981",
725-
<strong> "temporalCoverage": ["1980-03-27T19:36:00/1981-01-03T00:00:00Z",
725+
<strong> "temporalCoverage": [
726726
{
727727
"@type": "time:ProperInterval",
728728
"time:hasBeginning": {
@@ -737,7 +737,7 @@ These examples can be found in one JSON-LD file at [temporalCoverage.jsonld](/ex
737737
}</strong>
738738
</pre>
739739

740-
2. The dataset's temporalCoverage is described using Instant, inTimePosition, hasTRS, and numericPosition elements for a single geological date/age without uncertainties from [OWL Time](http://www.w3.org/2006/time). Use a decimal value with appropriate timescale temporal reference system (TRS) and date/age unit abbreviation. Also provide a text form of the temporalCoverage (here "760 ka"). The human readable description can be found in the description field: "Eruption of Bishop Tuff, about 760,000 years ago".
740+
2. The dataset's temporalCoverage is described using Instant, inTimePosition, hasTRS, and numericPosition elements for a single geological date/age without uncertainties from [OWL Time](http://www.w3.org/2006/time). Use a decimal value with appropriate timescale temporal reference system (TRS) and date/age unit abbreviation. The human readable description can be found in the description field: "Eruption of Bishop Tuff, about 760,000 years ago".
741741

742742
*Example*:
743743

@@ -750,7 +750,7 @@ These examples can be found in one JSON-LD file at [temporalCoverage.jsonld](/ex
750750
},
751751
"@type": "Dataset",
752752
"description": "Eruption of Bishop Tuff, about 760,000 years ago",
753-
<strong>"temporalCoverage": ["760 ka",
753+
<strong> "temporalCoverage": [
754754
{
755755
"@type": "time:Instant",
756756
"time:inTimePosition": {
@@ -772,7 +772,7 @@ These examples can be found in one JSON-LD file at [temporalCoverage.jsonld](/ex
772772
}
773773
</pre>
774774

775-
3. The dataset's temporalCoverage is described using the Instant, inTimePosition, TimePosition, numericPosition from [OWL Time](http://www.w3.org/2006/time) with a geological date/age with uncertainties. Use a decimal value with appropriate timescale temporal reference system(TRS), date/age unit abbreviation, the uncertainty value and specify at what sigma. Also provide a text form of the temporalCoverage (here "4.404 +/-+/- 0.008 Ga"). "+/-+/-" indicates the uncertainty is given at 2-sigma. The human readable description can be found in the description field: "Very old zircons from the Jack Hills formation Australia 4.404 +- 0.008 Ga (2-sigma)".
775+
3. The dataset's temporalCoverage is described using the Instant, inTimePosition, TimePosition, numericPosition from [OWL Time](http://www.w3.org/2006/time) with a geological date/age with uncertainties. Use a decimal value with appropriate timescale temporal reference system(TRS), date/age unit abbreviation, the uncertainty value and specify at what sigma. The human readable description can be found in the description field: "Very old zircons from the Jack Hills formation Australia 4.404 +- 0.008 Ga (2-sigma)".
776776

777777
*Example*:
778778

@@ -786,7 +786,7 @@ These examples can be found in one JSON-LD file at [temporalCoverage.jsonld](/ex
786786
},
787787
"@type": "Dataset",
788788
"description": "Very old zircons from the Jack Hills formation Australia 4.404 +- 0.008 Ga (2-sigma)",
789-
<strong>"temporalCoverage": ["4.404 +/-+/- 0.008 Ga",
789+
<strong> "temporalCoverage": [
790790
{
791791
"@type": "time:Instant",
792792
"time:inTimePosition": {
@@ -816,7 +816,7 @@ These examples can be found in one JSON-LD file at [temporalCoverage.jsonld](/ex
816816
}
817817
</pre>
818818

819-
4. The dataset's temporalCoverage is described using the ProperInterval, hasBeginning, hasEnd, Instant, inTimePosition, TimePosition, and hasTRS elements from [OWL Time](http://www.w3.org/2006/time) with a geological date/age range with uncertainties. Use a decimal value with appropriate timescale temporal reference system(TRS), date/age unit abbreviation, uncertainty value and at what sigma. Also provide a text form of the temporalCoverage (here "17.1 +/- 0.15 to 15.7 +/- 0.14 Ma"). "+/-" indicates the uncertainty is given at 1-sigma. The human readable description can be found in the description field: "Isotopic ages determined at the bottom and top of a stratigraphic section in the Columbia River Basalts".
819+
4. The dataset's temporalCoverage is described using the ProperInterval, hasBeginning, hasEnd, Instant, inTimePosition, TimePosition, and hasTRS elements from [OWL Time](http://www.w3.org/2006/time) with a geological date/age range with uncertainties. Use a decimal value with appropriate timescale temporal reference system(TRS), date/age unit abbreviation, uncertainty value and at what sigma. The human readable description can be found in the description field: "Isotopic ages determined at the bottom and top of a stratigraphic section in the Columbia River Basalts".
820820

821821
*Example*:
822822

@@ -832,7 +832,7 @@ These examples can be found in one JSON-LD file at [temporalCoverage.jsonld](/ex
832832
},
833833
"@type": "Dataset",
834834
"description": "Isotopic ages determined at the bottom and top of a stratigraphic section in the Columbia River Basalts",
835-
<strong>"temporalCoverage": ["17.1 +/- 0.15 to 15.7 +/- 0.14 Ma",
835+
<strong> "temporalCoverage": [
836836
{
837837
"@type": "time:ProperInterval",
838838
"time:hasBeginning": {
@@ -892,7 +892,7 @@ These examples can be found in one JSON-LD file at [temporalCoverage.jsonld](/ex
892892
}
893893
</pre>
894894

895-
5. The dataset's temporalCoverage is described using the Instant, inTimePosition, TimePosition, and hasTRS elements from [OWL Time](http://www.w3.org/2006/time) with a archeological date/age range with uncertainties. Use a decimal value with appropriate timescale temporal reference system(TRS), date/age unit abbreviation, the older and younger uncertainty values and at what sigma. Also provide a text form of the temporalCoverage (here "2640 +130 -80 BP-CAL (INTCAL20)"). The human readable description can be found in the description field: "Age of a piece of charcoal found in a burnt hut at an archeological site in Kenya carbon dated at BP Calibrated of 2640 +130 -80 (one-sigma) using the INTCAL20 carbon dating curve."
895+
5. The dataset's temporalCoverage is described using the Instant, inTimePosition, TimePosition, and hasTRS elements from [OWL Time](http://www.w3.org/2006/time) with a archeological date/age range with uncertainties. Use a decimal value with appropriate timescale temporal reference system(TRS), date/age unit abbreviation, the older and younger uncertainty values and at what sigma. The human readable description can be found in the description field: "Age of a piece of charcoal found in a burnt hut at an archeological site in Kenya carbon dated at BP Calibrated of 2640 +130 -80 (one-sigma) using the INTCAL20 carbon dating curve."
896896

897897
*Example:*
898898

@@ -907,7 +907,7 @@ These examples can be found in one JSON-LD file at [temporalCoverage.jsonld](/ex
907907
},
908908
"@type": "Dataset",
909909
"description": "Age of a piece of charcoal found in a burnt hut at an archeological site in Kenya carbon dated at BP Calibrated of 2640 +130 -80 (one-sigma) using the INTCAL20 carbon dating curve.",
910-
<strong>"temporalCoverage": ["2640 +130 -80 BP-CAL (INTCAL20)",
910+
<strong> "temporalCoverage": [
911911
{
912912
"@type": "time:Instant",
913913
"time:inTimePosition": {
@@ -941,7 +941,7 @@ These examples can be found in one JSON-LD file at [temporalCoverage.jsonld](/ex
941941
}
942942
</pre>
943943

944-
6. The dataset's temporalCoverage is described using the Instant, TimePosition, inTimePosition, NominalPosition, Interval, hasBeginning, hasEnd, and hasTRS elements from [OWL Time](http://www.w3.org/2006/time). With temporal coverage that is a named time interval from a geologic time scale, provide numeric positions of the beginning and end for interoperability. Providing the numeric values is only critical, but still recommended, if the TRS for the nominalPosition is not the [International Chronostratigraphic Chart](https://stratigraphy.org/chart).
944+
6. The dataset's temporalCoverage is described using the Instant, TimePosition, inTimePosition, NominalPosition, Interval, hasBeginning, hasEnd, and hasTRS elements from [OWL Time](http://www.w3.org/2006/time). With temporal coverage that is a named time interval from a geologic time scale, provide numeric positions of the beginning and end for interoperability. Providing the numeric values is only critical, but still recommended, if the TRS for the nominalPosition is not the [International Chronostratigraphic Chart](https://stratigraphy.org/chart). In this example the temporalCoverage is described in two ways: by the named interval Bartonian and by defining a time interval using numerical beginning and end values.
945945

946946
*Example:*
947947

@@ -958,7 +958,7 @@ These examples can be found in one JSON-LD file at [temporalCoverage.jsonld](/ex
958958
},
959959
"@type": "Dataset",
960960
"description": "Temporal position expressed with a named time ordinal era from [International Chronostratigraphic Chart](https://stratigraphy.org/chart):",
961-
<strong>"temporalCoverage": ["Bartonian",
961+
<strong> "temporalCoverage": [
962962
{
963963
"@type": "time:Instant",
964964
"time:inTimePosition": {
@@ -1028,7 +1028,7 @@ These examples can be found in one JSON-LD file at [temporalCoverage.jsonld](/ex
10281028
},
10291029
"@type": "Dataset",
10301030
"description": "Temporal position expressed with an interval bounded by named time ordinal eras from [International Chronostratigraphic Chart](https://stratigraphy.org/chart). NumericPositions not included, expect clients can lookup bounds for ISC nominal positions:",
1031-
<strong>"temporalCoverage": ["Triassic to Jurassic", {
1031+
<strong> "temporalCoverage": [{
10321032
"@type": "time:ProperInterval",
10331033
"time:hasBeginning": {
10341034
"@type": "time:Instant",
@@ -1386,7 +1386,7 @@ Notice that since Uta Passow has already been defined in the document with `"@id
13861386

13871387
Back to [top](#top)
13881388

1389-
### Publisher / Provider
1389+
### Publisher and Provider
13901390

13911391
![Publisher/Provider](/assets/diagrams/dataset/dataset_publisher-provider.svg "Dataset - Publisher/Provider")
13921392

@@ -1574,14 +1574,14 @@ Here's an example that provides two different checksum values for a single digit
15741574
{
15751575
"@type": "spdx:Checksum",
15761576
"spdx:checksumValue": "39ae639d33cea4a287198bbcdca5e6856e6607a7c91dc4c54348031be2ad4c51",
1577-
"spdx:checksumAlgorithm": {
1577+
"spdx:algorithm": {
15781578
"@id": "spdx:checksumAlgorithm_sha256"
15791579
}
15801580
},
15811581
{
15821582
"@type": "spdx:Checksum",
15831583
"spdx:checksumValue": "65d3616852dbf7b1a6d4b53b00626032",
1584-
"spdx:checksumAlgorithm": {
1584+
"spdx:algorithm": {
15851585
"@id": "spdx:checksumAlgorithm_md5"
15861586
}
15871587
}

0 commit comments

Comments
 (0)