-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #60 from viaacode/kg-257-datamodel-mediahaven
KG-257 Datamodel Mediahaven
- Loading branch information
Showing
2 changed files
with
167 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
@prefix mh: <https://data.hetarchief.be/ns/mediahaven/> . | ||
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> . | ||
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> . | ||
@prefix skos: <http://www.w3.org/2004/02/skos/core#> . | ||
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> . | ||
|
||
# Classes | ||
|
||
mh:Record a rdfs:Class ; | ||
rdfs:label "Mediahaven record"@en ; | ||
rdfs:label "enregistrement Mediahaven"@fr ; | ||
rdfs:label "Mediahavenrecord"@nl ; | ||
skos:definition "A record in the Mediahaven asset management system."@en ; | ||
skos:definition "Un enregistrement dans le système de gestion d'actifs Mediahaven."@fr ; | ||
skos:definition "Een record in het Mediahaven asset management systeem."@nl ; | ||
rdfs:isDefinedBy <https://data.hetarchief.be/ns/mediahaven/> . | ||
|
||
# Properties | ||
|
||
mh:fragmentIdentifier a rdf:Property ; | ||
rdfs:domain mh:Record ; | ||
rdfs:range xsd:string ; | ||
rdfs:label "fragment identifier"@en ; | ||
rdfs:label "identifiant de fragment"@fr ; | ||
rdfs:label "fragment-ID"@nl ; | ||
skos:definition "The fragment identifier of a record or a fragment in the Mediahaven asset management system."@en ; | ||
skos:definition "L'identifiant de fragment d'un enregistrement ou un fragment dans le système de gestion d'actifs Mediahaven."@fr ; | ||
skos:definition "De fragment-ID van een record of een fragment in het Mediahaven asset management systeem."@nl ; | ||
rdfs:isDefinedBy <https://data.hetarchief.be/ns/mediahaven/> . |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters