{{ define "title" }}{{ .Site.Title }}{{ end }} {{ define "main" }}

ISEAL Core Metadata Set Specification

This page provides a reference specification for the ISEAL Core Metadata set (ISEAL Core).

ISEAL Core is a set of structured terms and vocabularies that can be used as metadata to describe, share, and reuse different digital resources across the ISEAL Community and broader set of stakeholders. The resources described using the ISEAL are those that sustainability systems typically collect, curate, manage, use, publish and archive. They may be datasets, published research, certificates, videos, images, maps, or other organizational documentation.

Clusters and Modules

Metadata elements in ISEAL Core are organized around three clusters and ten modules.

  • Global
    • Coverage
    • Form
    • Provenance
    • Scope
    • Status
  • Certification
    • Certificate
    • Certificate Holder, Owner or Certified organization
    • Certified Resource or Site
    • Certifying Body
  • Impact
    • Impact

Metadata Elements

ISEAL Core uses elements from the following standard metadata schemas:

  • Dublin Core Elements with the dc namespace prefix. These were originally designated in 1995 and are considered deprecated and superseded by Dublin Core Terms. Due to legacy code in the DSpace software we must still use some of these.
  • Dublin Core Terms with the dcterms namespace prefix. These contain the original Dublin Core Terms and add others. As of 2008 these supercede the original Dublin Core Elements.

General guidelines for metadata using ISEAL Core:

  • Encoding: metadata should be encoded in UTF-8 to ensure correct representation of international characters.
  • Applicability: metadata should describe what the item is, not what it isn't. If a metadata element is not applicable you should not use it. Do not enter "N/A"!

Global Cluster

{{/* Note: we need to use two ranges for each cluster because it is */}} {{/* not possible to re-use Hugo's paginate object unless you use */}} {{/* the same exact arguments each time. */}} {{ range where (where site.RegularPages "Type" "terms") "Params.cluster" "==" "Global" }} {{- if .Params.field -}} {{ .Params.field }} {{- end -}} {{ end }}

{{ range where (where site.RegularPages "Type" "terms") "Params.cluster" "==" "Global" }}
{{ .Render "term" }}
{{ end }}

Certification Cluster

{{ range where (where site.RegularPages "Type" "terms") "Params.cluster" "==" "Certification" }} {{- if .Params.field -}} {{ .Params.field }} {{- end -}} {{ end }}

{{ range where (where site.RegularPages "Type" "terms") "Params.cluster" "==" "Certification" }}
{{ .Render "term" }}
{{ end }}

Impact Cluster

{{ range where (where site.RegularPages "Type" "terms") "Params.cluster" "==" "Impact" }} {{- if .Params.field -}} {{ .Params.field }} {{- end -}} {{ end }}

{{ range where (where site.RegularPages "Type" "terms") "Params.cluster" "==" "Impact" }}
{{ .Render "term" }}
{{ end }}

Feedback

If you have questions/comments please contact ____.

{{ end }} {{- /* vim: set ts=2 sw=2 et: */}}