Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save hagbeck/8f108a8889cb12a2dedb to your computer and use it in GitHub Desktop.
Save hagbeck/8f108a8889cb12a2dedb to your computer and use it in GitHub Desktop.
Example for a book description in terms of the application profile 'ap-internal-nonpublic'
# general
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix foaf: <http://xmlns.com/foaf/0.1/#> .
@prefix dsp: <http://dublincore.org/dc-dsp#> .
@prefix dcterms: <http://purl.org/dc/terms#> .
@prefix skos: <http://www.w3.org/2004/02/skos/core#> .
@prefix schema: <http://schema.org/> .
@prefix powder: <http://www.w3.org/2007/05/powder-s#> .
@prefix prov: <http://www.w3.org/ns/prov#> .
# cidoc crm universe
@prefix ecrm: <http://erlangen-crm.org/120111/> .
@prefix efrbroo: <http://erlangen-crm.org/efrbroo/121016/> .
# resource discovery and access (rda)
@prefix rdac: <http://rdaregistry.info/Elements/c/> .
@prefix rdaw: <http://rdaregistry.info/Elements/w/> .
@prefix rdae: <http://rdaregistry.info/Elements/e/> .
@prefix rdam: <http://rdaregistry.info/Elements/m/> .
@prefix rdai: <http://rdaregistry.info/Elements/i/> .
# cris
@prefix cerif: <http://www.eurocris.org/ontologies/semcerif/1.3#> .
# authority data
@prefix gnd: <http://d-nb.info/standards/elementset/gnd#> .
# original mods dataset:
# https://bibliographie.ub.rub.de/export/xml/mods?q=id%3Ac8ab7d97-47a6-4647-acc6-f5f0fe05a5fe
# additional data: mods/abstract[@sharable="no"] = "Dies ist ein Abstract."
# this data belongs to the application profile 'ap-internal-nonpublic'
:{WORK-ID}
rdaw:abstractedAsWork [
a efrbroo:F1_Work, rdac:Work, schema:CreativeWork ;
schema:text "Dies ist ein Abstract." ;
]
:{WORK-ID}/about
dcterms:hasVersion "fertig" ;
dcterms:accessRights "public" ;
prov:wasInfluencedBy [
a prov:Activity ;
dc:title "Dateneingabe durch HB-Team" ;
] .
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment