/*
    TITLE:       upload_ontology_header_annotations.sql
    DESCRIPTION: upload DBFOntoMaestro data
                 INSERT ONTOLOGY_HEADER_ANNOTATIONS
 */

USE   DBFOntoMaestro ;

SET   TRANSACTION READ WRITE ;
START TRANSACTION ;

INSERT INTO ONTOLOGY_HEADER_ANNOTATIONS (iri, literal)
VALUES ('dc:title', 'DBFOschemafy - Ontology of PRINCE2 Management System') ;

INSERT INTO ONTOLOGY_HEADER_ANNOTATIONS (iri, literal)
VALUES ('dc:description', 'The OWL ontology contains property annotations in three languages (English, German, and Dutch), as well as BFO 1.0 class categorizations.') ;


INSERT INTO ONTOLOGY_HEADER_ANNOTATIONS (iri, literal)
VALUES ('dc:rights', 'This ontology is distributed under an Attribution 4.0 International (CC BY 4.0) License - https://creativecommons.org/licenses/by/4.0/. Copyright: Dr. Hlaszny Biosystems Engineering (2024-)') ;

INSERT INTO ONTOLOGY_HEADER_ANNOTATIONS (iri, literal)
VALUES ('dc:publisher', 'Dr. Hlaszny Biosystems Engineering: In Vivo Integration of Neural Parenchyma') ;

INSERT INTO ONTOLOGY_HEADER_ANNOTATIONS (iri, literal)
VALUES ('dc:creator', 'Edit Hlaszny, PhD (Semantic Web Enthusiast, Graduated Plant Biologist)') ;

INSERT INTO ONTOLOGY_HEADER_ANNOTATIONS (iri, literal)
VALUES ('dc:contributor', 'I owe special thanks to Dr Henriette Harmse (European Bioinformatics Institute) and to Dr Marie Keet (University of Cape Town) for their versatile advice and encouragement.') ;

INSERT INTO ONTOLOGY_HEADER_ANNOTATIONS (iri, literal)
VALUES ('dc:date', '2024-12-02') ;

INSERT INTO ONTOLOGY_HEADER_ANNOTATIONS (iri, literal)
VALUES ('dc:hasVersion', '3-002') ;

INSERT INTO ONTOLOGY_HEADER_ANNOTATIONS (iri, literal)
VALUES ('dc:language', 'en, de, nl') ;

INSERT INTO ONTOLOGY_HEADER_ANNOTATIONS (iri, literal)
VALUES ('foaf:homepage', 'https://www.edithlaszny.eu/') ;

INSERT INTO ONTOLOGY_HEADER_ANNOTATIONS (iri, literal)
VALUES ('foaf:mbox', 'edithlaszny@gmail.com (preferred) | edit@edithlaszny.eu') ;

COMMIT ;

/*
    end of upload_ontology_header_annotations.sql
 */
