query-38cecde057c12a5f485d3f2c3c9afce8

rq turtle/ttl

Skin colours of fantasy creatureswhen describing fictional characters, alien races or fantasy creatures, there are a lot of properties to describe physical features of the thing: like horns, antenna or pointed ears, [should probably be a separate property])anatomical features (for (P1552)has characteristic (P3828)wears (P8852)facial hair (P8839)hairstyle / hairlength (P1884)hair color (P1340)eye color ? (Q95074)fictional character Now many fantasy creatures have a particular skin colour: like Blue, Red, Green, Purple. I'm sure I am not the first person thinking about to propose a skin colour property. But what should be the scope of such a property besides . (P172)ethnic group , but I personally wouldn't want to assign such a property to real living humans. Perhaps because i feel that in my cultural environment it is considered inappropriate to describe people with the skin colour or (Q2976543)Fitzpatrick scale There is a standardised way to categorise human skin colours: . Are scales a type of skin? is a feather a type of scale? Do fruits have skin colour? skinIt could be applied to animals or species of animals but I have no idea what exactly constitutes as We could also just use this generic way of assigning colours:

Use at

PREFIX wikibase: <http://wikiba.se/ontology#>
PREFIX wd: <http://www.wikidata.org/entity/>
PREFIX ps: <http://www.wikidata.org/prop/statement/>
PREFIX pq: <http://www.wikidata.org/prop/qualifier/>
PREFIX p: <http://www.wikidata.org/prop/>
PREFIX bd: <http://www.bigdata.com/rdf#>
SELECT ?item ?itemLabel ?color ?colorLabel WHERE {
  SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". }
  ?item p:P462 ?statement.
  ?statement ps:P462 ?color.
  ?statement pq:P518 wd:Q1074.
}

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v3("?color"):::projected v1("?item"):::projected v2("?statement") c2(["bd:serviceParam"]):::iri c8(["wd:Q1074"]):::iri c4(["#91;AUTO_LANGUAGE#93;,en"]):::literal subgraph s1["http://wikiba.se/ontology#label"] style s1 stroke-width:4px; c2 --"wikibase:language"--> c4 end v1 --"p:P462"--> v2 v2 --"p:statement/P462"--> v3 v2 --"p:qualifier/P518"--> c8