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

Artefact description - DMH #38

Open
marilenadaquino opened this issue Feb 11, 2021 · 0 comments
Open

Artefact description - DMH #38

marilenadaquino opened this issue Feb 11, 2021 · 0 comments
Labels
Artwork-related knowledge to be evaluated the module/or pattern is ready for the ontology evaluation

Comments

@marilenadaquino
Copy link
Collaborator

marilenadaquino commented Feb 11, 2021

Depends on

#35 (social media) #20 (script)

Description

The cataloguing description of a design artefact of the Design Museo of Helsinki.

Source

An exemplar artefact from the Design Museum Catalogue

{
  "inventory": "36847",
  "id": "2708",
  "url_en": "https://collection.designmuseum.fi/en/item/dress-green",
  "title": "Dress (green)",
  "designer": "Maj Kuhlefelt",
  "images_urls": [
   "https://designmuseum.api.digimuseum.co/wp-content/uploads/2017/12/wsi-imageoptim-vihrea21-320x421.jpg"
  ],
  "description_en": "In the 1960s Finnish fashion label, Finn-Flare, previously known as Salon Leninkitukku, boldly aimed at the export market and began to utilize talents of well-known designers such as Marjatta Metsovaara and Maj Kuhlefelt.  ‘Finn-Flare’ was originally Kuhlefelt’s suggested title for a fashion collection, but it ultimately became the company´s namesake and is still in existence today.\n",
  "IG_posts": [
   "https://www.instagram.com/p/BSWxI3DhQ-x"
  ]
 }

Competency Questions

ARTEFACT

  • CQ1 What is the inventory number of the artefact?
  • CQ2 What is the title of the artefact?
  • CQ3 Who is the author to whom the artefact has been attributed?
  • CQ4 Who is the keeper of the artefact?
  • CQ5 What is the URL of the online cataloguing record?
  • CQ6 What is the URL of an online image of the artefact?
  • CQ7 What is the curatorial description of the artefact?
  • CQ8 What are the social media posts that address the artefact at hand?

Ontology/Ontology Design Patterns Relevant for the scenario

SPARQL Questions

Prefixes

PREFIX arco: <https://w3id.org/arco/ontology/arco/> 
PREFIX arco-cd <https://w3id.org/arco/ontology/context-description/> 
PREFIX arco-core: <https://w3id.org/arco/ontology/core/> 
PREFIX dc : <http://purl.org/dc/elements/1.1/> 
PREFIX schema: <http://schema.org/> 

CQ1 What is the inventory number of the artefact?

SELECT ?inv
WHERE { ?artefact arco-cd:hasInventory ?inv . } 

CQ2 What is the title of the artefact?

SELECT ?title
WHERE { ?artefact arco-cd:hasTitle ?title . } 

CQ3 Who is the author to whom the artefact has been attributed?

SELECT ?author
WHERE { ?artefact arco-cd:hasAuthorshipAttribution / arco-cd:hasAttributedAuthor ?author . } 

CQ4 Who is the keeper of the artefact?

SELECT ?keeper
WHERE { ?artefact arco:hasRelatedAgency ?keeper . } 

CQ5 What is the URL of the online cataloguing record?

SELECT ?record
WHERE { ?artefact dc:source ?record . } 

CQ6 What is the URL of an online image of the artefact?

SELECT ?url
WHERE { ?artefact arco-cd:hasDocumentation ?img . 
   ?img arco-cd:hasDocumentationType <https://w3id.org/spice/doc_type/catalogue_photograph> ; 
            arco-cd:url ?url .
} 

CQ7 What is the curatorial description of the artefact?

SELECT ?desc
WHERE { ?artefact arco-core:description ?desc . } 

CQ8 What are the social media posts that address the artefact at hand?

SELECT ?post
WHERE { ?artefact schema:subjectOf ?post . } 

Toy Dataset/SPARQL Endpoint

<https://w3id.org/spice/dmh/artefact/36847> a arco:CulturalProperty ;
    dc:source <https://collection.designmuseum.fi/en/item/dress-green> ; # online cataloguing record
    schema:subjectOf <https://www.instagram.com/p/BSWxI3DhQ-x> ; # social media posts 
    arco:hasRelatedAgency <https://w3id.org/spice/institute/dmh> ; # keeper
    arco-cd:hasAuthorshipAttribution <https://w3id.org/spice/dmh/artefact/36847_attribution_1> ; # attribution
    arco-cd:hasDocumentation <https://w3id.org/spice/dmh/artefact/36847_img_1> ; 
    arco-cd:hasInventory "36847" ;  # inventory number 
    arco-cd:hasTitle "Dress (green)" ; # title
    arco-core:description """In the 1960s Finnish fashion label, Finn-Flare, previously known as Salon Leninkitukku, boldly aimed at the export market and began to utilize talents of well-known designers such as Marjatta Metsovaara and Maj Kuhlefelt.  ‘Finn-Flare’ was originally Kuhlefelt’s suggested title for a fashion collection, but it ultimately became the company´s namesake and is still in existence today.""" . # curatorial description

<https://w3id.org/spice/dmh/artefact/36847_attribution_1> arco-cd:hasAttributedAuthor <https://w3id.org/spice/dmh/agent/031ff2b1fb358bb064c02871fe6ab132> . 

<https://w3id.org/spice/dmh/agent/031ff2b1fb358bb064c02871fe6ab132> rdfs:label "Maj Kuhlefelt" . # author

<https://w3id.org/spice/dmh/artefact/36847_img_1> arco-cd:hasDocumentationType <https://w3id.org/spice/doc_type/catalogue_photograph> ;
    arco-cd:url <https://designmuseum.api.digimuseum.co/wp-content/uploads/2017/12/wsi-imageoptim-vihrea21-320x421.jpg> . # online image of the artefact

@marilenadaquino marilenadaquino added Artwork-related knowledge to be evaluated the module/or pattern is ready for the ontology evaluation labels Feb 11, 2021
@marilenadaquino marilenadaquino changed the title DMH artefact description artefact description - DMH Feb 11, 2021
@marilenadaquino marilenadaquino changed the title artefact description - DMH Artefact description - DMH Feb 11, 2021
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Artwork-related knowledge to be evaluated the module/or pattern is ready for the ontology evaluation
Projects
None yet
Development

No branches or pull requests

1 participant