[15:34:49] is it possible to query for an item's description on query.wikidata.org? I tried doing it analogous to the label, but that gives me a not allowed error [19:40:09] LotR: like this: https://query.wikidata.org/#SELECT%20%3FhumanDescription%20WHERE%20%7B%20%0A%20%20BIND%20%28wd%3AQ5%20as%20%3Fhuman%29%20.%20%0A%20%20SERVICE%20wikibase%3Alabel%20%7B%20bd%3AserviceParam%20wikibase%3Alanguage%20%22%5BAUTO_LANGUAGE%5D%2Cen%22.%20%7D%20%0A%7D ? [19:40:44] alternatively, if you want descriptions in all languages, you can use schema:description, like this: https://query.wikidata.org/#SELECT%20%3Fdesc%20WHERE%20%7B%20%0A%20%20BIND%20%28wd%3AQ5%20as%20%3Fhuman%29%20.%20%0A%20%20%3Fhuman%20schema%3Adescription%20%3Fdesc%20.%0A%7D [19:41:31] since when do wikidata items have a wikibase:propertyType statement? And what does it mean? https://query.wikidata.org/#SELECT%20%3Fprop%20%3Ftype%20WHERE%20%7B%20%3Fprop%20wikibase%3ApropertyType%20%3Ftype%20FILTER%20%28CONTAINS%28STR%28%3Fprop%29%2C%22Q%22%29%29%20%7D [19:47:47] Note that this seems to not be present in the raw data, at least `curl 'https://www.wikidata.org/wiki/Special:EntityData/Q607.nt' | grep propertyType | sort` does not produce that statement? [20:57:08] bennofs[m]: probably https://phabricator.wikimedia.org/T230588