-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathprice.ttl
34 lines (30 loc) · 1.21 KB
/
price.ttl
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
@base <http://w3id.org/openeduhub/vocabs/price/> .
@prefix dct: <http://purl.org/dc/terms/> .
@prefix skos: <http://www.w3.org/2004/02/skos/core#> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
@prefix lom: <http://w3id.org/openeduhub/vocabs/lom_cost/> .
<> a skos:ConceptScheme ;
dct:title "Preis"@de ;
dct:title "Price"@en ;
dct:description "Whether use of this learning object requires payment."@en ;
dct:creator "<https://wirlernenonline.de>" ;
dct:created "2020-11-15"^^xsd:date ;
dct:modified "2020-11-15"^^xsd:date ;
dct:issued "2020-11-15"^^xsd:date ;
dct:license <http://creativecommons.org/publicdomain/zero/1.0/> ;
skos:hasTopConcept <yes>, <yes_for_additional>, <no> .
<yes> a skos:Concept ;
skos:prefLabel "yes"@en ;
skos:prefLabel "ja"@de ;
skos:exactMatch lom:yes ;
skos:topConceptOf <> .
<yes_for_additional> a skos:Concept ;
skos:prefLabel "additional content / features purchasable"@en ;
skos:prefLabel "zusätzliche Inhalte / Features per Kauf möglich"@de ;
skos:closeMatch lom:yes ;
skos:topConceptOf <> .
<no> a skos:Concept ;
skos:prefLabel "no"@en ;
skos:prefLabel "nein"@de ;
skos:exactMatch lom:no ;
skos:topConceptOf <> .