> Scenarios/1

Scenario 1

Information Recorded by the Cataloger

Jane Cataloger is assigned to work on a gift collection. Her first selection is a Latvian translation of Kurt Vonnegut's "Bluebeard: a novel." She searches the library database for the original work, and finds:

@prefix : <http://www.example.com/placeholder-for-rda-element-vocabulary-namespace/> .
@prefix v: <http://www.example.com/placeholder-for-rda-value-vocabularies-namespace/> .
@prefix o: <http://www.example.com/placeholder-for-other-namespaces-i.e.-out-of-scope-for-rda/> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
#@base <http://www.example.com/rda/scenarios/1/> .

<A> 
  :author <B> ;
  :workTitle "Bluebeard: a novel"@en ;
  :formOfWork v:Novel ;
  :languageOfWork v:English .

<B> rdfs:label "Kurt Vonnegut" .

with links to the following expression information:

@prefix : <http://www.example.com/placeholder-for-rda-element-vocabulary-namespace/> .
@prefix v: <http://www.example.com/placeholder-for-rda-value-vocabularies-namespace/> .
@prefix o: <http://www.example.com/placeholder-for-other-namespaces-i.e.-out-of-scope-for-rda/> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
#@base <http://www.example.com/rda/scenarios/1/> .

<A> :expression <C> .

<C> 
  :languageOfExpression v:English ;
  :contentType v:Text .

and one manifestation:

@prefix : <http://www.example.com/placeholder-for-rda-element-vocabulary-namespace/> .
@prefix v: <http://www.example.com/placeholder-for-rda-value-vocabularies-namespace/> .
@prefix o: <http://www.example.com/placeholder-for-other-namespaces-i.e.-out-of-scope-for-rda/> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
#@base <http://www.example.com/rda/scenarios/1/> .

<C> :manifestation <urn:isbn:0385295901> .

<urn:isbn:0385295901> 
  :editionStatement "1st trade edition."@en ;
  :placeOfProduction <E> ;
  :publisher <F> ;
  :dateOfProduction "1987"^^xsd:date ;
  :extent "300 pages" ;
  :identifier "ISBN:0385295901" .
  
<E> rdfs:label "New York" .

<F> rdfs:label "Delacorte Press" .

Jane begins her description by linking to the existing Work entity. She then creates an expression description:

@prefix : <http://www.example.com/placeholder-for-rda-element-vocabulary-namespace/> .
@prefix v: <http://www.example.com/placeholder-for-rda-value-vocabularies-namespace/> .
@prefix o: <http://www.example.com/placeholder-for-other-namespaces-i.e.-out-of-scope-for-rda/> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
#@base <http://www.example.com/rda/scenarios/1/> .

<A> :expression <G> .

<G> 
  :languageOfExpression v:Latvian ;
  :translator <H> .

<H> rdfs:label "Arvida Grigulis" .

She creates an authority record for the translator since none yet existed. She continues by creating a fuller description for the new manifestation, linking to the authority record for the Latvian publisher (what luck, it already existed!).

@prefix : <http://www.example.com/placeholder-for-rda-element-vocabulary-namespace/> .
@prefix v: <http://www.example.com/placeholder-for-rda-value-vocabularies-namespace/> .
@prefix o: <http://www.example.com/placeholder-for-other-namespaces-i.e.-out-of-scope-for-rda/> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
#@base <http://www.example.com/rda/scenarios/1/> .

<G> :manifestation <I> .

<I> 
  :title "[title in latvian]"@todo ;
  :placeOfProduction <J> ;
  :publisher <K> ;
  :dateOfProduction "1997"^^xsd:date .

<J> rdfs:label "Riga" .

<K> rdfs:label "Liesma" .

Analysis

All RDA Properties Required by This Scenario

RDA Properties Required by This Scenario, Not Defined in RDA Element Vocabulary

Properties in RDA Element Vocabulary, Not Required by This Scenario

Visualisation of Scenario Graph

scenario1.png