@prefix : . @prefix dc: . @prefix fr: . @prefix owl: . @prefix rdf: . @prefix xml: . @prefix xsd: . @prefix bias: . @prefix rdfs: . @prefix reaction: . @prefix magicalnumber: . @base . rdf:type owl:Ontology ; "Erica Andreose" ; "Magical Number 7+-2 bias ontology"@en ; rdfs:comment "Magical Numbero 7+-2 bias ontology" . ################################################################# # Annotation properties ################################################################# ### http://purl.org/dc/elements/1.1/creator rdf:type owl:AnnotationProperty . ### http://purl.org/dc/elements/1.1/title rdf:type owl:AnnotationProperty . ### http://www.w3.org/2003/06/sw-vocab-status/ns#term_status rdf:type owl:AnnotationProperty . ################################################################# # Object Properties ################################################################# ### http://www.ontologydesignpatterns.org/cp/owl/reaction.owl#hasConsequence reaction:hasConsequence rdf:type owl:ObjectProperty ; rdfs:domain reaction:Action ; rdfs:range ; rdfs:isDefinedBy ; rdfs:label "hasConsequence"@en . ### http://www.ontologydesignpatterns.org/cp/owl/reaction.owl#isPerformedBy reaction:isPerformedBy rdf:type owl:ObjectProperty ; owl:inverseOf reaction:performs ; rdfs:domain reaction:Action ; rdfs:range bias:BiasedAgent ; rdfs:isDefinedBy ; rdfs:label "is performed by"@en , "è eseguita da"@it . ### http://www.ontologydesignpatterns.org/cp/owl/reaction.owl#performs reaction:performs rdf:type owl:ObjectProperty ; rdfs:domain bias:BiasedAgent ; rdfs:range reaction:Action ; rdfs:isDefinedBy ; rdfs:label "esegue"@it , "performs"@en . ### https://raw.githubusercontent.com/giorgiacrosilla/biasontology/main/owl/General.owl#isAffectedBy bias:isAffectedBy rdf:type owl:ObjectProperty ; rdfs:domain [ rdf:type owl:Class ; owl:unionOf ( bias:BiasedAgent ) ] ; rdfs:range bias:CognitiveBias ; rdfs:isDefinedBy ; rdfs:label "isAffectedBy"@en . ### https://raw.githubusercontent.com/giorgiacrosilla/biasontology/main/owl/TheMagicalNumber.owl#areIncludedIn magicalnumber:areIncludedIn rdf:type owl:ObjectProperty ; owl:inverseOf magicalnumber:include ; rdfs:domain magicalnumber:InformationItem ; rdfs:range reaction:Action ; rdfs:isDefinedBy ; rdfs:label "areIncludedIn"@en . ### https://raw.githubusercontent.com/giorgiacrosilla/biasontology/main/owl/TheMagicalNumber.owl#hasCognitiveCapacity magicalnumber:hasCognitiveCapacity rdf:type owl:ObjectProperty ; owl:inverseOf magicalnumber:isCognitiveCapacityOf ; rdfs:domain bias:BiasedAgent ; rdfs:range magicalnumber:CognitiveCapacity ; rdfs:comment "Cognitive Capacity represents the storage memory capacity of the agent."@en ; rdfs:isDefinedBy ; rdfs:label "hasCognitiveCapacity"@en . ### https://raw.githubusercontent.com/giorgiacrosilla/biasontology/main/owl/TheMagicalNumber.owl#include magicalnumber:include rdf:type owl:ObjectProperty ; rdfs:domain reaction:Action ; rdfs:range magicalnumber:InformationItem ; rdfs:comment "The \"memorization\" action of the Agent includes several information items."@en ; rdfs:isDefinedBy ; rdfs:label "include"@en . ### https://raw.githubusercontent.com/giorgiacrosilla/biasontology/main/owl/TheMagicalNumber.owl#isCognitiveCapacityOf magicalnumber:isCognitiveCapacityOf rdf:type owl:ObjectProperty ; rdfs:domain magicalnumber:CognitiveCapacity ; rdfs:range bias:BiasedAgent . ### https://raw.githubusercontent.com/giorgiacrosilla/biasontology/main/owl/TheMagicalNumber.owl#toBeStored magicalnumber:toBeStored rdf:type owl:ObjectProperty ; rdfs:domain magicalnumber:InformationItem ; rdfs:range magicalnumber:CognitiveCapacity ; rdfs:isDefinedBy ; rdfs:label "toBeStored"@en . ### https://raw.githubusercontent.com/giorgiacrosilla/biasontology/main/owl/TheMagicalNumber.owl#wantsToRemember magicalnumber:wantsToRemember rdf:type owl:ObjectProperty ; rdfs:domain bias:BiasedAgent ; rdfs:range magicalnumber:InformationItem ; rdfs:isDefinedBy ; rdfs:label "wantsToRemember"@en . ################################################################# # Data properties ################################################################# ### https://raw.githubusercontent.com/giorgiacrosilla/biasontology/main/owl/TheMagicalNumber.owl#hasMaxValue magicalnumber:hasMaxValue rdf:type owl:DatatypeProperty ; rdfs:range xsd:int . ### https://raw.githubusercontent.com/giorgiacrosilla/biasontology/main/owl/TheMagicalNumber.owl#hasMinValue magicalnumber:hasMinValue rdf:type owl:DatatypeProperty ; rdfs:range xsd:int . ### https://raw.githubusercontent.com/giorgiacrosilla/biasontology/main/owl/TheMagicalNumber.owl#hasValue magicalnumber:hasValue rdf:type owl:DatatypeProperty ; rdfs:range xsd:boolean ; rdfs:isDefinedBy magicalnumber: . ################################################################# # Classes ################################################################# ### http://www.ontologydesignpatterns.org/cp/owl/reaction.owl#Action reaction:Action rdf:type owl:Class ; rdfs:comment "Action can produce more than a single event. Mutiple events can share the same position in the sequence."@en ; rdfs:isDefinedBy ; rdfs:label "Action"@en , "Azione"@it . ### http://xmlns.com/foaf/0.1/Agent rdf:type owl:Class ; rdfs:comment "An agent (eg. person, group, software or physical artifact)." ; rdfs:label "Agent" ; "stable" . ### https://raw.githubusercontent.com/giorgiacrosilla/biasontology/main/owl/General.owl#BiasedAgent bias:BiasedAgent rdf:type owl:Class ; rdfs:subClassOf ; rdfs:comment "Agent (foaf:Agent) who is effected by the bias."@en ; rdfs:isDefinedBy ; rdfs:label "BiasedAgent"@en . ### https://raw.githubusercontent.com/giorgiacrosilla/biasontology/main/owl/General.owl#CognitiveBias bias:CognitiveBias rdf:type owl:Class ; rdfs:comment "Cognitive bias" ; rdfs:isDefinedBy ; rdfs:label "CognitiveBias"@en . ### https://raw.githubusercontent.com/giorgiacrosilla/biasontology/main/owl/General.owl#TheMagicalNumber bias:TheMagicalNumber rdf:type owl:Class ; rdfs:subClassOf bias:CognitiveBias ; rdfs:comment "\"The Magical Number Seven, Plus or Minus Two: Some Limits on Our Capacity for Processing Information\"[1] is one of the most highly cited papers in psychology.[2][3][4] It was written by the cognitive psychologist George A. Miller of Harvard University's Department of Psychology and published in 1956 in Psychological Review. It is often interpreted to argue that the number of objects an average human can hold in short-term memory is 7 ± 2. This has occasionally been referred to as Miller's law."@en ; rdfs:isDefinedBy ; rdfs:label "TheMagicalNumber"@en . ### https://raw.githubusercontent.com/giorgiacrosilla/biasontology/main/owl/TheMagicalNumber.owl#CognitiveCapacity magicalnumber:CognitiveCapacity rdf:type owl:Class . ### https://raw.githubusercontent.com/giorgiacrosilla/biasontology/main/owl/TheMagicalNumber.owl#InformationItem magicalnumber:InformationItem rdf:type owl:Class ; rdfs:comment "Information Item that the Agent wants to memorize."@en ; rdfs:isDefinedBy ; rdfs:label "InformationItem"@en . ### https://w3id.org/framester/data/framestercore/SuccessOrFailure rdf:type owl:Class ; rdfs:comment "Output of the action that returns a successfull on an unsuccessfull memorization action."@en ; rdfs:isDefinedBy ; rdfs:label "SuccessOrFailure"@en . ################################################################# # Individuals ################################################################# ### https://raw.githubusercontent.com/giorgiacrosilla/biasontology/main/owl/TheMagicalNumber.owl#BusyParent magicalnumber:BusyParent rdf:type owl:NamedIndividual , bias:BiasedAgent ; reaction:performs magicalnumber:CreateShoppingList ; bias:isAffectedBy magicalnumber:MagicalNumberBias ; magicalnumber:hasCognitiveCapacity magicalnumber:CognitiveCapacity ; magicalnumber:wantsToRemember magicalnumber:ListItem ; rdfs:comment "A busy parent wants to make a shopping list."@en ; rdfs:isDefinedBy ; rdfs:label "BusyParent" . ### https://raw.githubusercontent.com/giorgiacrosilla/biasontology/main/owl/TheMagicalNumber.owl#CognitiveCapacity magicalnumber:CognitiveCapacity rdf:type owl:NamedIndividual , magicalnumber:CognitiveCapacity ; magicalnumber:isCognitiveCapacityOf magicalnumber:BusyParent . ### https://raw.githubusercontent.com/giorgiacrosilla/biasontology/main/owl/TheMagicalNumber.owl#CreateShoppingList magicalnumber:CreateShoppingList rdf:type owl:NamedIndividual , reaction:Action ; reaction:hasConsequence magicalnumber:MemorizeOrNot ; reaction:isPerformedBy magicalnumber:BusyParent ; rdfs:comment "A shopping list to help the busy parent to go to the supermarket."@en ; rdfs:isDefinedBy ; rdfs:label "CreateShoppingList" . ### https://raw.githubusercontent.com/giorgiacrosilla/biasontology/main/owl/TheMagicalNumber.owl#ListItem magicalnumber:ListItem rdf:type owl:NamedIndividual , magicalnumber:InformationItem ; magicalnumber:hasMaxValue 9 ; magicalnumber:hasMinValue 5 ; rdfs:comment "List item of the shopping list."@en ; rdfs:isDefinedBy ; rdfs:label "ListItem" . ### https://raw.githubusercontent.com/giorgiacrosilla/biasontology/main/owl/TheMagicalNumber.owl#MagicalNumberBias magicalnumber:MagicalNumberBias rdf:type owl:NamedIndividual , bias:CognitiveBias ; rdfs:isDefinedBy ; rdfs:label "MagicalNumberBias" . ### https://raw.githubusercontent.com/giorgiacrosilla/biasontology/main/owl/TheMagicalNumber.owl#MemorizeOrNot magicalnumber:MemorizeOrNot rdf:type owl:NamedIndividual , ; magicalnumber:hasValue "false"^^xsd:boolean , "true"^^xsd:boolean ; rdfs:isDefinedBy ; rdfs:label "MemorizeOrNot" . ################################################################# # Annotations ################################################################# magicalnumber:CognitiveCapacity rdfs:comment "Cognitive capacity that represent the memory capacity."@en ; rdfs:isDefinedBy ; rdfs:label "CognitiveCapacity"@en . ### Generated by the OWL API (version 4.5.26.2023-07-17T20:34:13Z) https://github.com/owlcs/owlapi