An ontology that represents concepts and relationships to describe bells, bell towers and bell ringers.
🔗 Ontology URI: https://w3id.org/polifonia/ontology/bells-ontology/
The Bells Ontology makes it possible to describe bells, bell towers and bell ringers. Bells, which are the main subject of this module, are described by means of measurable, intrinsic aspects such as weight, materials, conservation status, as well as properties deriving from interpretation situations, such as authorship attribution, dating, execution techniques, and their related objects (e.g. bibliography). The Bell ontology modules reuses and extends the ArCo ontology network.
ID | Competency question |
---|---|
1 | Where is the building/church/bell tower? |
2 | When (what year) was the building built? |
3 | In which context is the building located (urban, periurban...)? |
4 | Are there bells in the church/bell tower? How many bells are in the church/bell tower? |
5 | Is there a single bell or a poliorganic instrument (a set of bells) in a church/bell tower? |
6 | By whom (by which foundry) were they cast? |
7 | When were they cast? |
8 | Which is the material of the bell? |
9 | Which is the weight of the bell? |
10 | Which are the measures of the bell? |
11 | Which is the extension of the whole set of bells in a bell tower? |
ID | Competency question |
---|---|
12 | Is the bell tower associated to a religious building or a civil building? |
13 | Which is the mounting system of the bell? |
14 | Which is the nominal/fundamental note of the bell? |
15 | What kind of execution techniques are possible to perform according to a specific mounting system? |
16 | Can a set of bells be played electrically, manually, or both? |
17 | Is the sound in a place currently performed by hand or by electric means? |
18 | How/Using which tools/Using which execution technique(s)/Following which sound practices is the set of bells played, when played manually? |
19 | What are the recordings involving a bell or set of bells? |
CQ4 - Are there bells in the church/bell tower?
PREFIX tiapit: <https://w3id.org/italia/onto/TI/>
PREFIX core: <https://w3id.org/arco/ontology/core/>
PREFIX a-cd: <https://w3id.org/arco/ontology/context-description/>
PREFIX arco: <https://w3id.org/arco/ontology/arco/>
SELECT DISTINCT ?site ?siteLab ?bell ?desc
WHERE {
?bell arco:isCulturalPropertyComponentOf ?setofbells ;
rdf:type arco:MusicHeritage ;
a-loc:hasTimeIndexedTypedLocation ?titl ;
core:description ?desc ;
dc:subject ?o .
?titl a-loc:atSite ?site .
?site rdfs:label ?siteLab .
FILTER(str(?o) = 'campana')
}
CQ6 - By whom (by which foundry) were they cast?
PREFIX tiapit: <https://w3id.org/italia/onto/TI/>
PREFIX core: <https://w3id.org/arco/ontology/core/>
PREFIX a-cd: <https://w3id.org/arco/ontology/context-description/>
PREFIX arco: <https://w3id.org/arco/ontology/arco/>
SELECT DISTINCT ?bell ?desc ?author ?authorLab ?dating ?datingTime
WHERE {
?bell arco:isCulturalPropertyComponentOf ?setofbells ;
rdf:type arco:MusicHeritage ;
core:description ?desc ;
a-cd:hasDating ?dating ;
a-cd:hasAuthor ?author ;
dc:subject ?o .
?author rdfs:label ?authorLab .
?dating a-cd:hasDatingEvent ?datingEv .
?datingEv tiapit:atTime ?datingTime .
FILTER(str(?o) = 'campana')
}
CQ9 - Which is the weight of the bell?
PREFIX tiapit: <https://w3id.org/italia/onto/TI/>
PREFIX muapit: <https://w3id.org/italia/onto/MU/>
PREFIX core: <https://w3id.org/arco/ontology/core/>
PREFIX a-cd: <https://w3id.org/arco/ontology/context-description/>
PREFIX arco: <https://w3id.org/arco/ontology/arco/>
PREFIX a-dd: <https://w3id.org/arco/ontology/denotative-description/>
SELECT DISTINCT ?bell ?desc ?m ?mLab ?v ?u ?uLab
WHERE {
?bell arco:isCulturalPropertyComponentOf ?setofbells ;
rdf:type arco:MusicHeritage ;
a-loc:hasTimeIndexedTypedLocation ?titl ;
core:description ?desc ;
a-dd:hasMeasurementCollection ?mc ;
dc:subject ?o .
?mc a-dd:hasMeasurement ?m .
?m a-dd:hasMeasurementType a-dd:Weight .
?m rdfs:label ?mLab ;
a-dd:hasValue ?mVal .
?mVal muapit:value ?v ;
muapit:hasMeasurementUnit ?u .
?u rdfs:label ?uLab
FILTER(str(?o) = 'campana')
}
Considering that, apart from the definition of some novel classes inside the module (such as Bell, SetOfBells, and BellTower), the BELL module widely relies on the ArCo ontology network, we report here useful statistics of ArCo:
- number of classes: 340
- number of object properties: 616
- number of datatype properties: 154
- number of logical axioms: 3,416
Data about two sets of bells, modelled according to the imported ArCo ontology network, have been published so far:
- https://w3id.org/arco/resource/MusicHeritage/0700377972-0 (68 triples)
- https://w3id.org/arco/resource/MusicHeritage/0700377973-0 (68 triples)
Relevant properties describing a set of bells are:
- arco:numberOfComponents (how many bells are in the church?)
- a-loc:hasTimeIndexedTypedLocation (are there bells in the church?)
- a-dd:hasMaterial (which is the material of the bell?)
- a-cd:hasAuthor / a-cd:hasPreferredAuthor / a-cd:hasAuthorshipAttribution (by whom (by which foundry) were they cast?)
- a-cd:hasDating (in which year were they cast?)
- a-dd:hasMeasurementCollection (which is the weight of the bell?, which are the measures of the bell?)
This work is licensed under a Creative Commons Attribution 4.0 International License.