Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Probably typo, non existing crm:P22_transferred_title_from is used in the data. #516

Open
aindlq opened this issue Dec 1, 2023 · 0 comments
Labels
data This is an issue with data Hertziana feedback provided by Hertziana's staff

Comments

@aindlq
Copy link
Contributor

aindlq commented Dec 1, 2023

In CIDOC-CRM there is crm:P23_transferred_title_from and crm:P22_transferred_title_to.

Most likely crm:P23_transferred_title_from was intended property.

The problem that I can't find where this data is coming from, the only match in https://github.com/ArtResearch/pharos-mappings is in the field definition:

SELECT  distinct ?value (GROUP_CONCAT(DISTINCT ?provider; SEPARATOR=\", \") AS ?provider) (GROUP_CONCAT(DISTINCT ?providerLabel; SEPARATOR=\", \") AS ?providerLabel) (count(distinct ?provider) as ?countProviders) WHERE  
{
graph ?graph 
  	{
		?subject crm:P24i_changed_ownership_through ?acquisition.
    		?acquisition crm:P22_transferred_title_from|crm:P23_transferred_title_from ?value.
	}
	?graph <https://artresearch.net/custom/has_provider> ?provider .
	?provider rdfs:label ?providerLabel.
}
GROUP BY ?value order by desc(COUNT(distinct ?provider))

query to get all instances with this property:

PREFIX crm: <http://www.cidoc-crm.org/cidoc-crm/>
SELECT * {
  ?s crm:P22_transferred_title_from ?o .
}
@aindlq aindlq added data This is an issue with data Hertziana feedback provided by Hertziana's staff labels Dec 1, 2023
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
data This is an issue with data Hertziana feedback provided by Hertziana's staff
Projects
None yet
Development

No branches or pull requests

1 participant