My favorites
▼
|
Sign in
lindenb
Pierre Lindenbaum's library
Project Home
Downloads
Wiki
Issues
Source
Checkout
Browse
Changes
Source path:
svn
/
trunk
/
proj
/
mwrdf
/
src
/
php
/
schema.rdf
‹r301
r508
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
<?xml version="1.0" encoding="UTF-8" ?>
<!DOCTYPE rdf:RDF [
<!ENTITY rdf "http://www.w3.org/1999/02/22-rdf-syntax-ns#">
<!ENTITY rdfs "http://www.w3.org/2000/01/rdf-schema#">
<!ENTITY dc "http://purl.org/dc/elements/1.1/">
<!ENTITY xsd "http://www.w3.org/2001/XMLSchema#">
<!ENTITY ont "http://mwrdf.lindenb.org/">
<!ENTITY owl "http://www.w3.org/2002/07/owl#" >
]>
<rdf:RDF
xmlns:rdf="&rdf;"
xmlns:rdfs="&rdfs;"
xmlns:dc="&dc;"
xmlns:xsd="&xsd;"
xmlns:owl="&owl;"
xmlns:ont="&ont;"
>
<owl:Class rdf:about="&ont;TitledResource">
<rdf:type rdf:resource="&ont;AbstractClass"/>
</owl:Class>
<owl:Class rdf:about="&ont;Date">
<ont:anonymous>always</ont:anonymous>
</owl:Class>
<owl:Class rdf:about="&ont;Person">
<rdfs:subClassOf rdf:resource="&ont;TitledResource"/>
<ont:category>Person</ont:category>
</owl:Class>
<owl:DataTypeProperty rdf:about="&dc;title">
<rdfs:domain rdf:resource="&ont;TitledResource"/>
<rdfs:range rdf:resource="java:java.lang.String"/>
<owl:cardinality>1</owl:cardinality>
</owl:DataTypeProperty>
<owl:DataTypeProperty rdf:about="&ont;year">
<rdfs:domain rdf:resource="&ont;Date"/>
<rdfs:range rdf:resource="java:java.lang.Long"/>
<owl:cardinality>1</owl:cardinality>
</owl:DataTypeProperty>
<owl:DataTypeProperty rdf:about="&ont;month">
<rdfs:domain rdf:resource="&ont;Date"/>
<rdfs:range rdf:resource="java:java.lang.Short"/>
<owl:maxCardinality>1</owl:maxCardinality>
</owl:DataTypeProperty>
<owl:DataTypeProperty rdf:about="&ont;day">
<rdfs:domain rdf:resource="&ont;Date"/>
<rdfs:range rdf:resource="java:java.lang.Short"/>
<owl:maxCardinality>1</owl:maxCardinality>
</owl:DataTypeProperty>
<owl:ObjectProperty rdf:about="&ont;birthDate">
<rdfs:domain rdf:resource="&ont;Person"/>
<rdfs:range rdf:resource="&ont;Date"/>
<owl:maxCardinality>1</owl:maxCardinality>
</owl:ObjectProperty>
</rdf:RDF>
Show details
Hide details
Change log
r302
by plindenbaum on Jun 8, 2009
Diff
cont
Go to:
...nk/proj/mwrdf/src/php/schema.rdf
Project members,
sign in
to write a code review
Older revisions
r301
by plindenbaum on Jun 8, 2009
Diff
done
r300
by plindenbaum on Jun 8, 2009
Diff
cont
All revisions of this file
File info
Size: 1869 bytes, 65 lines
View raw file
Powered by
Google Project Hosting