ArtResearch / artresearch.net

ArtResearch ResearchSpace application hosted at https://artresearch.net
5 stars 1 forks source link

Use crm:P32_used_general_technique instead of crm:P33_used_specific_technique #517

Open aindlq opened 7 months ago

aindlq commented 7 months ago

From the CIDOC-CRM documentation on P33 used specific technique:

The property differs from P32 used general technique (was technique of) in that P33 refers to an instance of E29 Design or Procedure, which is a concrete information object in its own right rather than simply being a term or a method known by tradition. Typical examples would include intervention plans for conservation or the construction plans of a building.

From what I can see in the data me actually mostly have terms, e.g https://artresearch.net/resource/midas/vocabulary/technique/46909100

So the correct property to use is crm:P32_used_general_technique. Also the actual technique should be E55_Type not E29_Design_or_Procedure. Because currently we are aligning E29 to concepts from AAT, which is conceptually wrong.

Query to get problematic entities:

PREFIX owl: <http://www.w3.org/2002/07/owl#>
PREFIX crm: <http://www.cidoc-crm.org/cidoc-crm/>
SELECT * {
  ?s crm:P33_used_specific_technique  ?o .
  ?o owl:sameAs ?same .
} LIMIT 100