-
Notifications
You must be signed in to change notification settings - Fork 1
/
rules.n3
39 lines (37 loc) · 1.79 KB
/
rules.n3
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
@prefix dc: <http://purl.org/dc/elements/1.1/> .
@prefix dct: <http://purl.org/dc/terms/> .
@prefix rdau: <http://rdaregistry.info/Elements/u/> .
@prefix bibo: <http://purl.org/ontology/bibo/> .
@prefix marcRole: <http://id.loc.gov/vocabulary/relators/> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix schema: <http://schema.org/> .
@prefix isbd: <http://iflastandards.info/ns/isbd/elements/> .
@prefix umbel: <http://umbel.org/umbel#> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
@prefix dnbt: <https://d-nb.info/standards/elementset/dnb#> .
@prefix wdrs: <http://www.w3.org/2007/05/powder-s#> .
@prefix rdamt: <http://rdaregistry.info/termList/RDAMediaType/> .
@prefix bibframe1: <http://bibframe.org/vocab/> .
@prefix frbr: <http://purl.org/vocab/frbr/core#> .
@prefix rdag1: <http://rdvocab.info/Elements/> .
@prefix gn: <http://www.geonames.org/ontology#> .
@prefix lv: <http://purl.org/lobid/lv#> .
@prefix bf: <http://id.loc.gov/ontologies/bibframe/> .
# Use DC Terms instead of DC Elements
{ ?a dc:contributor ?b } => { ?a dct:contributor ?b } .
{ ?a dc:coverage ?b } => { ?a dct:coverage ?b } .
{ ?a dc:creator ?b } => { ?a dct:creator ?b } .
{ ?a dc:date ?b } => { ?a dct:date ?b } .
{ ?a dc:description ?b } => { ?a dct:description ?b } .
{ ?a dc:format ?b } => { ?a dct:format ?b } .
{ ?a dc:language ?b } => { ?a dct:language ?b } .
{ ?a dc:publisher ?b } => { ?a dct:publisher ?b } .
{ ?a dc:relation ?b } => { ?a dct:relation ?b } .
{ ?a dc:rights ?b } => { ?a dct:rights ?b } .
{ ?a dc:source ?b } => { ?a dct:source ?b } .
{ ?a dc:type ?b } => { ?a dct:type ?b } .
{ ?a dc:title ?b } => { ?a dct:title ?b } .
{ ?a dc:subject ?b } => { ?a dct:subject ?b } .
{ ?a dc:identifier ?b } => { ?a dct:identifier ?b } .
# Use owl:sameAs consistently
{ ?a schema:sameAs ?b } => { ?a owl:sameAs ?b } .