/*
    TITLE:       upload_IAO_annotations.sql
    DESCRIPTION: upload DBFOntoMaestro data
                 INSERT IAO_ANNOTATIONS
 */

USE   DBFOntoMaestro ;

SET   TRANSACTION READ WRITE ;
START TRANSACTION ;

INSERT INTO IAO_ANNOTATIONS (abbreviated_IRI, annotation_property_type, annotation_literal, language)
VALUES ('#BFO_URI',               'rdfs:label',       'BFO equivalent', 'en') ;

INSERT INTO IAO_ANNOTATIONS (abbreviated_IRI, annotation_property_type, annotation_literal, language)
VALUES ('obo:IAO_0000112',        'rdfs:label',       'example of usage', 'en') ;

INSERT INTO IAO_ANNOTATIONS (abbreviated_IRI, annotation_property_type, annotation_literal, language)
VALUES ('obo:IAO_0000115',        'rdfs:label',       'definition', 'en') ;

INSERT INTO IAO_ANNOTATIONS (abbreviated_IRI, annotation_property_type, annotation_literal, language)
VALUES ('obo:IAO_0000119',        'rdfs:label',       'definition source', 'en') ;

INSERT INTO IAO_ANNOTATIONS (abbreviated_IRI, annotation_property_type, annotation_literal, language)
VALUES ('obo:IAO_0000600',        'rdfs:label',       'elucidation', 'en') ;

/*  disabled at 2024-12-18 05:23

INSERT INTO IAO_ANNOTATIONS (abbreviated_IRI, annotation_property_type, annotation_literal, language)
VALUES ('owl:Thing',              'obo:IAO_0000115',  'The class owl:Thing is available in OWL 2 as built-in class with a predefined semantics: The class owl:Thing represents the set of all individuals.', 'en') ;

INSERT INTO IAO_ANNOTATIONS (abbreviated_IRI, annotation_property_type, annotation_literal, language)
VALUES ('owl:Thing',              'obo:IAO_0000119',  'OWL 2 Web Ontology Language | Structural Specification and Functional-Style Syntax (Second Edition) | W3C Recommendation 11 December 2012 | https://www.w3.org/TR/owl2-syntax/ ', 'en') ;

INSERT INTO IAO_ANNOTATIONS (abbreviated_IRI, annotation_property_type, annotation_literal, language)
VALUES ('owl:topObjectProperty',  'obo:IAO_0000115',  'The object property owl:topObjectProperty is available in OWL 2 as built-in object properties with a predefined semantics: The object property connects all possible pairs of individuals.', 'en') ;

INSERT INTO IAO_ANNOTATIONS (abbreviated_IRI, annotation_property_type, annotation_literal, language)
VALUES ('owl:topObjectProperty',  'obo:IAO_0000119',  'OWL 2 Web Ontology Language | Structural Specification and Functional-Style Syntax (Second Edition) | W3C Recommendation 11 December 2012 | https://www.w3.org/TR/owl2-syntax/ ', 'en') ;

INSERT INTO IAO_ANNOTATIONS (abbreviated_IRI, annotation_property_type, annotation_literal, language)
VALUES ('owl:topDataProperty',    'obo:IAO_0000115',  'The data property owl:topDataProperty is available in OWL 2 as built-in data properties with a predefined semantics: The data property owl:topDataProperty connects all possible individuals with all literals.', 'en') ;

INSERT INTO IAO_ANNOTATIONS (abbreviated_IRI, annotation_property_type, annotation_literal, language)
VALUES ('owl:topDataProperty',    'obo:IAO_0000119',  'OWL 2 Web Ontology Language | Structural Specification and Functional-Style Syntax (Second Edition) | W3C Recommendation 11 December 2012 | https://www.w3.org/TR/owl2-syntax/ ', 'en') ;

*/

COMMIT ;
