Skip to content

Commit 5074613

Browse files
authored
Add extra JSON-
1 parent 99d5d67 commit 5074613

1 file changed

Lines changed: 36 additions & 3 deletions

File tree

standard/clause_specification_text.adoc

Lines changed: 36 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -254,7 +254,7 @@ Example of a group describing a vector quantity:
254254
```
255255
where `"WIND_SPEED"` and `"WIND_DIR"` reference existing parameters in a CoverageJSON coverage or collection object by their short identifiers.
256256

257-
Example of a group describing uncertainty of a parameter:
257+
Example of a group describing uncertainty of a parameter by including the mean and standard deviation:
258258

259259
[%unnumbered%]
260260
```json
@@ -295,7 +295,7 @@ where `"SST_mean"` references the following parameter:
295295
}
296296
```
297297

298-
and `"SST_stddev"`:
298+
and `"SST_stddev"` references the following parameter:
299299

300300
[%unnumbered%]
301301
```json
@@ -953,6 +953,8 @@ Note that domain axis values and range values SHOULD NOT be exposed as linked da
953953

954954
Example:
955955

956+
In this example, additional semantics for the registered `dct` prefix are provided by stating that the `"dct:license"` member value in this document is an identifier and not just an unstructured string.
957+
956958
[%unnumbered%]
957959
```json
958960
{
@@ -969,7 +971,38 @@ Example:
969971
}
970972
```
971973

972-
In this example, additional semantics for the registered `dct` prefix are provided by stating that the `"dct:license"` member value in this document is an identifier and not just an unstructured string.
974+
Example:
975+
976+
In this example, extra attributes of the `Parameter` have been declared stating that the parameter is a more specific example in the context of a more general vocabulary. ** Note: not sure about the `statisticalMeasure` attribute and why square brackets?**
977+
978+
[%unnumbered%]
979+
```json
980+
{
981+
"@context": [
982+
"https://covjson.org/context.jsonld",
983+
{
984+
"skos": "http://www.w3.org/2004/02/skos/core",
985+
}
986+
],
987+
"type" : "Parameter",
988+
"observedProperty" : {
989+
"label" : {
990+
"en": "Sea surface temperature daily mean"
991+
},
992+
"statisticalMeasure": "http://www.uncertml.org/statistics/mean",
993+
"narrower": ["http://vocab.nerc.ac.uk/standard_name/sea_surface_temperature/"]
994+
},
995+
"unit" : {
996+
"label": {
997+
"en": "Kelvin"
998+
},
999+
"symbol": {
1000+
"value": "K",
1001+
"type": "http://www.opengis.net/def/uom/UCUM/"
1002+
}
1003+
}
1004+
}
1005+
```
9731006

9741007
[[resolving_domain_and_range_urls]]
9751008
//## 10. Resolving domain and range URLs

0 commit comments

Comments
 (0)