Merge "Show a warning in edit preview when a template loop is detected"
[lhc/web/wiklou.git] / docs / ontology.owl
1 <?xml version="1.0" encoding="UTF-8"?>
2
3 <!DOCTYPE rdf:RDF [
4 <!ENTITY xsd "http://www.w3.org/2001/XMLSchema#">
5 <!ENTITY rdf "http://www.w3.org/1999/02/22-rdf-syntax-ns#">
6 <!ENTITY rdfs "http://www.w3.org/2000/01/rdf-schema#">
7 <!ENTITY owl "http://www.w3.org/2002/07/owl#">
8 <!ENTITY mediawiki "https://www.mediawiki.org/ontology#">
9 ]>
10
11 <rdf:RDF
12 xmlns:xsd="&xsd;"
13 xmlns:rdf="&rdf;"
14 xmlns:rdfs="&rdfs;"
15 xmlns:owl="&owl;"
16 >
17
18 <owl:Ontology rdf:about="&mediawiki;">
19 <rdfs:label>MediaWiki ontology</rdfs:label>
20 <rdfs:comment>The ontology of MediaWiki</rdfs:comment>
21 </owl:Ontology>
22
23 <!--
24 ///////////////////////////////////////////////////////////////////////////////////////
25 //
26 // Classes
27 //
28 ///////////////////////////////////////////////////////////////////////////////////////
29 -->
30
31 <owl:Class rdf:about="&mediawiki;Dump">
32 <rdfs:label>Dump</rdfs:label>
33 <rdfs:comment>A dump of MediaWiki content.</rdfs:comment>
34 </owl:Class>
35
36 <owl:Class rdf:about="&mediawiki;Category">
37 <rdfs:label>Category</rdfs:label>
38 <rdfs:comment>MediaWiki category.</rdfs:comment>
39 </owl:Class>
40
41 <!--
42 ///////////////////////////////////////////////////////////////////////////////////////
43 //
44 // Properties
45 //
46 ///////////////////////////////////////////////////////////////////////////////////////
47 -->
48
49 <owl:ObjectProperty rdf:about="&mediawiki;isInCategory">
50 <rdfs:label>isInCategory</rdfs:label>
51 <rdfs:comment>One category is the parent of another.</rdfs:comment>
52 <rdfs:range rdf:resource="&mediawiki;Category"/>
53 <rdfs:domain rdf:resource="&mediawiki;Category"/>
54 </owl:ObjectProperty>
55
56 </rdf:RDF>