-
Notifications
You must be signed in to change notification settings - Fork 9
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
Merge :hasSeries into :partOfSeries #367
base: develop
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -69,10 +69,6 @@ prefix relsubtype: <http://id.loc.gov/vocabulary/preservation/relationshipSubTyp | |
rdfs:comment "Relaterad resurs vilken den beskrivna resursen är en fysisk eller logisk del av."@sv; | ||
owl:equivalentProperty bf2:partOf, dc:isPartOf, sdo:isPartOf, relsubtype:isp . # TODO: super-properties of relsubtype:isp instead? | ||
|
||
:partOfSeries a owl:ObjectProperty; | ||
rdfs:subPropertyOf :isPartOf; | ||
rdfs:label "part of series"@en, "del av serie"@sv . | ||
|
||
:references a owl:ObjectProperty; | ||
rdfs:label "hänvisar till"@sv; | ||
owl:equivalentProperty dc:references . | ||
|
@@ -424,11 +420,16 @@ prefix relsubtype: <http://id.loc.gov/vocabulary/preservation/relationshipSubTyp | |
rdfs:subPropertyOf :accompanies; | ||
owl:inverseOf :supplement . | ||
|
||
:hasSeries a owl:ObjectProperty; | ||
rdfs:label "har serie"@sv; | ||
:partOfSeries a owl:ObjectProperty; | ||
owl:sameAs :hasSeries; | ||
rdfs:subPropertyOf :isPartOf; | ||
sdo:domainIncludes :Creation ; | ||
sdo:rangeIncludes :Creation ; | ||
rdfs:label "part of series"@en, "del av serie"@sv ; | ||
skos:altLabel "har serie"@sv; | ||
rdfs:comment "Resurs i vilken delen har blivit utgiven; titel av den större resursen syns i delen."@sv; | ||
owl:propertyChainAxiom ( :seriesMembership :inSeries ) ; | ||
owl:equivalentProperty bf2:hasSeries . | ||
owl:equivalentProperty bf2:hasSeries, sdo:partOfSeries . | ||
|
||
:seriesOf a owl:ObjectProperty; | ||
rdfs:label "Series container of"@en, "Ingående seriedel"@sv; | ||
|
@@ -446,7 +447,7 @@ prefix relsubtype: <http://id.loc.gov/vocabulary/preservation/relationshipSubTyp | |
rdfs:domain :SeriesMembership ; | ||
rdfs:subPropertyOf :object ; | ||
sdo:rangeIncludes :Instance ; | ||
rdfs:label "ingår i serie"@sv . | ||
rdfs:label "medlemskap i serie"@sv . | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Why change label here? for me it introduces a confusion with seriesMembership label. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. It came from a note I had (from some chat IIRC) about differentiating There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Sounds good. We should do a follow up on that note on any possible differences, and if so document that in a comment or scopenote at least. |
||
|
||
:SeriesMembership a owl:Class ; | ||
rdfs:subClassOf :PartitiveRelationship ; | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
.partOfSeries
is missing the correspondingowl:inverseOf :seriesOf;
which in turn probably is best to change from:hasSeries
to:partOfSeries
.