forked from ckan/ckan-docker
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Adding ckanext-scheming to add a suggested citation field. RE:#32
- Loading branch information
Showing
3 changed files
with
107 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
96 changes: 96 additions & 0 deletions
96
src/ckanext-natcap/ckanext/natcap/natcap_dataset_schema.yml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,96 @@ | ||
scheming_version: 2 | ||
dataset_type: dataset | ||
about: A reimplementation of the default CKAN dataset schema for NatCap | ||
about_url: http://github.com/natcap/data.naturalcapitalproject.stanford.edu | ||
|
||
|
||
dataset_fields: | ||
|
||
- field_name: title | ||
label: Title | ||
preset: title | ||
form_placeholder: eg. A descriptive title for the Dataset | ||
|
||
- field_name: name | ||
label: URL | ||
preset: dataset_slug | ||
form_placeholder: eg. my-dataset | ||
|
||
- field_name: notes | ||
label: Description | ||
form_snippet: markdown.html | ||
form_placeholder: eg. Some useful notes about the data | ||
|
||
- field_name: tag_string | ||
label: Tags | ||
preset: tag_string_autocomplete | ||
form_placeholder: eg. economy, mental health, government | ||
|
||
- field_name: license_id | ||
label: License | ||
form_snippet: license.html | ||
help_text: License definitions and additional information can be found at http://opendefinition.org/ | ||
|
||
- field_name: owner_org | ||
label: Organization | ||
preset: dataset_organization | ||
|
||
- field_name: url | ||
label: Source | ||
form_placeholder: http://example.com/dataset.json | ||
display_property: foaf:homepage | ||
display_snippet: link.html | ||
|
||
- field_name: version | ||
label: Version | ||
validators: ignore_missing unicode_safe package_version_validator | ||
form_placeholder: '1.0' | ||
|
||
- field_name: author | ||
label: Author | ||
form_placeholder: Joe Bloggs | ||
display_property: dc:creator | ||
|
||
- field_name: author_email | ||
label: Author Email | ||
form_placeholder: [email protected] | ||
display_property: dc:creator | ||
display_snippet: email.html | ||
display_email_name_field: author | ||
|
||
- field_name: maintainer | ||
label: Maintainer | ||
form_placeholder: Joe Bloggs | ||
display_property: dc:contributor | ||
|
||
- field_name: maintainer_email | ||
label: Maintainer Email | ||
form_placeholder: [email protected] | ||
display_property: dc:contributor | ||
display_snippet: email.html | ||
display_email_name_field: maintainer | ||
|
||
- field_name: suggested_citation | ||
label: Suggested Citation | ||
form_placeholder: Natural Capital Project, 2024. InVEST 3.14.1. Stanford University, University of Minnesota, Chinese Academy of Sciences, The Nature Conservancy, World Wildlife Fund, Stockholm Resilience Centre and the Royal Swedish Academy of Sciences. https://naturalcapitalproject.stanford.edu/software/invest | ||
help_text: Provide a citation in plain text | ||
output_validators: ignore_missing | ||
|
||
resource_fields: | ||
|
||
- field_name: url | ||
label: URL | ||
preset: resource_url_upload | ||
|
||
- field_name: name | ||
label: Name | ||
form_placeholder: eg. January 2011 Gold Prices | ||
|
||
- field_name: description | ||
label: Description | ||
form_snippet: markdown.html | ||
form_placeholder: Some useful notes about the data | ||
|
||
- field_name: format | ||
label: Format | ||
preset: resource_format_autocomplete |