summaryrefslogtreecommitdiff
path: root/src/ontologies/10-xsd.ontology
blob: 44a7e3ca33b94b4381671170443849db425fb922 (plain)
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
@prefix nrl: <http://tracker.api.gnome.org/ontology/v3/nrl#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .

xsd: a nrl:Namespace, nrl:Ontology ;
	nrl:prefix "xsd" ;
	nrl:lastModified "2010-02-16T11:00:00Z" .

xsd:string a rdfs:Class ;
	rdfs:comment "The type of string properties." ;
	nrl:classSpecification "https://www.w3.org/TR/xmlschema-2/#string" .

xsd:boolean a rdfs:Class ;
	rdfs:comment "The type of true / false properties." ;
	nrl:classSpecification "https://www.w3.org/TR/xmlschema-2/#boolean" .

xsd:integer a rdfs:Class ;
	rdfs:comment "The type of integer properties." ;
	nrl:classSpecification "https://www.w3.org/TR/xmlschema-2/#integer" .

xsd:double a rdfs:Class ;
	rdfs:comment "The type of floating point properties." ;
	nrl:classSpecification "https://www.w3.org/TR/xmlschema-2/#double" .

xsd:date a rdfs:Class ;
	rdfs:comment "The type of date properties." ;
	nrl:classSpecification "https://www.w3.org/TR/xmlschema-2/#date" .

xsd:dateTime a rdfs:Class ;
	rdfs:comment "The type of date-time properties." ;
	nrl:classSpecification "https://www.w3.org/TR/xmlschema-2/#dateTime" .