Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

license, license_url and permissions_url fields #2605

Open
wants to merge 1 commit into
base: gh-pages
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,10 @@ To improve readability, the keys of the GeoJSON document should be ordered consi

We further recommend to add the licence related properties.

- `license` A [SPDX short identifier](https://spdx.org/licenses/) for the imagery license. Use `COMMERCIAL` for sources not under an open license. Use `USGOV-PD` for US Government works in the public domain.
- `license_url` A URL for the publishers licensing or terms of use information of the imagery.
- `permission_url` A URL for the waiver document or explicit permission given to OSM to derive features.

See [schema.json](schema.json) for the full list of available properties.

##### Source URL
Expand Down
12 changes: 10 additions & 2 deletions schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -94,8 +94,16 @@
"no"
]
},
"license": {
"description": "A SPDX short identifier for the imagery license. Use COMMERCIAL for sources not under an open license. Use USGOV-PD for US Government works in the public domain.",
"type": "string"
},
"license_url": {
"description": "A URL for the license or permissions for the imagery",
"description": "A URL for the publishers licensing or terms of use information of the imagery",
"type": "string"
},
"permission_url": {
"description": "A URL for the waiver document or explicit permission given to OSM to derive features",
"type": "string"
},
"privacy_policy_url": {
Expand Down Expand Up @@ -274,4 +282,4 @@
}
}
}
}
}
Loading