Skip to content

Commit 7db5089

Browse files
authored
Update clause_specification_text.adoc
changed text to refer to future location of default JSON-LD context file
1 parent d93dff6 commit 7db5089

File tree

1 file changed

+8
-4
lines changed

1 file changed

+8
-4
lines changed

standard/clause_specification_text.adoc

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -907,7 +907,9 @@ Custom types MAY be used with the following members:
907907
- `"type"` in unit symbol objects
908908
- `"type"` within custom members that have an object as value
909909

910-
The custom value of those members SHOULD be either an absolute URI or a compact URI. If a compact URI is used, then the prefix SHOULD be registered at <https://www.opengis.net/def/namespaces>.
910+
The prefix SHOULD be registered at <https://www.opengis.net/def/namespaces> which in the example above would be `dct = http://purl.org/dc/terms/`. In CoverageJSON V1.0.0 and earlier, prefixes were defined by the community register at <https://covjson.org/prefixes/>.
911+
912+
The custom value of those members SHOULD be either an absolute URI or a compact URI. If a compact URI is used, then the prefix SHOULD be registered at <https://www.opengis.net/def/namespaces>.
911913

912914
Example of a custom unit symbol type using an absolute URI:
913915

@@ -945,7 +947,9 @@ Example of a custom reference system type using a compact URI:
945947
//## 9. JSON-LD
946948
=== JSON-LD
947949

948-
If no JSON-LD context is given, then the default context `https://covjson.org/context.jsonld` SHALL be assumed. Note that this context includes https://www.opengis.net/def/namespaces[registered namespace prefixes] and MAY be updated in a backwards-compatible way as the format evolves.
950+
If no JSON-LD context is given, then the default context `https://schemas.opengis.net/covjson/1.0/context.jsonld` SHALL be assumed. Note that this context includes https://www.opengis.net/def/namespaces[registered namespace prefixes] and MAY be updated in a backwards-compatible way as the format evolves.
951+
952+
In CoverageJSON V1.0.0 and earlier, the JSON-LD context was defined by the community site at <https://covjson.org/context.jsonld>
949953

950954
Additional semantics not provided by the default context MAY be provided by specifying an explicit `"@context"` member in the root of a CoverageJSON document. The value of that member MUST be an array where the first element is the default context URL. Any additional context definitions SHALL NOT override definitions of the default context, except when the definition is identical.
951955

@@ -963,7 +967,7 @@ In this example, additional semantics for the registered `dct` prefix are provid
963967
```json
964968
{
965969
"@context": [
966-
"https://covjson.org/context.jsonld",
970+
"https://schemas.opengis.net/covjson/1.0/context.jsonld",
967971
{
968972
"dct": "http://purl.org/dc/terms/",
969973
"dct:license": { "@type": "@id" }
@@ -982,7 +986,7 @@ In this example, extra attributes of the `Parameter` have been declared stating
982986
[%unnumbered%]
983987
```json
984988
{
985-
"@context": [ "https://covjson.org/context.jsonld" ],
989+
"@context": [ "https://schemas.opengis.net/covjson/1.0/context.jsonld" ],
986990
"type" : "Parameter",
987991
"observedProperty" : {
988992
"label" : {

0 commit comments

Comments
 (0)