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
11 changes: 11 additions & 0 deletions organizations/organizations.rdfs.ttl
Original file line number Diff line number Diff line change
Expand Up @@ -162,3 +162,14 @@ haOrg:hasPreference a rdf:Property ;
skos:definition "Expresses the wish of an organization regarding whether or not to perform a certain service in collaboration with/by meemoo."@en ;
skos:definition "Exprime le souhait d'une organisation quant à la réalisation ou non d'un certain service en collaboration avec/par meemoo."@fr ;
rdfs:isDefinedBy <https://data.hetarchief.be/ns/organization/> .

schema:vatID a rdf:Property ;
rdfs:domain org:Organization ;
rdfs:range rdfs:Literal ;
rdfs:label "btw-nummer"@nl ;
rdfs:label "VAT number"@en ;
rdfs:label "numéro de TVA"@fr ;
skos:definition "Verwijst naar het btw-nummer van de organisatie."@nl ;
skos:definition "Indicates the VAT number of the organization."@en ;
skos:definition "Indique le numéro de TVA de l'organisation."@fr ;
rdfs:isDefinedBy <https://data.hetarchief.be/ns/organization/> .
23 changes: 21 additions & 2 deletions organizations/organizations.shacl.ttl
Original file line number Diff line number Diff line change
Expand Up @@ -309,7 +309,26 @@
sh:description "Verwijst naar de unieke identificator van de organisatie."@nl ;

sh:message "occurs more than once or its object is no xsd:string"@en ;
] .
],
[
a sh:PropertyShape ;
sh:path schema:vatID ;
sh:minCount 1 ;
sh:maxCount 1 ;
sh:nodeKind sh:Literal ;
sh:datatype xsd:string ;

sh:name "btw-nummer"@nl ;
sh:name "VAT number"@en ;
sh:name "numéro de TVA"@fr ;

sh:description "Indicates the VAT number of the organisation."@en ;
sh:description "Indique le numéro de TVA de l'organisation."@fr ;
sh:description "Verwijst naar het btw-nummer van de organisatie."@nl ;

sh:message "occurs more than once or its object is no xsd:string"@en ;
]
.

<#LogoShape> a sh:NodeShape ;
sh:targetClass haOrg:Logo .
Expand Down Expand Up @@ -967,4 +986,4 @@
sh:description "Le nom du pays."@fr ;

sh:message "is missing, occurs more than once or its object is not of type xsd:string"@en ;
] .
] .
Loading