spice-h2020 / SON

This repository contains the source code of the SPICE Ontology Network
5 stars 0 forks source link

User Profile and Community Model #48

Open luigi-asprino opened 2 years ago

luigi-asprino commented 2 years ago

Depends on

47

Description

Mario Rossi is 50 and has a background of art teacher and football player. Mario belongs to an explicit community and has experienced the emotion Fear (according to Pluchick theory). Mario's personal value is Loyalty (in the sense of Haidt theory).

Source

WP3

Competency Questions

TODO

Ontology/Ontology Design Patterns Relevant for the scenario

TODO

SPARQL Questions

TODO

Toy Dataset/SPARQL Endpoint

@prefix upx: <https://w3id.org/spice/SON/upX#> .
@prefix dul: <http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#> .
@prefix ex: <https://w3id.org/spice/SON/ex#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .

ex:Mario_Rossi a dul:Person, upx:Liberal, upx:Secular ;
    upx:hasPersonalInformation ex:artTeacher, ex:footballPlayer, ex:FearMR, ex:LoyaltyMR ;
    dul:isMemberOf ex:CommunityMR ;
    upx:age "50" .

ex:artTeacher a upx:Background ;
    rdfs:label "Art teacher" .

ex:footballPlayer a upx:Background ;
    rdfs:label "Football Player" .

ex:FearMR a upx:ExperiencedEmotion ;
    upx:hasEmotion <https://w3id.org/spice/SON/PlutchikEmotion/Fear> .

ex:LoyaltyMR a upx:PersonalValues ;
    upx:hasValues <https://w3id.org/spice/SON/HaidtValues#Loyalty> .

ex:CommunityMR a <https://w3id.org/spice/SON/CommunityOntology/ExplicitCommunity> .