Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Change label to tenantName and add it to model #62

Merged
merged 3 commits into from
Feb 21, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 13 additions & 0 deletions objects/mediahaven.rdfs.ttl
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
@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#> .
@prefix org: <http://www.w3.org/ns/org#> . # Core organization ontology

# Classes

Expand All @@ -27,3 +28,15 @@ mh:fragmentIdentifier a rdf:Property ;
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/> .

mh:tenantName a rdf:Property ;
rdfs:domain org:Organization ;
rdfs:range xsd:string ;
skos:definition "The Mediahaven tenant name of the organization."@en ;
skos:definition "Le nom du locataire Mediahaven de l'organisation."@fr ;
skos:definition "De Mediahaven tenant naam van de organisatie."@nl ;

rdfs:label "tenant name"@en ;
rdfs:label "nom du locataire"@fr ;
rdfs:label "tenant naam"@nl ;
rdfs:isDefinedBy <https://data.hetarchief.be/ns/mediahaven/> .
4 changes: 2 additions & 2 deletions organizations/organizations.shacl.ttl
Original file line number Diff line number Diff line change
Expand Up @@ -86,15 +86,15 @@
],
[
a sh:PropertyShape ;
sh:path mh:label ;
sh:path mh:tenantName ;
sh:datatype xsd:string ;

sh:description "The Mediahaven tenant name of the organization."@en ;
sh:description "Le nom du locataire Mediahaven de l'organisation."@fr ;
sh:description "De Mediahaven tenant naam van de organisatie."@nl ;

sh:name "tenant name"@en ;
sh:name "nom du locataire Mediahaven"@fr ;
sh:name "nom du locataire"@fr ;
sh:name "tenant naam"@nl ;

sh:message "is no string"@en
Expand Down
Loading