Skip to content

Commit

Permalink
add public domain licensing example, fix typos (#189)
Browse files Browse the repository at this point in the history
* Update clause_7_normative_text.adoc

* Update PER_data_policy.adoc

* Update PER_data_policy.adoc

* Update clause_7_normative_text.adoc

* Update clause_7_normative_text.adoc
  • Loading branch information
tomkralidis authored Feb 14, 2024
1 parent 23d00eb commit e3f6c1e
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 2 deletions.
2 changes: 1 addition & 1 deletion standard/recommendations/core/PER_data_policy.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
|===
^|*Permission {counter:per-id}* |*/per/core/data_policy*
^|A|For core data (when `+properties.wmo:dataPolicy+` property is `+core+`), attribution licensing MAY be provided as needed.
^|B|For core data (when `+properties.wmo:dataPolicy+` is `+core+`) or recommended data (when `+properties.wmo:dataPolicy+` is `+recommended+`, and the data is compatible with feee and unrestricted principles), a license or public domain statement that is compatible with free and unrestricted principles (e.g., Creative Commons CC0footnote:[https://creativecommons.org/public-domain/cc0] or CC-BY 4.0footnote:[https://creativecommons.org/licenses/by/4.0]) MAY be expressed as a link object with the `license` link relation.
^|B|For core data (when `+properties.wmo:dataPolicy+` is `+core+`) or recommended data (when `+properties.wmo:dataPolicy+` is `+recommended+`, and the data is compatible with free and unrestricted principles), a license or public domain statement that is compatible with free and unrestricted principles (e.g., Creative Commons CC0footnote:[https://creativecommons.org/publicdomain/zero/1.0/]) MAY be expressed as a link object with the `license` link relation.
^|C|For core data (when `+properties.wmo:dataPolicy+` is `+core+`) or recommended data (when `+properties.wmo:dataPolicy+` is `+recommended+`, a copyright statement MAY be expressed in `+properties.rights+`
^|D|For core data (when `+properties.wmo:dataPolicy+` is `+core+`) or recommended data (when `+properties.wmo:dataPolicy+` is `+recommended+`, a link object MAY be expressed with `+rel=copyright+`.
|===
18 changes: 17 additions & 1 deletion standard/sections/clause_7_normative_text.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -574,7 +574,7 @@ A contact can also be specified by using a URL.
"contacts": [{
"organization": "Government of Canada; Environment and Climate Change Canada; Meteorological Service of Canada",
"links": [{
"href": "https://exmaple.org/about",
"href": "https://example.org/about",
"rel": "about",
"type": "text/html"
}],
Expand Down Expand Up @@ -747,6 +747,22 @@ It is useful to add provider-specific details to have the most detailed informat
}]
----

.Example: License for recommended data in the public domain
[source,json]
----
"properties": {
...
"wmo:dataPolicy": "recommended"
...
},
"links": [{
"rel": "license",
"href": "https://creativecommons.org/publicdomain/zero/1.0/",
"type": "text/html",
"title": "CC0 1.0 Deed | CC0 1.0 Universal | Creative Commons"
}]
----

To express rights not address by a license, the `+rights+` property can be used as follows:

.Example: Rights
Expand Down

0 comments on commit e3f6c1e

Please sign in to comment.