Main Page
Jump to navigation
Jump to search
Purpose of the wiki
Herein, I test concepts and ontologies related to copyright, person-related rights, ethical issues and the like in the context of the SODa Center for Data Competencies.
Where to start
Unfortunately, wikibase.cloud does not support image uploads, but here you can find a graph of the data model.
Object Item:Q31 is the starting point for a data model for usage-related rights like copyright or personal rights.
All licences related to German copyright:
PREFIX wikibase: <http://wikiba.se/ontology#>
PREFIX wdt: <https://wikisoda.wikibase.cloud/prop/direct/>
PREFIX bd: <http://www.bigdata.com/rdf#>
PREFIX wd: <https://wikisoda.wikibase.cloud/entity/>
SELECT ?item ?itemLabel WHERE {
SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". }
?item wdt:P5 wd:Q15.
}
LIMIT 100
All RightsStatements:
PREFIX wikibase: <http://wikiba.se/ontology#>
PREFIX wdt: <https://wikisoda.wikibase.cloud/prop/direct/>
PREFIX bd: <http://www.bigdata.com/rdf#>
PREFIX wd: <https://wikisoda.wikibase.cloud/entity/>
SELECT ?item ?itemLabel WHERE {
SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". }
?item wdt:P5 wd:Q38.
}
LIMIT 100
To get all physical collection items do
PREFIX wikibase: <http://wikiba.se/ontology#>
PREFIX wdt: <https://wikisoda.wikibase.cloud/prop/direct/>
PREFIX bd: <http://www.bigdata.com/rdf#>
PREFIX wd: <https://wikisoda.wikibase.cloud/entity/>
SELECT ?item ?itemLabel WHERE {
SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". }
?item wdt:P7 ?x.
?item wdt:P5 wd:Q13.
}
LIMIT 100
where you can replace "?x" with "wd:Q7" to query for all physical objects in the ThULB collection. To find the physical object related to a digital object do
PREFIX wikibase: <http://wikiba.se/ontology#>
PREFIX wdt: <https://wikisoda.wikibase.cloud/prop/direct/>
PREFIX wd: <https://wikisoda.wikibase.cloud/entity/>
PREFIX bd: <http://www.bigdata.com/rdf#>
SELECT ?item ?itemLabel WHERE {
SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". }
?item wdt:P11 wd:Q34
}
LIMIT 100
Data model as mermaid code
graph LR
A[Object] --> B[Creator]
B --> BB[Person]
BB --> C[Date of birth]
BB --> D[Date of death]
A --> E[Usage-related feature]
E --> F[Licence]
F --> M[Rights holder]
F --> H[Start of duration]
F --> I[End of duration]
F --> L[UrhG-specific]
F --> CC[CreativeCommons]
F --> O[RightsStatements]
E --> G[Image-related personality right]
G --> H[Start of duration]
G --> I[End of duration]
G --> GG[Depicted individual]
GG --> BB
A --> J[Digital representation]
J --> K[Another object]
K --> F
M --> BB
M --> N[Corporate body]
L --> RR1[Reservation of Rights - UrG work]
L --> RR2[Reservation of Rights - UrG Lichtbild]
L --> RR3[Reservation of Rights - Orphaned work]
L --> RR4[Reservation of Rights - Unavailable work]
CC --> CC1[CreativeCommons BY 4.0]
CC --> CC2[CreativeCommons BY-SA 4.0]
CC --> CC3[CreativeCommons BY-NC 4.0]
CC --> CC4[CreativeCommons BY-NC-SA 4.0]
CC --> CC5[CreativeCommons BY-ND 4.0]
CC --> CC6[CreativeCommons BY-NC-ND 4.0]
CC --> CC7[CreativeCommons Zero]
F --> PD[Public Domain]
O --> RS1[In copyright]
O --> RS2[Non-commercial use permitted]
O --> RS3[Educational use permitted]
O --> RS4[Unknown rightsholder]
O --> RS12[EU orphan work]
O --> RS5[Other legal restrictions]
O --> RS6[No copyright in the United States]
O --> RS7[Contractional restrictions]
O --> RS8[Non-commercial use only]
O --> RS9[No known copyright]
O --> RS10[Copyright not evaluated]
O --> RS11[Copyright undetermined]