Skip to content
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: 12 additions & 1 deletion description/description.rdfs.ttl
Original file line number Diff line number Diff line change
Expand Up @@ -409,4 +409,15 @@ haDes:licenseDistributor a rdf:Property ;
skos:definition "The license distributor of the intellectual entity."@en ;
skos:definition "De licentiedistributeur van de intellectuele entiteit."@nl ;
skos:definition "Le distributeur de licences de l'entité intellectuelle."@fr ;
rdfs:isDefinedBy <https://data.hetarchief.be/ns/description/> .
rdfs:isDefinedBy <https://data.hetarchief.be/ns/description/> .

haDes:aspectRatio a rdf:Property ;
rdfs:domain [ owl:unionOf (haDes:ImageReel haDes:AudioReel) ] ;
rdfs:label "aspect ratio"@en ;
rdfs:label "beelverhouding"@nl ;
rdfs:label "rapport hauteur/largeur"@fr ;
skos:definition "Proportional relationship between an image's width and its height."@en;
skos:definition "Proportionele verhouding tussen de breedte en de hoogte van een afbeelding."@nl;
skos:definition "Rapport proportionnel entre la largeur et la hauteur d'une image."@fr;
rdfs:range rdfs:Literal ;
rdfs:isDefinedBy <https://data.hetarchief.be/ns/description/> .
32 changes: 31 additions & 1 deletion description/description.shacl.ttl
Original file line number Diff line number Diff line change
Expand Up @@ -1262,10 +1262,40 @@
sh:message "l'objet de ebucore:hasCaptioning n'est pas du type ebucore:OpenCaptions"@fr ;
sh:message "het object van ebucore:hasCaptioning is niet van het type ebucore:OpenCaptions"@nl ;
sh:severity sh:Violation
] ,
[
a sh:PropertyShape ;
sh:path haDes:aspectRatio ;
sh:datatype xsd:string ;
sh:minCount 0 ;
sh:maxCount 1 ;
sh:name "aspect ratio"@en ;
sh:name "beelverhouding"@nl ;
sh:name "rapport hauteur/largeur"@fr ;
sh:description "Proportional relationship between an image's width and its height."@en;
sh:description "Proportionele verhouding tussen de breedte en de hoogte van een afbeelding."@nl;
sh:description "Rapport proportionnel entre la largeur et la hauteur d'une image."@fr;
sh:message "The value for haDes:aspectRatio occurs more than once or is not a string"@en ;
sh:severity sh:Violation ;
] .

<#AudioReelNodeShape> a sh:NodeShape ;
sh:targetClass haDes:AudioReel .
sh:targetClass haDes:AudioReel ;
sh:property [
a sh:PropertyShape ;
sh:path haDes:aspectRatio ;
sh:datatype xsd:string ;
sh:minCount 0 ;
sh:maxCount 1 ;
sh:name "aspect ratio"@en ;
sh:name "beelverhouding"@nl ;
sh:name "rapport hauteur/largeur"@fr ;
sh:description "Proportional relationship between an image's width and its height."@en;
sh:description "Proportionele verhouding tussen de breedte en de hoogte van een afbeelding."@nl;
sh:description "Rapport proportionnel entre la largeur et la hauteur d'une image."@fr;
sh:message "The value for haDes:aspectRatio occurs more than once or is not a string"@en ;
sh:severity sh:Violation ;
] .

<#OpenCaptionsNodeShape> a sh:NodeShape ;
sh:targetClass ebucore:OpenCaptions ;
Expand Down