{{ define "title" }}{{ .Site.Title }} | FSC Schema Extension{{ end }} {{/* override style for FSC layout */}} {{ define "style" }} {{ $style := resources.Get "css/fsc.min.css" | resources.Fingerprint }} {{ end }} {{ define "main" }}

FSC Schema Extension

This page provides a reference specification for the Forest Stewardship Council (FSC) schema extension.

Modules

Metadata elements in FSC schema extension are organized around seven modules:

Metadata Elements

{{/* Assign the current page context to a variable so we don't lose */}} {{/* it in the range below. */}} {{ $context := . }} {{ $cluster := "Fsc" }} {{ .Scratch.Set "cluster" $cluster }} {{ $modules := slice "Assurance" "Certificate" "Coverage" "Evaluation" "Form" "Pesticides" "Provenance" "Scope" "Status" }} {{ range $modules }} {{ $module := . }} {{ $.Scratch.Set "module" $module }} {{ partialCached "module-elements.html" $context $cluster $module }} {{ end }}

Download

The FSC schema extension is available for download in two formats:

{{ $fileCodeIcon := resources.Get "icons/file-earmark-code.svg" | resources.Fingerprint }}

File icon with earmarkTurtle

Terse RDF Triple Language (TTL). Use this format when you need to validate metadata against ISEAL Core programmatically.

Download
{{ $fileSpreadsheetIcon := resources.Get "icons/file-earmark-spreadsheet.svg" | resources.Fingerprint }}

File icon with earmarkCSV

Comma-separated Values (CSV). Use this format when you just need a quick and easy offline reference.

Download

Feedback

If you have questions/comments please contact Benjamin Kimuri (b.kimuri@fsc.org).

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