h2. Aboutness
{jira:RS-1490}
We decided that About Place should not be transitive: neither broader nor narrower
- If it is about Knossos, is it also about Crete, Europe, the World, and the Milky Way?? NO
- Is a picture of a lake in Europe (EPF112795) also about the village Banya in Bulgaria? NO
- Is a photo representing Oceania (PPA361578) also about Polynesia, Easter Island and Rano Raraku? NO
By the same logic About Actor and About Period are not transitive
h2. Place FRs
The Place FRs (Created, Located, Found, From; but *not* About) are transitve:
- Any object related to a sub-place is also related to its super-places.
- So if you search with a super-place, it will find objects related to all its sub-places
Details:
- The FR rules use P89_falls_within
- The BM Place thesaurus uses P88i_forms_part_of (in addition to skos:broader)
- rso.ttl fixes an omission in ECRM:
{jira:RS-1057}
{noformat}crm:P88i_forms_part_of rdfs:subPropertyOf crm:P89_falls_within. {noformat}
h2. Person FRs
- Actor: owner/keeper, influenced, met, about, found: NO; created YES
-- The choice that "found" is not transitive is a bit arbitrary and means you can't search "found by British".
The other choices I believe are reasonable
-- I use P107i_is_current_or_former_member_of, so you can search "created by Dutch" and will find objects by Rembrandt.
h2. Type, Subject
{jira:RS-1830}
I have added "P127_has_broader_term" to search by Type (is/has/about), so a search with a broader term will return all narrower terms as well
h2. Material, Technique
Made of Material and Used Technique should also be transitive
{jira:RS-1713}
EEU71607 A fabric belt with metal buckle
The query "found at Sofia-city and made of copper-alloy" returns this object from BM search but does not return it in RS search, why?
- The object is http://test.researchspace.org:8081/resource/id/object/EEU71607?inference=all
- It is found with "found at Sofia-city and made of brass".
- the object rso:FR45_is_made_of thes:x10411, thes:x10646, thes:x11991
- thes:x10411 (brass) has skos:broader thes:x10627 (copper alloy). (This last term has altLabel "brass" but scopeNote that explains that it's different from brass).
- the [current definition of FR45_is_made_of|https://confluence.ontotext.com/display/ResearchSpace/FR+Implementation#FRImplementation-ThingismadeofMaterialFR45ismadeof] doesn't traverse the broader hierarchy.
- the [old definition of FR45_is_made_of|https://confluence.ontotext.com/display/ResearchSpace/FR+Implementation-old#FRImplementation-old-ThingismadeofMaterialFR45ismadeof] doesn't traverse the broader hierarchy either.
- in fact it has been defined like this since [15 May 2012|https://confluence.ontotext.com/pages/viewpage.action?pageId=17603309] (!)
- This came from Martin's definition: TR ICS-FORTH/TR-429 (April 2012) on p64 when defining "Thing is made of" does not use "P127 has broader term".
-- I now notice that one p63 when defining "Thing has type" they DO use "P127 has broader term" (so the above is a discrepancy)
- It has survived supposed inspections by Dominic and Peter Main
Both the BM Material and BM Technique thesauri are hierarchical:
{code:sql}
select * {[skos:inScheme thes:material; skos:prefLabel ?material;
skos:broader [skos:prefLabel ?broader]]}
select * {[skos:inScheme thes:technique; skos:prefLabel ?tech;
skos:broader [skos:prefLabel ?broader]]}
{code}
h2. From Period
{jira:RS-1832}
Material Culture is mapped to crm:E4_Period and skos:Concept, and object production is linked to the Period using P10_falls_within:
{noformat}
<object/YCA75313/production/3>
crm:P3_has_note "Production Period / Culture :: Late Christian Period";
crm:P10_falls_within thes:x14625 .
{noformat}
One can search for the period using FR12_was_present_at "Thing was present at (has met, is from) event/period" (see [FR Enhancements#Thing present at Event or from Period] and [FR Implementation#Thing has met Event- FR12_was_present_at]). There's a transitive loop over P9&P10 at the end, so it's transitive.
Unfortunately the Period thesaurus uses only skos:broader but not P9_consists_of, eg [http://test.researchspace.org:8081/resource/thes/x107598]:
{noformat}
thes:x107598 a crm:E4_Period, skos:Concept;
skos:inScheme thes:matcult;
skos:prefLabel "Ancient Egypt";
skos:broader thes:x112519.
{noformat}