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

USE   DBFOntoMaestro ;

SET   TRANSACTION READ WRITE ;
START TRANSACTION ;

INSERT INTO DATA_PROPERTY_ANNOTATIONS (data_property_IRI, annotation_type_IRI, language, annotation)
VALUES ('actorsEffortAtDocumentCreation', 'obo:IAO_0000115', 'en',
        'The data property \'actorsEffortAtDocumentCreation\' describes the contribution of an actor.'
       ) ;

INSERT INTO DATA_PROPERTY_ANNOTATIONS (data_property_IRI, annotation_type_IRI, language, annotation)
VALUES ('approvingCompetenceAt',          'obo:IAO_0000115', 'en',
        'The data property \'approvingCompetenceAt\' identifies of the actor\'s presumptive competence.'
       ) ;

INSERT INTO DATA_PROPERTY_ANNOTATIONS (data_property_IRI, annotation_type_IRI, language, annotation)
VALUES ('contributingLevel',              'obo:IAO_0000115', 'en',
        'The data property \'contributingLevel\' identifies the level of the contribution portion added by an actor.'
       ) ;

INSERT INTO DATA_PROPERTY_ANNOTATIONS (data_property_IRI, annotation_type_IRI, language, annotation)
VALUES ('documentAsActorsContribution',   'obo:IAO_0000115', 'en',
        'The data property \'documentAsActorsContribution\' identifies the portion created by an actor.'
       ) ;

COMMIT ;

/*
    end of upload_data_property_annotations.sql
 */
