Daniel Kinzler has submitted this change and it was merged. Change subject: adding a first ontology file, mostly as a placeholder ......................................................................
adding a first ontology file, mostly as a placeholder Change-Id: I18379b23826e6c22deed9a070ea8e73677940ed9 --- A docs/ontology.owl 1 file changed, 28 insertions(+), 0 deletions(-) Approvals: Daniel Kinzler: Verified; Looks good to me, approved jenkins-bot: Checked diff --git a/docs/ontology.owl b/docs/ontology.owl new file mode 100644 index 0000000..92828b6 --- /dev/null +++ b/docs/ontology.owl @@ -0,0 +1,28 @@ +<?xml version="1.0" encoding="UTF-8"?> + +<!DOCTYPE rdf:RDF [ + <!ENTITY xsd "http://www.w3.org/2001/XMLSchema#"> + <!ENTITY rdf "http://www.w3.org/1999/02/22-rdf-syntax-ns#"> + <!ENTITY rdfs "http://www.w3.org/2000/01/rdf-schema#"> + <!ENTITY owl "http://www.w3.org/2002/07/owl#"> + <!ENTITY wikibase "http://www.wikidata.org/ontology#"> +]> + +<rdf:RDF + xmlns:xsd="&xsd;" + xmlns:rdf="&rdf;" + xmlns:rdfs="&rdfs;" + xmlns:owl="&owl;" +> + + <owl:Ontology rdf:about="&wikibase;"> + <rdfs:label>Wikibase system ontology</rdfs:label> + <rdfs:comment>The system ontology of Wikibase, which is used to describe the user-created content.</rdfs:comment> + </owl:Ontology> + + <owl:Class rdf:about="&wikibase;Statement"> + <rdfs:label>Statement</rdfs:label> + <rdfs:comment>A reified statement.</rdfs:comment> + </owl:Class> + +</rdf:RDF> \ No newline at end of file -- To view, visit https://gerrit.wikimedia.org/r/60886 To unsubscribe, visit https://gerrit.wikimedia.org/r/settings Gerrit-MessageType: merged Gerrit-Change-Id: I18379b23826e6c22deed9a070ea8e73677940ed9 Gerrit-PatchSet: 1 Gerrit-Project: mediawiki/extensions/Wikibase Gerrit-Branch: master Gerrit-Owner: Denny Vrandecic <[email protected]> Gerrit-Reviewer: Daniel Kinzler <[email protected]> Gerrit-Reviewer: jenkins-bot _______________________________________________ MediaWiki-commits mailing list [email protected] https://lists.wikimedia.org/mailman/listinfo/mediawiki-commits
