Skip to content

Commit 70a2515

Browse files
committed
Doku: Beispiele RDF Daten ergänzt
1 parent eb9188a commit 70a2515

1 file changed

Lines changed: 55 additions & 2 deletions

File tree

docs/patterns.md

Lines changed: 55 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ Die folgenden Abschnitte veranschaulichen, wie diese Muster gelesen und angewend
1111
BFO Klassen: {
1212
style: {
1313
font-color: white
14-
opacity: 2
14+
opacity: 0.5
1515
fill: "#9F0E21"
1616
stroke: white
1717
}
@@ -152,7 +152,35 @@ Mathematik: {
152152

153153
**RDF Daten**:
154154
```
155+
@prefix ex: <https://www.example.org/> .
156+
@prefix owl: <http://www.w3.org/2002/07/owl#> .
157+
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
158+
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
155159
160+
@prefix lp: <https://w3id.org/lehrplan/ontology/> .
161+
162+
# Klassen
163+
@prefix Lehrplan_SN: <https://w3id.org/lehrplan/ontology/LP_0000818> .
164+
165+
# Instanzen
166+
@prefix Sachsen: <https://w3id.org/lehrplan/ontology/LP_3000047> .
167+
@prefix Mathematik: <https://w3id.org/schulfach/SN_0000012> .
168+
@prefix Oberschule: <https://w3id.org/schulart/SN_0000003> .
169+
@prefix Sekundarbereich_II: <https://w3id.org/lehrplan/ontology/LP_0000046> .
170+
171+
# properties
172+
@prefix hat_Titel: <https://w3id.org/lehrplan/ontology/LP_0030056> .
173+
@prefix von_Bundesland: <https://w3id.org/lehrplan/ontology/LP_0000029> .
174+
@prefix hat_Schulfach: <https://w3id.org/lehrplan/ontology/LP_0000537> .
175+
@prefix für_Schulart: <https://w3id.org/lehrplan/ontology/LP_0000812>.
176+
@prefix hat_Schulstufe: <https://w3id.org/lehrplan/ontology/LP_0000047>.
177+
178+
ex:Lehrplan a Lehrplan_SN: ;
179+
hat_Titel: "Lehrplan Oberschule Mathematik" ;
180+
von_Bundesland: Sachsen: ;
181+
hat_Schulfach: Mathematik: ;
182+
für_Schulart: Oberschule: ;
183+
hat_Schulstufe: Sekundarbereich_II: .
156184
```
157185

158186

@@ -318,7 +346,32 @@ Sprechen und Zuhören: {
318346

319347
**RDF Daten**:
320348
```
321-
349+
@prefix ex: <https://www.example.org/> .
350+
@prefix owl: <http://www.w3.org/2002/07/owl#> .
351+
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
352+
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
353+
354+
@prefix lp: <https://w3id.org/lehrplan/ontology/> .
355+
356+
# Klassen
357+
@prefix Bildungsplan_BW: <https://w3id.org/lehrplan/ontology/LP_0000806> .
358+
@prefix Lehrplanfragment_BW: <https://w3id.org/lehrplan/ontology/LP_0002052> .
359+
360+
# properties
361+
@prefix hat_Titel: <https://w3id.org/lehrplan/ontology/LP_0030056> .
362+
@prefix hat_Teil: <http://purl.obolibrary.org/obo/BFO_0000051> .
363+
@prefix hat_Nummer: <https://w3id.org/lehrplan/ontology/LP_0030057> .
364+
@prefix hat_Beschreibung: <https://w3id.org/lehrplan/ontology/LP_0030051> .
365+
366+
ex:Lehrplan a Bildungsplan_BW: ;
367+
hat_Teil: ex:Fragment ;
368+
hat Titel: "Bildungsplan Sekundarstufe I - Deutsch" .
369+
ex:Fragment a Lehrplanfragment_BW: ;
370+
hat_Teil: ex:Bereich ;
371+
hat Titel: "Prozessbezogene Kompetenzen" .
372+
ex:Bereich hat_Titel "Sprechen und Zuhören" ;
373+
hat_Nummer: 2.1 ;
374+
hat_Beschreibung: "Die Schülerinnen und Schüler erwerben kommunikative Kompetenz ..." .
322375
```
323376

324377
## Pattern 3 - Schulfach und Schulfachbezug

0 commit comments

Comments
 (0)