query-d456d89af1d2b95987076ad9f1c9b7a5

rq turtle/ttl

improper use of NACE codes improperly: this should be used on economic activities, not companies. (P4496)NACE code rev.2 Thank you for creating records for some BG companies! However, you are using . Instead of "NACE code" it should have a property "industry" pointing to the appropriate economic activity. https://www.wikidata.org/w/index.php?title=Q123458553&oldid=2012019169For example, You can find the appropriate item with a query like this:

Use at

PREFIX wikibase: <http://wikiba.se/ontology#>
PREFIX wdt: <http://www.wikidata.org/prop/direct/>
PREFIX bd: <http://www.bigdata.com/rdf#>
SELECT ?item ?itemLabel WHERE {
    ?item wdt:P4496 "69.20"
  SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". }
}

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v1("?item"):::projected c4(["bd:serviceParam"]):::iri c6(["#91;AUTO_LANGUAGE#93;,en"]):::literal c2(["69.20"]):::literal v1 --"wdt:P4496"--> c2 subgraph s1["http://wikiba.se/ontology#label"] style s1 stroke-width:4px; c4 --"wikibase:language"--> c6 end