Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Conflicting duplicate concepts in skos:related and skos:narrower #560

Open
jingyilong opened this issue Jun 28, 2022 · 0 comments
Open

Conflicting duplicate concepts in skos:related and skos:narrower #560

jingyilong opened this issue Jun 28, 2022 · 0 comments
Assignees
Labels
project:CWRC Ontology Regarding the CWRC Ontology

Comments

@jingyilong
Copy link
Collaborator

In the cwrc.ttl file, englishLabel and eurasianLabel have the same concepts in skos:related and skos:narrower.

SKOS doesn't allow clashes between hierarchical and associative links, which exists in the .ttl file because cwrc:represents corresponds to skos:related. englishLabel and eurasianLabel are the only concepts in the TextLabel class with narrower concepts, but I'm unsure if the skos:narrower duplicates should be deleted or their skos:related concepts.

cwrc.rdf

<skos:Concept rdf:about="#englishLabel">
    ...
    <cwrc:represents rdf:resource="#englishRaceColour"/>
    <cwrc:represents rdf:resource="http://id.loc.gov/vocabulary/languages/eng"/> **
    <cwrc:represents>ISO 3166-2:GB-ENG</cwrc:represents>
    <cwrc:represents rdf:resource="#englishGeographicHeritage"/>
    ...
    <skos:narrower rdf:resource="http://id.loc.gov/vocabulary/languages/eng"/> **

<skos:Concept rdf:about="#eurasianLabel">
    ...
    <cwrc:represents rdf:resource="#eurasianRaceColour"/> **
    ...
    <skos:narrower rdf:resource="#eurasianRaceColour"/> **

cwrc.ttl

cwrc:englishLabel
    ...
    skos:related <http://id.loc.gov/vocabulary/languages/eng>, cwrc:englishGeographicHeritage, cwrc:englishRaceColour, "ISO 3166-2:GB-ENG" ;
    skos:narrower <http://id.loc.gov/vocabulary/languages/eng> ;
    ...

cwrc:eurasianLabel
    ...
    skos:related cwrc:eurasianRaceColour ;
    ...
    skos:narrower cwrc:eurasianRaceColour ;
@jingyilong jingyilong added the project:CWRC Ontology Regarding the CWRC Ontology label Jun 28, 2022
@jingyilong jingyilong self-assigned this Jun 28, 2022
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
project:CWRC Ontology Regarding the CWRC Ontology
Projects
None yet
Development

No branches or pull requests

1 participant