Template:Wd/doc

From Seeds of the Word, the encyclopedia of the influence of the Gospel on culture

This template is intended to fetch data from Wikidata with or without a link to the connected Wikipedia article and with many other features.

Usage

The general structure of a call to this template is as follows. Note that the basic structure consists of positional commands, flags and arguments, which all have a fixed position.

{{wd|command1|flag1a|flag1b|flag1cTemplate:Ensure AAA contrast ratio|command2|flag2a|flag2b|flag2cTemplate:Ensure AAA contrast ratio|flag0a|flag0b|flag0cTemplate:Ensure AAA contrast ratio|arg1|arg2|arg3Template:Ensure AAA contrast ratio}}

Use different [[#Commands|commandsTemplate:Ensure AAA contrast ratio]] to get different kinds of values from Wikidata. At least one command must be given and multiple commands can be combined into one call as shown above (in any order, more than two is also possible), but this only applies to commands from the claim class; calls containing a command from the general class cannot contain any other command. Each command can be followed by any number of [[#Command flags|command flagsTemplate:Ensure AAA contrast ratio]], which are optional and can be used to tweak the output generated by that command.

The commands and their flags may be followed by any number of [[#Configuration flags|configuration flagsTemplate:Ensure AAA contrast ratio]], which are also optional and affect the selection of data and the template's behaviour in general. The call is closed with the [[#Positional arguments|positional argumentsTemplate:Ensure AAA contrast ratio]], which may be required depending on the given command(s). Some named arguments (i.e. name-value pairs) also exist, as well as a set of named flags for advanced usage that can be used to change the way the fetched values are merged together into the output.

This template was designed to provide the basic needs for fetching data from Wikidata, but a lot can be achieved through different combinations of calls. For convenience, such combinations could be wrapped into new templates that serve a specific need. See also the section on common use cases below for some examples of useful "building blocks". Likewise, the functionality of this template can be extended by creating wrapper templates that use the main command provided by Module:Wd which is being used by this template (just like {{WikidataOI}} does).

Common use cases

Below follows a list of common use cases. In the future, shortcut commands may be implemented that are equivalent to these calls for convenience.

Call Use case
{{wd|label|raw}} Returns the Q-identifier of the Wikidata item connected to the current page (e.g. "Q55").
{{#if:{{wd|label|raw}}|...}} Performs a check to determine if the current page has a Wikidata item.

Note that this statement relies on a returned value that is either empty or non-empty and that the raw flag is important to include. Without this flag, an existing item's regular label would be returned which could be empty, giving an undesired result. If the flag is given on the other hand, then a non-empty Q-identifier is always returned if an item exists and an empty value if an item does not exist.

Commands

The commands (command1Template:Ensure AAA contrast ratio, command2Template:Ensure AAA contrast ratio, ...) determine what kind of values are returned. One call can only contain commands from a single class.

Claim class

The claim class commands can be combined, meaning that multiple commands of different types from this class can be given at one time (see above for usage).

Combine multiple commands into one call to this template, instead of making multiple calls to this template with one command each, to be sure that all the returned pieces of information belong to each other (see also the examples below).

Type Command Returns Basic usage Description
I property first match[a] {{wd|property|P1}} Returns the requested property – or list of properties – from the current item-entity or from a given entity.

This command can be given only once in one call.

properties all matches {{wd|properties|P1}}
II qualifier first match[b] {{wd|qualifier|P1|P2}} Returns the requested qualifier – or list of qualifiers – from the given property of the current item-entity or of a given entity.

Unlike the other claim class commands, this command can be given multiple times to retrieve different qualifiers in one call.

qualifiers all matches {{wd|qualifiers|P1|P2}}
III reference first match[b] {{wd|reference|P1}} Returns a reference – or list of references – from the given property of the current item-entity or of a given entity.[c]

This command can be given only once in one call.

references all matches {{wd|references|P1}}
  1. Returns only a single value instead of multiple (if multiple claims or statements match). The returned value is the first match found from the best-ranked claims.
  2. 2.0 2.1 Returns only a single value instead of multiple for each matching claim. To get at most one value in total in case the property command is not also used, additionally use the single configuration flag.
  3. Only references that are valid according to the Wikidata guideline on sources are returned (i.e. those that have at least a property AlloCiné film ID (P248) or UN/LOCODE (P854)).

General class

The general class commands cannot be combined.

Type Command Returns Basic usage Description
I label {{wd|label}} Returns the label of the current item-entity or of a given entity if present.
II title {{wd|title}} Returns the title of the page connected to the current item-entity or to a given item-entity if such page exists.
III description {{wd|description}} Returns the description of the current item-entity or of a given entity if present.
IV alias first match[a] {{wd|alias}} Returns an alias – or list of aliases – of the current item-entity or of a given entity if present.
aliases all matches {{wd|aliases}}
V badge first match[a] {{wd|badge}} Returns a badge – or list of badges – for the page connected to the current item-entity or to a given item-entity if such page exists.
badges all matches {{wd|badges}}
  1. 1.0 1.1 Returns only a single value instead of multiple (if multiple values are present).


Flags

The following (optional) flags are available which can be used to alter this template's behaviour. They must be given after the (first) commandTemplate:Ensure AAA contrast ratio and before the other argumentsTemplate:Ensure AAA contrast ratio. For convenience, empty flags (i.e. ||) are allowed and will simply be ignored.

Command flags

These flags (flag1*Template:Ensure AAA contrast ratio, flag2*Template:Ensure AAA contrast ratio, ...) apply to the command that precedes them directly.

Flag Description
raw Returns the raw value if applicable.

If this flag is used with item or property datatypes, then this will return the Q-identifier or P-identifier instead of the regular label.

For quantity datatypes, this flag will strip off any units of measurement, unless the unit flag is also given in which case the raw unit of measurement (its Q-identifier) will be returned.

If this flag is used with time datatypes, then the returned date will be in the format of yyyy-mm-dd (e.g. 1731-02-11), or yyyy-mm, or yyyy depending on the date's precision. Dates in the Julian calendar stored with a precision of days through millenniums will have /Julian attached to the output (e.g. 1731-02-11/Julian, which may be split off using the {{#titleparts}} parser function).

If it is used with globe coordinate datatypes, then it replaces the various symbols with forward slashes in the returned value (e.g. 52/5/3/N/4/19/3/E, which may be split into parts using the {{#titleparts}} parser function).

linked Creates a link to the Wikipedia article that is connected to the property or qualifier if it exists. Also links units of measurement that may be appended to values.

If this parameter is omitted, then the plain property or qualifier value will be returned.

short [EXPENSIVE] Returns the UMLS CUI (P1813) of any entity returned if they have one attached. If that is not the case, then the default behaviour of returning the entity's label will occur.
multilanguage Returns monolingual text values in any available language, not just the current wiki's language.
unit Returns only the unit of measurement for quantity datatypes.

Configuration flags

These flags (flag0*Template:Ensure AAA contrast ratio) are general configuration flags and can be given anywhere after the first command (but before the other arguments).

Flag Description Command class
Combination of: preferred Sets a rank constraint for the selected claim(s).

The first three set the ranks for which claim(s) will be selected. They can optionally be followed by a + or a -, e.g. normal+ or preferred-, where the first selects claims with a 'normal' rank or higher and the second selects claims with a 'preferred' rank or lower. To get claims of all ranks, use preferred- or deprecated+.

If the best flag is given additionally, then only the claims that have the highest rank amongst the selected claims will be returned.

The default is normal+|best (so by default claims with a 'deprecated' rank are never returned).

Output is always sorted from highest rank to lowest (regardless of any of these flags being set).

claim
normal
deprecated
best
Combination of: future Sets a time constraint for the selected claim(s). Uses the claims' qualifiers of codename (P580) and curator (P582) to determine if the claim is valid for the selected time period(s).

The default is future|current|former (so by default claims that are valid for any time period are returned), except when date= is given (see below) in which case the default is current.

claim
current
former
mdy Returns date values in month-day-year order instead of day-month-year order. claim
single Returns only a single claim instead of multiple (if multiple claims match). Has no effect if the property/properties command is given, in which case this flag would be redundant. claim
sourced Only returns claims that have at least one valid reference. claim
One of: edit Adds a clickable icon after the output that may be used by readers to edit the returned claim on Wikidata.

If edit@end is used, then the icon will be placed at the end of the line for neat alignment in infoboxes.

claim, general
edit@end

Arguments

The arguments determine the sources from which all the returned values are fetched.

Positional arguments

The following table shows the available positional arguments (arg*Template:Ensure AAA contrast ratio) in their fixed order. For each command, the applicable set of arguments is marked. If multiple commands are given, then the applicable set is the union of the individual sets. For instance, if the commands properties and qualifiers have been given, then at least both the arguments property_id and qualifier_id should be given as well.

More than one qualifier/qualifiers command can be given. The order in which these commands with their flags are given matches the order in which the respective qualifier_id arguments are given.

(required) (optional) (optional) (required) (optional) (required) (required)
{{wd commands flags entity_id property_id raw_value qualifier_id qualifier_id }}
label, title,
description,
alias/aliases,
badge/badges
property/properties
reference/references
qualifier/qualifiers
qualifier/qualifiers (optional 2nd, 3rd, etc.)

Below follows a description of all positional arguments.

Argument Description
entity_id

(optional)

[EXPENSIVE] Q-identifier of the item-entity to be accessed (e.g. Q55), P-identifier (or an available alias) of the property-entity to be accessed preceded by the Property: prefix (e.g. Property:P38), or page title of the Wikipedia article whose connected item-entity is to be accessed preceded by :, a prefixed colon (e.g. :Netherlands).

In case of the general class commands, the Property: prefix may be omitted for P-identifiers (e.g. P38).

If this parameter is omitted, then the item-entity connected to the current page will be used (except when eid= or page= is given, see below). If this parameter is given, but empty (i.e. ||), then due to its position it will be interpreted as an empty flag and thus be ignored, giving the same result as if it were omitted. See also the named arguments eid= and page= below that can be used to give an entity-ID or page title too, but without the item-entity connected to the current page being used as a default.

property_id P-identifier (or an available alias) of the property within the entity to be accessed, without the Property: prefix (e.g. P35).
raw_value

(optional)

Either the Q-identifier equal to the property value (e.g. Q29574) or a literal value (i.e. string or quantity etc., no entity label) equal to the raw property value of the particular claim to be accessed.

Dates as literal values must be formatted yyyy-mm-dd (e.g. 1731-02-11) for dates with a precision of days, yyyy-mm (e.g. 1731-02) for dates with a precision of months, and yyyy (e.g. 1731) for dates of lesser precision. Dates BCE require a minus sign in front of the year (e.g. -2950-01-31). Dates stored in the Julian calendar must have /Julian attached to the end (e.g. 1731-02-11/Julian). Decades like the 2010s must be given as 2010 (but the 2010s BCE as -2019), centuries like the 20th century as 1901 (but the 20th century BCE as -2000), and millenniums like the 3rd millennium as 2001 (but the 3rd millennium BCE as -3000).

Globe coordinates as literal values must be formatted with forward slashes (i.e. /) between the parts and no symbols (e.g. 52/5/3/N/4/19/3/E) without any spaces or leading zeros.

The special type 'no value' can be given by entering the empty string (i.e. ||) and the special type 'unknown value' can be given by entering a single underscore (i.e. |_|). To get a literal underscore, escape it by placing a backslash \ directly in front of it (i.e. \_); the same holds for a literal backslash (i.e. \\).

To get a literal vertical bar |, use {{!}} or |.

If this parameter is omitted, then all claims (matching any other constraints) within the property will be accessed.

qualifier_id P-identifier (or an available alias) of the qualifier within the entity to be accessed, without the Property: prefix (e.g. P580).

Named arguments

Below follows a description of all named arguments, which are name-value pairs (i.e. |name=value). These are all optional and can be given anywhere inside the call.

Argument Description Command class
eid= [EXPENSIVE] This argument can be used to give the Q-identifier (e.g. |eid=Q55) or P-identifier (or an available alias) of the entity to be accessed. It offers the same functionality as the positional argument entity_id, with one difference: if the argument is given but its value is left empty (i.e. |eid=), then no entity is accessed at all instead of the item-entity connected to the current page. This is useful in some cases where a variable entity-ID is expected, but where the item-entity connected to the current page should not be accessed as the default.

Also, the Property: prefix may be omitted for P-identifiers (e.g. |eid=P38) for all commands.

This argument only has effect if the positional argument entity_id is omitted.

claim, general
page= [EXPENSIVE] This argument can be used to give the page title (e.g. |page=Netherlands) of the Wikipedia article whose connected item-entity is to be accessed. It behaves similar to the named argument eid= and can be used instead of the positional argument entity_id (note that no prefixed colon, :, is required). If the argument is given but its value is left empty (i.e. |page=), then no entity is accessed at all instead of the item-entity connected to the current page.

This argument only has effect if the positional argument entity_id and the named argument eid= are omitted.

claim, general
date= This argument can be used to set a particular date (e.g. |date=1731-02-11) relative to which claim matching using the future, current and former flags is done, instead of relative to today. It overrides the default of these flags to current so that by default only claims that were valid at the given date are returned (based on the claims' qualifiers of codename (P580) and curator (P582)).

The date value must be formatted yyyy-mm-dd (e.g. 1731-02-11), yyyy-mm (e.g. 1731-02) or yyyy (e.g. 1731).

claim
<qualifier>= The <qualifier> is a placeholder for a set of arguments that determine which claims should be accessed based on qualifier value, analogous to the pair of positional arguments property_id and raw_value (that determine access based on property value).

As such, <qualifier> is any qualifier's P-identifier (or an available alias) without the Property: prefix (e.g. P518). Its value is either the Q-identifier equal to one of the qualifier values (e.g. Q27561) or a literal value (i.e. string or quantity etc., no entity label) equal to one of the raw qualifier values of the particular claim to be accessed. The value format is the same as for the positional argument raw_value. The special type 'no value' given by the empty string also matches the total absence within the claim of the particular qualifier.

Example: |P518=Q27561

Multiple arguments of this type can be given to match multiple qualifier values simultaneously for each claim.

claim

Property aliases

Property aliases are other names for P-identifiers that can be used instead. The following property aliases (which are case-sensitive) are currently available:

Alias translates
to
P-identifier
coord P625
image P18
author P50
publisher P123
importedFrom P143
statedIn P248
pages P304
language P407
hasPart P527
publicationDate P577
startTime P580
endTime P582
chapter P792
retrieved P813
referenceURL P854
sectionVerseOrParagraph P958
archiveURL P1065
title P1476
formatterURL P1630
quote P1683
shortName P1813
definingFormula P2534
archiveDate P2960
inferredFrom P3452
typeOfReference P3865
column P3903

Advanced usage

The layout of the output from (a combination of) commands that have both a singular and a plural form (e.g. property/properties) can be customized by using a number of named flags, which are name-value pairs (i.e. |flag=value), that can be given anywhere inside the call. The table below shows the available named flags.

To insert a space at the beginning or end of a value, use an underscore _. To get a literal underscore, escape it by placing a backslash \ directly in front of it (i.e. \_); the same holds for a literal backslash (i.e. \\). To get a literal vertical bar |, use {{!}} or &#124;.

Named flag Default value Default condition Description
format= %p[%s][%r] if the property/properties command was given and the qualifier/qualifiers command was not given The format of a single claim. The available parameters are as follows.
Parameter Description
%p The claim's property value applied by the property/properties command.
%q1, %q2, %q3, ... The claim's qualifier value or list of qualifier values applied by the corresponding qualifier/qualifiers command.
%q The collection of the qualifier values applied by each qualifier/qualifiers command (i.e. %q1 + %q2 + %q3 + ...). If only one qualifier/qualifiers command was given, then this parameter is equivalent to %q1.
%r The claim's reference value or list of reference values applied by the reference/references command.
%a The entity's alias applied by the alias/aliases command.
%b The entity's page badge applied by the badge/badges command.
%s The movable separator placeholder. This is a special parameter that is not applied by a command, but instead is filled automatically between each pair of claims, aliases or badges (if a list of claims, aliases or badges is returned). This is particularly handy in case a claim's reference is returned as well, since it allows the reference to be placed after the punctuation mark as prescribed by Wikipedia's manual of style. The default value is a comma (,) and can be overridden with the sep%s flag (see below).

Optional parameters can be given by encapsulating them between square brackets: [...]. All content between the square brackets is only displayed if a value for each optional parameter that has been defined between the same brackets has been found. Optional content can also be nested.

To use two opening square brackets that directly follow each other (i.e. [[), use {{!((}}.

At least one parameter must be given that is not optional, while the %s parameter must always be defined as optional.

To get a literal [, ], % or \, escape the character by placing a backslash \ directly in front of it (e.g. \%). See also the description directly above this table for more.

%q[%s][%r] if the property/properties command was not given and the qualifier/qualifiers command was given
%r if only the reference/references command was given
%p[ <span style="font-size:85\%">(%q)</span>][%s][%r] if the property/properties command was given and the qualifier/qualifiers command was given
%a[%s] if the alias/aliases command was given
%b[%s] if the badge/badges command was given
sep= _ default The fixed separator between each pair of claims, aliases or badges.
if only the reference/references command was given without the raw flag
sep%s= , default The movable separator between each pair of claims, aliases or badges. This will be the value of the %s parameter applied to all claims, aliases or badges, except for the last in the list (which can be set with the punc flag).
; if the property/properties command was not given and the qualifier/qualifiers command was given
sep%q1=, sep%q2=, sep%q3=, ... ,_ default The separator between each pair of qualifiers of a single claim. These are the value separators for the %q1, %q2, %q3, ... parameters.

If only one qualifier/qualifiers command was given, then the sep%q1 flag is equivalent to sep%q.

sep%q= ,_ if exactly one qualifier/qualifiers command was given The separator between each set of qualifiers of a single claim. This is the value separator for the %q parameter.

If only one qualifier/qualifiers command was given, then this flag is equivalent to sep%q1.

Template:;_ if more than one qualifier/qualifiers command was given
sep%r= default The separator between each pair of references of a single claim. This is the value separator for the %r parameter.
_ if the raw flag was given for the reference/references command
punc= default A punctuation mark placed at the end of the output. This will be placed on the %s parameter applied to the last claim (or alias or badge) in the list.

This allows the last claim's references to be placed after the punctuation mark when the output is used as part of a sentence.

Examples

Parameters and output types Example Description
Q55 = "Netherlands", P395 = "licence plate code"

[string]

{{wd|property|Q55|P395}}

NL
Gets a literal string value.
P395 = "licence plate code"

[string]

{{wd|property|P395}}

NL
If the template is transcluded on the Netherlands page (which is linked to Q55), then the Q55 can be omitted.
Q55 = "Netherlands", P395 = "NL"

[string]

{{wd|property|eid=Q55|P395}}

NL
An entity-ID can also be given using the eid= argument.
P395 = "NL"

[string]

{{wd|property|page=Netherlands|P395}}

NL
A page title can be given instead of an entity-ID using the page= argument.
Q55 = "Netherlands", P395 = "licence plate code"

[string]

{{wd|property|edit|Q55|P395}}

NL Edit this on Wikidata
Adds a clickable icon that may be used to edit the returned value on Wikidata.
Q55 = "Netherlands", P395 = "licence plate code"

[string]

{{wd|property|edit@end|Q55|P395}}

NLEdit this on Wikidata
Places the edit icon at the end of the line.
Q55 = "Netherlands", P1082 = "population"

[quantity]

{{wd|property|normal+|Q55|P1082}}

17,282,163
Gets a single property value from claims with a 'normal' rank or higher.
Q55 = "Netherlands", P1082 = "population"

[quantity]

{{wd|properties|normal+|Q55|P1082}}

17,282,163, 16,829,289, 16,779,575, 10,026,773, 17,000,000, 17,132,854, 17,181,084
Gets multiple property values from claims with a 'normal' rank or higher.
Q55 = "Netherlands", P1082 = "population", P585 = "point in time"

[quantity], [time]

{{wd|properties|qualifier|normal+|Q55|P1082|P585}}

17,282,163 (2019), 16,829,289 (26 August 2014), 16,779,575 (2013), 10,026,773 (1950), 17,000,000 (21 March 2016), 17,132,854 (2017), 17,181,084 (1 January 2018)
Gets a single qualifier value for each claim, additional to the property value.
Q55 = "Netherlands", P1082 = "population", P585 = "point in time"

[quantity], [time], [reference]

{{wd|properties|qualifier|references|normal+|Q55|P1082|P585}}

17,282,163 (2019),[1] 16,829,289 (26 August 2014),[2] 16,779,575 (2013),[3] 10,026,773 (1950),[3] 17,000,000 (21 March 2016),[4] 17,132,854 (2017),[5] 17,181,084 (1 January 2018)[1]
Gets references for each claim.
Q55 = "Netherlands", P1082 = "population"

[quantity], [reference]

A total of {{wd|property|references|Q55|P1082}} people live in the Netherlands.

A total of 17,282,163[1] people live in the Netherlands.
Gets a property with its references.
Q55 = "Netherlands", P1082 = "population"

[quantity], [reference]

The Netherlands has a population of {{wd|property|references|Q55|P1082|punc=.}}

The Netherlands has a population of 17,282,163.[1]
Adds a punctuation mark at the end of the output, in front of the references.
Q55 = "Netherlands", P1082 = "population", P585 = "point in time"

[quantity], [time], [reference]

<ul>{{wd|properties|qualifier|references|normal+|Q55|P1082|P585|format=<li>%p[%r][<ul><li>%q</li></ul>]</li>}}</ul>

  • 17,282,163[1]
    • 2019
  • 16,829,289[2]
    • 26 August 2014
  • 16,779,575[3]
    • 2013
  • 10,026,773[3]
    • 1950
  • 17,000,000[4]
    • 21 March 2016
  • 17,132,854[5]
    • 2017
  • 17,181,084[1]
    • 1 January 2018
Returns the output in a custom format.
Q55 = "Netherlands", P1082 = "population", P585 = "point in time"

[time]

{{wd|qualifier|normal+|Q55|P1082|P585}}

2019; 26 August 2014; 2013; 1950; 21 March 2016; 2017; 1 January 2018
Gets a single qualifier per claim, by default for multiple matching claims.
Q55 = "Netherlands", P1082 = "population", P585 = "point in time"

[time]

{{wd|qualifier|normal+|single|Q55|P1082|P585}}

2019
To get a single qualifier for only a single claim, give the single flag too so that only a single claim will be accessed.
Q55 = "Netherlands", P1082 = "population", P585 = "point in time"

[time]

{{wd|qualifier|Q55|P1082|16829289|P585}}

26 August 2014
Gets a qualifier from claims for which the (raw) property value matches a given literal value.
Q55 = "Netherlands", P1082 = "population", P585 = "point in time"

[time]

{{wd|qualifier|mdy|Q55|P1082|16829289|P585}}

August 26, 2014
Gets dates in month-day-year order.
Q55 = "Netherlands", P1082 = "population", P585 = "point in time"

[time]

{{wd|qualifier|raw|Q55|P1082|16829289|P585}}

2014-08-26
Gets a raw date value.
Q55 = "Netherlands", P1082 = "population"

[reference]

{{wd|references|Q55|P1082|16829289}}

[2]
Gets the references from a particular claim.
Q55 = "Netherlands", P1082 = "population"

[reference]

{{wd|references|raw|Q55|P1082|16829289}}

http://statline.cbs.nl/StatWeb/publication/?VW=T&DM=SLNL&PA=37296ned&LA=NL; retrieved: 26 August 2014.
Gets references from a particular claim in their raw form.
Q55 = "Netherlands", P1081 = "Human Development Index"

[quantity], [reference]

{{wd|properties|references|normal+|Q55|P1081}}

0.922,[6] 0.787, 0.799, 0.829,[6] 0.861, 0.877,[6] 0.891, 0.909,[6] 0.919,[6] 0.920,[6] 0.920,[6] 0.829,[7] 0.834,[7] 0.835,[7] 0.839,[7] 0.864,[7] 0.861,[7] 0.866,[7] 0.865,[7] 0.867,[7] 0.870,[7] 0.876,[7] 0.879,[7] 0.878,[7] 0.883,[7] 0.886,[7] 0.891,[7] 0.897,[7] 0.904,[7] 0.906,[7] 0.906,[7] 0.910,[7] 0.921,[7] 0.921,[7] 0.923,[7] 0.924,[7] 0.926,[7] 0.928,[7] 0.931[7]
Gets properties from each claim with any references they have.
Q55 = "Netherlands", P1081 = "Human Development Index"

[quantity], [reference]

{{wd|properties|references|normal+|sourced|Q55|P1081}}

0.922,[6] 0.829,[6] 0.877,[6] 0.909,[6] 0.919,[6] 0.920,[6] 0.920,[6] 0.829,[7] 0.834,[7] 0.835,[7] 0.839,[7] 0.864,[7] 0.861,[7] 0.866,[7] 0.865,[7] 0.867,[7] 0.870,[7] 0.876,[7] 0.879,[7] 0.878,[7] 0.883,[7] 0.886,[7] 0.891,[7] 0.897,[7] 0.904,[7] 0.906,[7] 0.906,[7] 0.910,[7] 0.921,[7] 0.921,[7] 0.923,[7] 0.924,[7] 0.926,[7] 0.928,[7] 0.931[7]
Only gets properties from claims that have at least one reference.
Q55 = "Netherlands", P2855 = "VAT-rate", P518 = "applies to part, aspect, or form"

[entity label]

{{wd|qualifier|Q55|P2855|P518}}

food
Gets a single qualifier value (for each matching claim).
Q55 = "Netherlands", P2855 = "VAT-rate", P518 = "applies to part, aspect, or form"

[entity label]

{{wd|qualifiers|Q55|P2855|P518}}

food, medication, assistive technology, magazine, book, art, antique, hairdresser, hotel, campsite, recreation, sport, water
Gets multiple qualifier values (for each matching claim).
Q55 = "Netherlands", P2855 = "VAT-rate", P518 = "applies to part, aspect, or form"

[quantity], [entity label]

{{wd|properties|qualifiers|Q55|P2855|P518}}

21%, 6% (food, medication, assistive technology, magazine, book, art, antique, hairdresser, hotel, campsite, recreation, sport, water)
Gets multiple property values along with multiple qualifier values.
Q55 = "Netherlands", P2855 = "VAT-rate", P518 = "applies to part, aspect, or form"

[quantity], [entity label]

{{wd|properties|qualifiers|Q55|P2855|P518|sep=_+_|sep%s=|sep%q=_/_}}

21% + 6% (food / medication / assistive technology / magazine / book / art / antique / hairdresser / hotel / campsite / recreation / sport / water)
Returns the output with custom separators.
Q55 = "Netherlands", P35 = "head of state", P580 = "start time", P582 = "end time"

[entity label], [time]

{{wd|properties|qualifier|qualifier|normal+|Q55|P35|P580|P582}}

Willem-Alexander of the Netherlands (30 April 2013), Beatrix of the Netherlands (30 April 1980; 30 April 2013), Juliana of the Netherlands (4 September 1948; 30 April 1980), Wilhelmina of the Netherlands (23 November 1890; 4 September 1948), William III of the Netherlands (17 March 1849; 23 November 1890), William II of the Netherlands (7 October 1840; 17 March 1849), William I of the Netherlands (16 March 1815; 7 October 1840)
Gets two different qualifier values for each claim.
Q55 = "Netherlands", P35 = "head of state", P580 = "start time", P582 = "end time"

[entity label], [time]

{{wd|properties|qualifier|qualifier|normal+|Q55|P35|P580|P582|sep%q=_–_}}

Willem-Alexander of the Netherlands (30 April 2013), Beatrix of the Netherlands (30 April 1980 – 30 April 2013), Juliana of the Netherlands (4 September 1948 – 30 April 1980), Wilhelmina of the Netherlands (23 November 1890 – 4 September 1948), William III of the Netherlands (17 March 1849 – 23 November 1890), William II of the Netherlands (7 October 1840 – 17 March 1849), William I of the Netherlands (16 March 1815 – 7 October 1840)
Returns the output with a custom separator.
Q55 = "Netherlands", P35 = "head of state", P580 = "start time", P582 = "end time"

[entity label], [time]

{{wd|properties|qualifier|qualifier|normal+|Q55|P35|P580|P582|format=%p[ <span style="font-size:85\%">(%q1[ – %q2])</span>][%s][%r]}}

Willem-Alexander of the Netherlands (30 April 2013), Beatrix of the Netherlands (30 April 1980 – 30 April 2013), Juliana of the Netherlands (4 September 1948 – 30 April 1980), Wilhelmina of the Netherlands (23 November 1890 – 4 September 1948), William III of the Netherlands (17 March 1849 – 23 November 1890), William II of the Netherlands (7 October 1840 – 17 March 1849), William I of the Netherlands (16 March 1815 – 7 October 1840)
Returns the output in a custom format instead of with a custom separator.
Q55 = "Netherlands", P35 = "head of state", P580 = "start time", P582 = "end time"

[entity label], [time]

{{wd|properties|qualifier|qualifier|normal+|Q55|P35|P580|P582|format=%p[ <span style="font-size:85\%">([<![]--%q2]since [%q2--[]>]%q1[ – %q2])</span>][%s][%r]}}

Willem-Alexander of the Netherlands (since 30 April 2013), Beatrix of the Netherlands (30 April 1980 – 30 April 2013), Juliana of the Netherlands (4 September 1948 – 30 April 1980), Wilhelmina of the Netherlands (23 November 1890 – 4 September 1948), William III of the Netherlands (17 March 1849 – 23 November 1890), William II of the Netherlands (7 October 1840 – 17 March 1849), William I of the Netherlands (16 March 1815 – 7 October 1840)
To add text only when a certain value is not present, like adding the word since if there is no end time, wrap it in between two optional blocks containing HTML comment tags and the relevant parameter (this also prevents the text from being added to the page source).
Q55 = "Netherlands", P35 = "head of state", Q29574 = "Beatrix of the Netherlands", P580 = "start time", P582 = "end time"

[entity label], [time]

{{wd|properties|qualifier|raw|qualifier|normal+|Q55|P35|Q29574|P580|P582|format=%p[ <span style="font-size:85\%">(%q1[ – %q2])</span>][%s][%r]}}

Beatrix of the Netherlands (1980-04-30 – 30 April 2013)
Gets a property with qualifiers from claims for which the property matches a given Q-identifier, with one of the qualifier values in its raw form.
Q55 = "Netherlands", P38 = "currency", P518 = "applies to part, aspect, or form"

[entity label]

{{wd|properties|qualifiers|normal+|current|Q55|P38|P518}}

euro (European Netherlands), United States dollar (Caribbean Netherlands)
Gets claims that are currently valid.
Q55 = "Netherlands", P38 = currency", P518 = "applies to part, aspect, or form"

[entity label]

{{wd|properties|linked|qualifiers|normal+|current|Q55|P38|P518}}

euro (European Netherlands), United States dollar (Caribbean Netherlands)
Gets claims with linked property values.
Q55 = "Netherlands", P38 = currency", P518 = "applies to part, aspect, or form"

[entity label]

{{wd|properties|qualifiers|linked|normal+|current|Q55|P38|P518}}

euro (European Netherlands), United States dollar (Caribbean Netherlands)
Gets claims with linked qualifier values.
Q55 = "Netherlands", P38 = currency", P518 = "applies to part, aspect, or form"

[entity label]

{{wd|properties|linked|short|qualifiers|linked|normal+|current|Q55|P38|P518}}

euro (European Netherlands), US dollar (Caribbean Netherlands)
Gets claims with linked property and qualifier values, with short property values wherever available.
Q55 = "Netherlands", P38 = currency", Q4917 = "United States dollar", P518 = "applies to part, aspect, or form"

[entity label]

{{wd|qualifiers|normal+|current|Q55|P38|Q4917|P518}}

Caribbean Netherlands
Gets qualifiers from claims for which the (raw) property value matches a given Q-identifier.
Q55 = "Netherlands", P38 = currency", P518 = "applies to part, aspect, or form", Q27561 = "Caribbean Netherlands"

[entity label]

{{wd|properties|normal+|current|Q55|P38|P518=Q27561}}

United States dollar
Gets properties from claims for which a (raw) qualifier value matches a given Q-identifier.
Q55 = "Netherlands", P38 = currency"

[entity label]

{{wd|properties|normal+|former|Q55|P38}}

Dutch guilder
Gets claims that were valid in the past.
Q55 = "Netherlands", P38 = currency"

[entity label]

{{wd|properties|raw|normal+|former|Q55|P38}}

Q788472
Gets raw property values.
Q55 = "Netherlands", P38 = currency"

[entity label]

{{wd|properties|raw|linked|normal+|former|Q55|P38}}

Q788472
Gets raw property values that are linked to Wikidata.
Q55 = "Netherlands", P1549 = "demonym"

[monolingual text]

{{wd|property|Q55|P1549}}

Dutch
Gets a monolingual text value in the current wiki's language.
Q55 = "Netherlands", P1549 = "demonym", P407 = "language of work or name", Q36846 = "Toki Pona"

[monolingual text]

{{wd|property|multilanguage|Q55|P1549|P407=Q36846}}

jan Netelan
Gets a monolingual text value in any available language.
Q55 = "Netherlands", P2884 = "mains voltage"

[quantity]

{{wd|property|Q55|P2884}}

230 volt
Gets a quantity value with its associated unit of measurement.
Q55 = "Netherlands", P2884 = "mains voltage"

[quantity]

{{wd|property|linked|Q55|P2884}}

230 volt
Gets a quantity value with a linked unit of measurement.
Q55 = "Netherlands", P2884 = "mains voltage"

[quantity]

{{wd|property|raw|Q55|P2884}}

230
Gets a raw quantity value.
Q55 = "Netherlands", P2884 = "mains voltage"

[quantity]

{{wd|property|unit|Q55|P2884}}

volt
Gets only the unit of measurement.
Q55 = "Netherlands", P2884 = "mains voltage"

[quantity]

{{wd|property|unit|raw|Q55|P2884}}

Q25250
Gets the raw unit of measurement.
Q55 = "Netherlands", P625 = "coordinate location"

[globe coordinate]

{{wd|property|Q55|P625}}

52°19'N, 5°33'E
Gets a globe coordinate value.
Q55 = "Netherlands", P625 = "coordinate location"

[globe coordinate]

{{wd|property|linked|Q55|P625}}

52°19'N, 5°33'E
Gets a linked globe coordinate value.
Q55 = "Netherlands", P625 = "coordinate location"

[globe coordinate]

{{wd|property|raw|Q55|P625}}

52/19/N/5/33/E
Gets a raw globe coordinate value.
Q55 = "Netherlands", P625 = "coordinate location"

[globe coordinate]

{{wd|property|Q55|coord}}

52°19'N, 5°33'E
A property alias can be used instead of the P-identifier.
Q55 = "Netherlands", P41 = "flag image"

[commons media]

{{wd|property|linked|Q55|P41}}

Gets a media file name and links to it on Commons.
Q55 = "Netherlands", P41 = "flag image"

[commons media]

{{wd|property|raw|Q55|P41|format=\[\[File:%p {{!}} thumb {{!}} left\]\]}}

A Commons media file can be included on the page as-is by omitting the linked and raw flags, but by using the raw flag it can be freely formatted.
Q55 = "Netherlands", P41 = "flag image"

[commons media]

{{wd|property|raw|date=1700-05-06|Q55|P41|format=\[\[File:%p {{!}} thumb {{!}} left\]\]}}

To get the value of a property that was valid at a given time, the date= argument can be used.
Q55 = "Netherlands", P41 = "flag image"

[commons media]

{{wd|property|raw|date=1700-05-06|former|Q55|P41|format=\[\[File:%p {{!}} thumb {{!}} left\]\]}}

The time constraint flags work relatively to the date value given for the date= argument.
Q915684 = "Lorentz–Lorenz equation", P2534 = "defining formula"

[math]

{{wd|property|Q915684|P2534}}

Gets a mathematical expression.
Q915684 = "Lorentz–Lorenz equation", P527 = "has part", P416 = "quantity symbol (string)", P2534 = "defining formula"

[entity label], [string], [math]

<ul>{{wd|properties|linked|qualifier|qualifier|Q915684|P527|P416|P2534|format=<li>%p[ (%q)]</li>}}</ul>

Mathematical expressions can be combined with regular text as usual.
Q6256 = "country", P3896 = "geoshape"

[geographic shape]

{{wd|property|linked|Q6256|P3896}}

Gets a geographic shape data file name and links to it on Commons.
Q4917 = "United States dollar"

[entity label]

{{wd|label|Q4917}}

United States dollar
Gets an item's label.
Q4917 = "United States dollar"

[entity label]

{{wd|label|short|linked|Q4917}}

US dollar
Gets an item's short and linked label.
P38 = currency"

[entity label]

{{wd|label|P38}}

currency
Gets a property's label.
P38 = currency"

[entity label]

{{wd|label|linked|P38}}

currency
Gets a property's label that is linked to Wikidata.
Q776 = "Utrecht"

[entity label]

{{wd|label|Q776}}

Utrecht
Gets an item's label.
Q776 = "Utrecht"

[entity label]

{{wd|label|linked|Q776}}

Utrecht
Gets an item's linked label.


[entity label]

{{wd|label}}

Utrecht
If the template is transcluded on the Utrecht (province) page (which is linked to Q776), then the Q776 can be omitted.


[entity label]

{{wd|label|raw}}

Q776
If just the label command with the raw flag is given, then the Q-identifier of the item connected to the current page is returned.


[entity label]

{{wd|label|raw|linked}}

Q776
If additionally the linked flag is given, then the Q-identifier of the item connected to the current page is linked to Wikidata.
Q776 = "Utrecht"

[page title]

{{wd|title|Q776}}

Utrecht (province)
Gets the title of the page on the current wiki that is linked to the given item.
Q776 = "Utrecht"

[page title]

{{wd|title|linked|Q776}}

Utrecht (province)
Gets the linked title of the page on the current wiki that is linked to the given item.


[page title]

{{wd|title}}

Utrecht (province)
If the template is transcluded on the Utrecht (province) page (which is linked to Q776), then the Q776 can be omitted.
Q55 = "Netherlands"

[entity description]

{{wd|description|Q55}}

country in Western Europe, part of the Kingdom of the Netherlands
Gets an item's description.


[entity description]

{{wd|description}}

country in Western Europe, part of the Kingdom of the Netherlands
If the template is transcluded on the Netherlands page (which is linked to Q55), then the Q55 can be omitted.
Q55 = "Netherlands"

[entity alias]

{{wd|alias|Q55}}

Holland
Gets one of an item's aliases.
Q55 = "Netherlands"

[entity alias]

{{wd|aliases|Q55}}

Holland, the Netherlands, NL, NED, Nederland, nl, 🇳🇱, Netherlands (after 1945)
Gets all of an item's aliases.
Q55 = "Netherlands"

[entity alias]

{{wd|alias|linked|Q55}}

Holland
Gets a linked alias from an item.


[entity alias]

{{wd|alias}}

Holland
If the template is transcluded on the Netherlands page (which is linked to Q55), then the Q55 can be omitted.
Q2 = "Earth"

[page badge]

{{wd|badges|Q2}}

featured article badge
Gets the badges for the page on the current wiki that is linked to the given item.
Q2 = "Earth"

[page badge]

{{wd|badges|raw|Q2}}

Q17437796
Gets the raw badges for the page on the current wiki that is linked to the given item.


[page badge]

{{wd|badges}}

featured article badge
If the template is transcluded on the Earth page (which is linked to Q2), then the Q2 can be omitted.

Example references

See also

  • Module:Wd, the source module that is called by this template
  • {{Wikidata entity link}} or redirect {{Q}}), to add a Wikidata entity link to a Wikipedia page
  • {{Wikidata property link}} or redirect {{Property}}, to add a Wikidata property link to a Wikipedia page
  • {{Wikidata property}}, to add a Wikidata property {{side box}} to a Wikipedia page or template documentation
  • {{Uses Wikidata}}, to add a Wikidata property box to the documentation of a template or module
  • {{Tracks Wikidata}}, to add a Wikidata property box to the documentation of a template, module, or category
  • {{Pageid to title}}, to get a page title using its local page id, rather than Wikidata