Problem: The line…
<rdf:type rdf:resource="http://wikiba.se/ontology#Property"/>
… is duplicated in all the blocks rdf:Description that describe statements of Items, Properties, Lexemes, Forms and Senses in RDF (*.rdf). Analogous lines are also duplicated in, at least, Notation3 (*.n3), Turtle (*.ttl), N-Triples (*.nt) and JSON-LD (*.jsonld).
Examples:
- Item Q42 in RDF, first duplication out of 241 (the line appears 482 times):
<rdf:Description rdf:about="http://www.wikidata.org/entity/P31"> <rdf:type rdf:resource="http://wikiba.se/ontology#Property"/> <rdf:type rdf:resource="http://wikiba.se/ontology#Property"/> <wikibase:propertyType rdf:resource="http://wikiba.se/ontology#WikibaseItem"/> […] </rdf:Description>
- Property P101 in Notation3:
wd:P101 a wikibase:Property, wikibase:Property ;
- Lexeme L2 in Turtle:
wd:P5831 a wikibase:Property, wikibase:Property ;
- Form L2-F1 in N-Triples:
<http://www.wikidata.org/entity/P898> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://wikiba.se/ontology#Property> . <http://www.wikidata.org/entity/P898> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://wikiba.se/ontology#Property> .
- Sense L2-S1 in JSON-LD:
"@type": [ "wikibase:Property", "wikibase:Property" ],
Acceptance criteria:
- The content <rdf:type rdf:resource="http://wikiba.se/ontology#Property"/> in RDF, or its analogous in other formats, is no longer unnecessarily duplicated.