-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathcitation-elements.ttl
65 lines (55 loc) · 1.82 KB
/
citation-elements.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
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
# This file is written in the [RDF 1.1 Turtle] language.
# It contains all the RDF triples implied by [CEV Concepts] and
# [CEV RDFa].
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
@prefix types: <https://terms.fhiso.org/types/> .
@prefix cev: <https://terms.fhiso.org/sources/> .
cev:CitationElement
rdf:type rdfs:Class ;
rdfs:subClassOf rdf:Property ;
types:requiredProperty rdf:type, rdfs:range, cev:isSingleValued ;
rdfs:isDefinedBy
<https://fhiso.org/TR/cev-concepts#defining-elts> .
cev:subElementOf
rdf:type rdf:Property ;
rdfs:range cev:CitationElement ;
rdfs:isDefinedBy
<https://fhiso.org/TR/cev-concepts#sub-elements> .
cev:isSingleValued
rdf:type rdf:Property ;
rdfs:range xsd:boolean ;
rdfs:isDefinedBy
<https://fhiso.org/TR/cev-concepts#cardinality> .
cev:localisedElement
rdf:type cev:CitationElement ;
rdfs:range xsd:anyAtomicType ;
cev:isSingleValued false ;
rdfs:isDefinedBy
<https://fhiso.org/TR/cev-concepts#list-flattening> .
cev:defaultDatatype
rdf:type rdf:Property ;
rdfs:range rdfs:Datatype ;
rdfs:isDefinedBy
<https://fhiso.org/TR/cev-concepts#default-datatypes> .
cev:derivedFrom
rdf:type cev:SourceDerivation ;
rdfs:isDefinedBy
<https://fhiso.org/TR/cev-concepts#layer-derivation> .
cev:SourceDerivation
rdf:type rdfs:Class ;
types:requiredProperty rdf:type ;
rdfs:isDefinedBy
<https://fhiso.org/TR/cev-concepts#layer-derivation> .
cev:Source
rdf:type rdfs:Class ;
types:requiredProperty rdf:type ;
rdfs:isDefinedBy
<https://fhiso.org/TR/cev-rdf-bindings#source-type-elts> .
cev:CitedSource
rdf:type rdfs:Class ;
rdfs:subClassOf cev:Source ;
types:requiredProperty rdf:type ;
rdfs:isDefinedBy
<https://fhiso.org/TR/cev-rdf-bindings#source-type-elts> .