RDF export

From semantic-mediawiki.org

Based on the user's semantic annotations of articles, Semantic MediaWiki generates machine-readable documents in OWL/RDF format, that can be accessed via Special:ExportRDF. Moreover, there is a maintenance script for automatically generating complete exports of all semantic data. This article explains how annotations are formally interpreted in the OWL ontology language, and how a suitable RDF serialisation is generated.

Using the export functionality[edit]

Users can easily access the generated RDF via the page Special:ExportRDF by entering a list of articles into the input field. The export will contain one OWL/RDF specification with various description blocks for exported elements. In addition to the requested articles, the export will also contain basic declarations for any further elements (such as mentioned instances, properties, and classes). There are two settings that further influence the set of exported articles:

  • Recursive export
    Every article usually has relations to various other articles. Normally, those other articles are just declared briefly such that tools can find further RDF specifications for them if desired. By enabling recursive export, all information about the encountered objects will be exported right away. Since this process is continued for all further objects, this option can lead to large results.
  • Backlinks
    The RDF data model is based on directed graphs. When exporting an article, one usually exports only the statements within which the corresponding element occurs as a subject, and the exported document does not include incoming links. This restricts RDF browsers, since they cannot access all elements that have some relationship to something without retrieving the whole RDF first. For this reason, one can enable the export of backlinks. All articles that have relations to any of the exported articles then will also be exported.

The server administrator can restrict the availability of the above options, and can set default values cases where no parameters can be given (see below). The reason is that the above options, especially in combination, can easily lead to the export of major parts of the wiki in RDF, which might overly impair the performance of large sites.

In addition to the form at Special:ExportRDF, one can also retrieve RDF by calling appropriate URLs directly. This is suitable for linking to RDF specifications directly. In its basic form, this is achieved by appending a (URL encoded version of an) article name to the URL of the export service. For instance, one can link to

https://www.semantic-mediawiki.org/wiki/Special:ExportRDF/SMWCon_Fall_2015

to get this RDF directly. Alternatively, the article name can also be specified as a GET parameter "page" within the URL, e.g.

https://www.semantic-mediawiki.org/w/index.php?title=Special:ExportRDF&page=SMWCon_Fall_2015
Additional GET parameters

In addition to title and page, ExportRDF has additional GET (query string) parameters:

  • Recursive export can be enabled or disabled by setting "recursive" to 1 or 0.
  • Backlinks can be enabled or disabled by setting "backlinks" to 1 or 0, respectively.

Example:

https://www.semantic-mediawiki.org/w/index.php?title=Special:ExportRDF&page=SMWCon_Fall_2015&backlinks=1

Both settings will be ignored if disabled by the administrator. If no settings are given, site-wide default values apply ($smwgAllowRecursiveExport = false and $smwgExportBacklinks = true). For example, the semanticweb.org wiki always exports RDF with backlinks.

The default Content-Type of ExportRDF's output is application/xml (with charset=UTF-8). Content-Type application/rdf+xml can be set by adding the "xmlmime=rdf" GET parameter; some processing tools require this RDF mimetype to process the output, e.g.

https://www.semantic-mediawiki.org/w/index.php?title=Special:ExportRDF&page=SMWCon_Fall_2015&backlinks=1&xmlmime=rdf

Exporting all data[edit]

In addition to the wiki's Special:ExportRDF function, there is also a maintenance script that allows you to export all of the wiki's semantic data at once. The script is called dumpRDF.php. The script dumpRDF.php can generate full exports, or it can be restricted to certain elements of the schema, e.g. to export only the category hierarchy or only the attributes with their types.

The script can easily be run automatically as a cronjob to generate RDF dumps on a regular basis.

The exported data in detail[edit]

Mapping wiki-pages to ontology elements[edit]

The export distinguishes the page in the wiki and the "thing" that the page discusses. ... TODO

It is possible to import an external vocabulary (such as foaf or Dublin Core) into Semantic MediaWiki and associate attributes and relations in SMW with the external vocabulary, so that in RDF export the SMW attributes and relations export as properties in the external vocabulary (such as foaf:knows or skos:concept).

Categories[edit]

MediaWiki category relations are exported using existing RDF/RDFS properties. In brief:

  • A category assignment in a regular article is exported as rdf:type which states "is an instance of a class". So use of MediaWiki categories is a good match for "is a" in the sense of "San Diego is an instance of the class Cities".
  • A category assignment in a Category article is exported as rdfs:subClassOf which states "all the instances of one class are instances of another". So use of MediaWiki categories within categories is a good match for "is a" in the sense of "all instances of Divided cities are Cities".

There are many usages of MediaWiki categories that conflict with these semantics. For example, the article Urban decay might be in category Cities, but it is not a city. And Category:City museums might be in category Cities, but city museums are not cities.

Restrictions for OWL DL[edit]

... TODO


This documentation page applies to all SMW versions from 1.0 to the most current version.
      Other languages: de

RDF export en 1.0