-
Notifications
You must be signed in to change notification settings - Fork 2
/
schema.html
76 lines (76 loc) · 3.16 KB
/
schema.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
<!DOCTYPE html>
<html>
<head>
<title>Knowledge management FAIRification tool for conservation and restoration processes</title>
<link rel="icon" type="image/x-icon" href="pictures/CoffeeAndConservationLogo.png">
</head>
<body>
<header>
<h1>Knowledge management FAIRification tool for conservation and restoration processes</h1>
<hr>
</header>
<nav>
<a href="index.html">Introduction</a>
<a href="vocabulary.html">Vocabulary</a>
<a href="ontology.html">Ontology</a>
<a href="contact.html">Contact</a>
<br>
<center>
<img src="pictures/CSV-Image.svg" alt="RRZEicons CC BY-SA 3.0 Deed" height="150" title="RRZEicons CC BY-SA 3.0 Deed" img>
</center>
</nav>
<main>
<article>
<section>
<h2>Tabellen Schema</h2>
<p>Folgendes Tabellenschema muss verwendet werden, damit Dateien validiert und visualisiert werden können.</p>
<table>
<tr>
<th>identifier</th>
<th>prefLabel</th>
<th>parent</th>
</tr>
<tr>
<td>X85C</td>
<td>food</td>
<td>top</td>
</tr>
<tr>
<td>437D</td>
<td>vegetables</td>
<td>X85C</td>
</tr>
</table>
<br>
<!-- make a list -->
<ul>
<li>Die Begriffe, die am höchsten in der Hierarchie sind, müssen in der Spalte "parent" den Wert "top" haben.</li>
<li>Begriffe niedriger in der Hierarchie müssen in der Spalte "parent" den identifier des übergeordneten Begriffs aufweisen.</li>
<li>Der in der Visualisierung verwendete Name des Begriffs wird in der Spalte "prefLabel" bestimmt.</li>
<li>Damit die Validierung erfolgreich ist und die Tabelle anschließend hierarchisch visualisiert werden kann, müssen identifier eindeutig sein, also nicht häufiger als einmal vorkommen.</li>
<li>Außerdem müssen alle in der Spalte "parent" referenzierten identifier in der Spalte "identifier" vorkommen.</li>
</ul>
<p> Das Schema dient zunächst der Entwicklung einer Begriffshierarchie. Dieses wird zukünftig dem Simple Knowledge Organization System (SKOS) Standard entsprechen.</p>
<br>
<button onclick="downloadExample()">CSV-Datei des Schemas</button>
<br>
<br>
<a href="vocabulary.html">Zurück</a>
<script>
function downloadExample() {
var csv = 'identifier,prefLabel,parent\nX85C,food,top\n437D,vegetables,X85C';
var blob = new Blob([csv], { type: 'text/csv' });
var url = window.URL.createObjectURL(blob);
var a = document.createElement('a');
a.href = url;
a.download = 'schema.csv';
a.click();
}
</script>
</section>
<aside> </aside>
</article>
</main>
<footer> </footer>
</body>
</html>