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

mm:Editor needed #14

Open
guillotel-nothmann opened this issue Oct 11, 2023 · 1 comment
Open

mm:Editor needed #14

guillotel-nothmann opened this issue Oct 11, 2023 · 1 comment
Labels
feature-request To request features for future development

Comments

@guillotel-nothmann
Copy link
Member

guillotel-nothmann commented Oct 11, 2023

Tonalities needs to identify the (scientific) editor(s) of a score.
For example:

mm:PublicationSituation -> mm:hasEditor -> meta:Editor
with meta:Editor <- rdf:type - electronicEditor | oriinalEditor

Ideally we would like to specify the year of this edition and its version.

@jonnybluesman jonnybluesman added the feature-request To request features for future development label Oct 24, 2023
@pvankranenburg
Copy link

pvankranenburg commented Dec 15, 2023

This is how it is done for TUNES:

PREFIX mm:  <http://w3id.org/polifonia/ontology/music-meta/>
PREFIX core:  <http://w3id.org/polifonia/ontology/core/>
PREFIX tunes:  <http://w3id.org/polifonia/ontology/tunes/>
PREFIX src: <http://w3id.org/polifonia/ontology/source/>
PREFIX pon-resource: <http://w3id.org/polifonia/resource/tunes/>

    ?source_iri a src:Source ; 
        src:hasType ?source_type_iri ;  #print, manuscript, recording, ...
        src:hasSubject ?song_iri ;
        src:hasReference ?song_formatted_reference ;
        core:title ?source_title ;  # add to ontology
        core:description ?source_description_url ;  # add to ontology
        src:hasScan ?source_scan_url ;  # add to ontology
        # owners (past and present) can be modelled this way. In this case, in ther WHERE clause (or directly in the JSON), it has to be specified the owner state (e.g. current, former)
        src:hasOwner [  # add to ontology
            a core:Agent ;
            src:ownershipState ?source_ownership_state ;
            core:id ?source_current_owner_id ;  # add to ontology
            core:name ?source_current_owner_name ] ;  # add to ontology
        mm:hasPublicationSituation ?publication_iri ;
        core:hasTimeInterval [
            a core:TimeInterval ;
            core:startDate ?source_date ;  # TODO: split dates into start and end dates
            core:endDate ?source_date ] ;  # TODO: split dates into start and end dates
        core:hasAgentRole [
            a core:AgentRole ;
            core:hasRole pon-resource:Role/Scriber ;
            core:hasAgent ?source_scribe_iri ] ;
        core:hasAgentRole [
            a core:AgentRole ;
            core:hasRole pon-resource:Role/Editor ;
            core:hasAgent ?source_author_iri ] ;
        core:hasAgentRole [
            a core:AgentRole ;
            core:hasRole pon-resource:Role/Author ;
            core:hasAgent ?source_author_iri ] .

    ?publication_iri
        a mm:PublicationSituation ;
        core:hasPlace ?blank_publication_place ;
        core:hasTimeInterval ?blank_publication_time_interval ;
        mm:hasPublisher ?score_publisher_iri .

    ?blank_publication_place a core:Place ;
            core:name ?source_place_of_publishing .

    ?blank_publication_time_interval a core:TimeInterval ;
            core:startDate ?score_date ;
            core:endDate ?score_date .

    ?score_publisher_iri a mm:Publisher, core:Agent ;
        core:name ?publisher_name .
        core:hasPlace [
            a core:Place ;
            core:name ?source_place_of_publishing ] .

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
feature-request To request features for future development
Projects
None yet
Development

No branches or pull requests

3 participants