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 author to creator #51

Merged
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
42 changes: 21 additions & 21 deletions description/description.shacl.ttl
Original file line number Diff line number Diff line change
Expand Up @@ -129,15 +129,15 @@
],
[
a sh:PropertyShape ;
sh:path schema:author ;
sh:path schema:creator ;
sh:class schema:Role ;
sh:name "author"@en ;
sh:name "auteur"@nl ;
sh:name "auteur"@fr ;
sh:name "creator"@en ;
sh:name "maker"@nl ;
sh:name "créateur"@fr ;
sh:severity sh:Violation ;
sh:message "schema:author is not of class schema:Role"@en ;
sh:message "schema:author is niet van de klasse schema:Role"@nl ;
sh:message "schema:author n'est pas de la classe schema:Role"@fr ;
sh:message "schema:creator is not of class schema:Role"@en ;
sh:message "schema:creator is niet van de klasse schema:Role"@nl ;
sh:message "schema:creator n'est pas de la classe schema:Role"@fr ;
],
[
a sh:PropertyShape ;
Expand Down Expand Up @@ -610,15 +610,15 @@
],
[
a sh:PropertyShape ;
sh:path schema:author ;
sh:path schema:creator ;
sh:class schema:Role ;
sh:name "author"@en ;
sh:name "auteur"@nl ;
sh:name "auteur"@fr ;
sh:name "creator"@en ;
sh:name "maker"@nl ;
sh:name "créateur"@fr ;
sh:severity sh:Violation ;
sh:message "schema:author is not of class schema:Role"@en ;
sh:message "schema:author is niet van de klasse schema:Role"@nl ;
sh:message "schema:author n'est pas de la classe schema:Role"@fr ;
sh:message "schema:creator is not of class schema:Role"@en ;
sh:message "schema:creator is niet van de klasse schema:Role"@nl ;
sh:message "schema:creator n'est pas de la classe schema:Role"@fr ;
] .

<#CarrierRepresentationNodeShape> a sh:NodeShape ;
Expand Down Expand Up @@ -741,19 +741,19 @@
sh:property
[
a sh:PropertyShape ;
sh:path schema:author ;
sh:path schema:creator ;
sh:or (
[sh:class schema:Person ]
[sh:class org:Organization ]
[sh:class schema:Thing ]
) ;
sh:name "author"@en ;
sh:name "auteur"@nl ;
sh:name "auteur"@fr ;
sh:name "creator"@en ;
sh:name "maker"@nl ;
sh:name "créateur"@fr ;
sh:severity sh:Violation ;
sh:message "schema:author is not of class schema:Thing, schema:Person or org:Organization"@en ;
sh:message "schema:author is niet van de klasse schema:Thing, schema:Person of org:Organization"@nl ;
sh:message "schema:author n'est pas de la classe schema:Thing, schema:Person ou org:Organization"@fr ;
sh:message "schema:creator is not of class schema:Thing, schema:Person or org:Organization"@en ;
sh:message "schema:creator is niet van de klasse schema:Thing, schema:Person of org:Organization"@nl ;
sh:message "schema:creator n'est pas de la classe schema:Thing, schema:Person ou org:Organization"@fr ;
],
[
a sh:PropertyShape ;
Expand Down
14 changes: 7 additions & 7 deletions ontologies/schema.rdfs.ttl
Original file line number Diff line number Diff line change
Expand Up @@ -306,16 +306,16 @@ schema:artMedium a rdf:Property ;
skos:definition "Le matériau utilisé. (par exemple Huile, Aquarelle, Acrylique, Linoprint, Marbre, Cyanotype, Numérique, Lithographie, Point sec, Intaglio, Pastel, Gravure sur bois, Crayon, Médias mixtes, etc.)"@fr ;
rdfs:isDefinedBy <https://schema.org/> .

schema:author a rdf:Property ;
schema:creator a rdf:Property ;
rdfs:domain schema:CreativeWork ;
rdfs:range [ owl:unionOf(schema:Person org:Organization schema:Role) ] ;
owl:equivalentProperty dct:creator ;
rdfs:label "author"@en ;
rdfs:label "auteur"@nl ;
rdfs:label "auteur"@fr ;
skos:definition "The author of this content or rating."@en ;
skos:definition "De auteur van deze inhoud of beoordeling."@nl ;
skos:definition "L'auteur de ce contenu ou de cette évaluation."@fr ;
rdfs:label "creator"@en ;
rdfs:label "maker"@nl ;
rdfs:label "créateur"@fr ;
skos:definition "The creator/author of this CreativeWork."@en ;
skos:definition "De maker/auteur van dit creatief werk."@nl ;
skos:definition "Le créateur / auteur de ce travail créatif."@fr ;
rdfs:isDefinedBy <https://schema.org/> .

schema:birthDate a rdf:Property ;
Expand Down