2021-12-21 17:31:02 +01:00
|
|
|
{{ define "title" }}{{ .Site.Title }} | FSC Schema Extension{{ end }}
|
|
|
|
{{/* override style for FSC layout */}}
|
|
|
|
{{ define "style" }}
|
|
|
|
{{ $style := resources.Get "css/fsc.min.css" | resources.Fingerprint }}
|
|
|
|
<link href="{{ $style.Permalink }}" rel="stylesheet" integrity="{{ $style.Data.Integrity }}" crossorigin="anonymous">
|
|
|
|
{{ end }}
|
|
|
|
{{ define "main" }}
|
|
|
|
|
|
|
|
<body data-bs-spy="scroll" data-bs-target="#navbar-navigation">
|
|
|
|
<div class="container-fluid">
|
|
|
|
<div class="row">
|
|
|
|
<!-- only show menu on large devices -->
|
|
|
|
<div class="col-lg-2 d-none d-lg-block">
|
|
|
|
<div class="sticky-top">
|
|
|
|
<nav id="navbar-navigation" class="navbar navbar-light bg-light flex-column align-items-start p-3">
|
|
|
|
<a class="navbar-brand" href="#">Navigation</a>
|
|
|
|
<nav class="nav nav-pills flex-column">
|
2022-02-06 20:11:29 +01:00
|
|
|
<a class="nav-link ms-3 my-1" href="#modules">Modules</a>
|
2021-12-21 17:31:02 +01:00
|
|
|
<a class="nav-link ms-3 my-1" href="#metadata-elements">Metadata Elements</a>
|
|
|
|
<a class="nav-link ms-3 my-1" href="#download">Download</a>
|
|
|
|
<a class="nav-link ms-3 my-1" href="#feedback">Feedback</a>
|
|
|
|
</nav>
|
|
|
|
<a class="nav-link" href="{{ .Site.BaseURL }}">Back to ISEAL Core</a>
|
|
|
|
</nav>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<!-- main content is 10 columns on large devices, 12 on all others -->
|
|
|
|
<main class="col-lg-10">
|
|
|
|
<h1>FSC Schema Extension</h1>
|
|
|
|
<p class="lead">This page provides a reference specification for the Forest Stewardship Council (FSC) schema extension.</p>
|
2022-02-06 20:11:29 +01:00
|
|
|
|
|
|
|
<h2 id="modules">Modules</h2>
|
|
|
|
<p>Metadata elements in FSC schema extension are organized around seven <em>modules</em>:</p>
|
|
|
|
<div class="m-3">
|
|
|
|
<table class="table table-striped table-sm text-center">
|
|
|
|
<tbody>
|
|
|
|
<tr>
|
|
|
|
<td><a href="#module-Assurance">Assurance</a></td>
|
|
|
|
<td><a href="#module-Certificate">Certificate</a></td>
|
|
|
|
<td><a href="#module-Coverage">Coverage</a></td>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<td><a href="#module-Evaluation">Evaluation</a></td>
|
|
|
|
<td><a href="#module-Form">Form</a></td>
|
2022-02-07 19:55:16 +01:00
|
|
|
<td><a href="#module-Pesticides">Pesticides</a></td>
|
2022-02-06 20:11:29 +01:00
|
|
|
</tr>
|
|
|
|
<tr>
|
2022-02-07 19:55:16 +01:00
|
|
|
<td><a href="#module-Provenance">Provenance</a></td>
|
|
|
|
<td><a href="#module-Scope">Scope</a></td>
|
2022-02-06 20:11:29 +01:00
|
|
|
<td><a href="#module-Status">Status</a></td>
|
|
|
|
</tr>
|
|
|
|
</tbody>
|
|
|
|
</table>
|
|
|
|
</div>
|
|
|
|
|
2021-12-21 17:31:02 +01:00
|
|
|
<h2 id="metadata-elements">Metadata Elements</h2>
|
|
|
|
|
2022-02-06 19:17:04 +01:00
|
|
|
{{/* Assign the current page context to a variable so we don't lose */}}
|
|
|
|
{{/* it in the range below. */}}
|
|
|
|
{{ $context := . }}
|
2021-12-21 17:31:02 +01:00
|
|
|
|
2022-02-06 19:30:25 +01:00
|
|
|
{{ $cluster := "Fsc" }}
|
|
|
|
{{ .Scratch.Set "cluster" $cluster }}
|
2022-02-07 19:55:16 +01:00
|
|
|
{{ $modules := slice "Assurance" "Certificate" "Coverage" "Evaluation" "Form" "Pesticides" "Provenance" "Scope" "Status" }}
|
2022-02-06 19:17:04 +01:00
|
|
|
{{ range $modules }}
|
|
|
|
{{ $module := . }}
|
|
|
|
{{ $.Scratch.Set "module" $module }}
|
2022-02-06 19:30:25 +01:00
|
|
|
{{ partialCached "module-elements.html" $context $cluster $module }}
|
2021-12-21 17:31:02 +01:00
|
|
|
{{ end }}
|
|
|
|
|
|
|
|
<h2 id="download">Download</h2>
|
|
|
|
<p>The FSC schema extension is available for download in two formats:</p>
|
|
|
|
<div class="row mb-2 justify-content-center">
|
|
|
|
<div class="col-sm-12 col-lg-4">
|
|
|
|
{{ $fileCodeIcon := resources.Get "icons/file-earmark-code.svg" | resources.Fingerprint }}
|
|
|
|
<h3><img class="icon me-1" src="{{ $fileCodeIcon.Permalink }}" alt="File icon with earmark"/>Turtle</h3>
|
|
|
|
<p>Terse RDF Triple Language (TTL). Use this format when you need to validate metadata against ISEAL Core programmatically.</p>
|
2022-02-16 09:14:40 +01:00
|
|
|
<a href="https://raw.githubusercontent.com/alanorth/iseal-schema/main/data/rdf/fsc.ttl" class="btn btn-primary">Download</a>
|
2021-12-21 17:31:02 +01:00
|
|
|
</div>
|
|
|
|
<div class="col-sm-12 col-lg-4">
|
|
|
|
{{ $fileSpreadsheetIcon := resources.Get "icons/file-earmark-spreadsheet.svg" | resources.Fingerprint }}
|
|
|
|
<h3><img class="icon me-1" src="{{ $fileSpreadsheetIcon.Permalink }}" alt="File icon with earmark"/>CSV</h3>
|
|
|
|
<p>Comma-separated Values (CSV). Use this format when you just need a quick and easy offline reference.</p>
|
|
|
|
<a href="https://raw.githubusercontent.com/alanorth/iseal-schema/main/data/fsc.csv" class="btn btn-primary">Download</a>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<h2 id="feedback">Feedback</h2>
|
|
|
|
<p>If you have questions/comments please contact ____.</p>
|
|
|
|
</main>
|
|
|
|
</div><!-- end .row -->
|
|
|
|
</div><!-- end .container-fluid -->
|
|
|
|
|
|
|
|
{{ end }}
|
|
|
|
|
|
|
|
{{- /* vim: set ts=2 sw=2 et: */}}
|