giuseppefutia / geranium

Empowering open publications using Semantics and Deep Learning
GNU General Public License v3.0
3 stars 1 forks source link

[RDF Graph] dc:identifier for TMFResource and AuthorKeyword entities #76

Open giovannigarifo opened 4 years ago

giovannigarifo commented 4 years ago

Both TMFResource and AuthorKeyword entities don't have the dc:identifier property assigned in the RDF graph.

Possible solution: use trailing part of URI as identifier, i.e. for http://dbpedia.org/page/Data_model use Data_model, result should be something like:

<!-- prefixes dbpedia and geranium defined before -->
<rdf:Description rdf:about="dbpedia:resource/Data_model">
        <rdf:type rdf:resource="geranium:ontology/TMFResource"/>
        <rdfs:label>Data Model</rdfs:label>
        <dc:identifier>Data_model</dc:identifier>
</rdf:Description>

Same goes for AuthorKeyword class.

giovannigarifo commented 4 years ago

@giuseppefutia your opinion is kindly requested :-)

mehdikhrichfa commented 4 years ago

Done.