Wikidata/Notes/Inclusion syntax v0.4

From Meta, a Wikimedia project coordination wiki
This is an archived version of this page, as edited by Denny (talk | contribs) at 14:43, 21 May 2013 (→‎Properties of different items). It may differ significantly from the current version.
New Version (May 2013) This is a subset of the previous draft!

This page describes the data inclusion syntax for the Wikibase client, by which the properties of data items can be included and rendered on a wiki page using templates. In short: This is how we want Wikipedia articles to include data from Wikidata.

The inclusion syntax presented here is meant to work for very simple cases, and only for them.

Complicated cases are to be realized using Lua.

Accessing Item Data

Properties

Properties of a Wikidata Item can be used via the #property parser function:

 {{#property:P36}}
 {{#property:capital}}

This will provide a representation of the value of the capital property of the page's default item. The default item is the Wikidata item that is associated with this page via language links.

The property label is case sensitive. It is also possible to use the identifier of the property (this is more stable against changes of the label of a property).

(Note: currently, only IDs work, the property labels should be switched on in May 20 (en)/22 (others))

Properties of different items

To access properties of a different item, it has to be specified explicitly, either by ID or by their Wikipedia title.

 {{#property:capital|of=Q183}}
 {{#property:capital|of=Germany}}

(Note: this is not implemented yet)