We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
With using dct:hasPart it is not clear how a list oft Chronologies is ordered.
Order is unclear:
:item ecpo:hasChronology [ a ecpo:CurrentChronology ; dct:hasPart [ a ecpo:ClosedChronology ; ecpo:hasBeginVolumeNumbering "5" ; ] , [ a ecpo:ClosedChronology ; ecpo:hasBeginVolumeNumbering "8" ; ] ]
Possible use the Ordered List Ontology (needs a new property ecpo:hasChronologyList):
:item ecpo:hasChronologyList [ a olo:OrderedList ; olo:length 2 ; olo:slot [ olo:index 1 ; olo:item [ a ecpo:ClosedChronology ; ecpo:hasBeginVolumeCaption "v." ; ecpo:hasBeginVolumeNumbering "5" ; ecpo:hasBeginIssueCaption "no." ; ecpo:hasBeginIssueNumbering "1" ; ecpo:hasBeginTemporal "1975" ; ecpo:hasBeginTemporalExtension "spring" ; ecpo:hasEndVolumeCaption "v." ; ecpo:hasEndVolumeNumbering "7" ; ecpo:hasEndIssueCaption "no." ; ecpo:hasEndIssueNumbering "4" ; ecpo:hasEndTemporal "1977" ; ecpo:hasEndTemporalExtension "autumn" ] ] ; olo:slot [ olo:index 2 ; olo:item [ a ecpo:ClosedChronology ; ecpo:hasBeginVolumeCaption "v." ; ecpo:hasBeginVolumeNumbering "8" ; ecpo:hasBeginIssueCaption "no." ; ecpo:hasBeginIssueNumbering "2" ; ecpo:hasBeginTemporal "1978" ; ecpo:hasBeginTemporalExtension "winter" ] ] ] .
Possible extend rdf:Seq:
ecpo:hasPart rdfs:subPropertyOf rdf:li; rdfs:range ecpo:Chronology; rdfs:domain ecpo:ChronologyList . ecpo:ChronologyList a owl:Class; owl:equivalentClass [ a owl:Class; owl:intersectionOf ( rdf:Seq [a owl:Restriction; owl:onProperty ecpo:hasPart; owl:someValuesFrom owl:Thing ]) ] . :item ecpo:hasChronologyList [ ecpo:hasPart [ a ecpo:ClosedChronology ; ecpo:hasBeginVolumeNumbering "5" ; ] , [ a ecpo:ClosedChronology ; ecpo:hasBeginVolumeNumbering "8" ; ]
The text was updated successfully, but these errors were encountered:
:item ecpo:hasChronology ( [ a ecpo:ClosedChronology ; ecpo:hasBeginVolumeNumbering "5" ] [ a ecpo:ClosedChronology ; ecpo:hasBeginVolumeNumbering "6" ] [ a ecpo:ClosedChronology ; ecpo:hasBeginVolumeNumbering "8" ] ) .
This is a RDF collection, but difficult to query by SPARQL.
Sorry, something went wrong.
No branches or pull requests
With using dct:hasPart it is not clear how a list oft Chronologies is ordered.
Order is unclear:
Possible use the Ordered List Ontology (needs a new property ecpo:hasChronologyList):
Possible extend rdf:Seq:
The text was updated successfully, but these errors were encountered: