« Data:Utilisateur » : différence entre les versions
Aller à la navigation
Aller à la recherche
(Page créée avec « <rdf> BASE <https://data.escr.fr/wiki/Utilisateur> prefix owl: <http://www.w3.org/2002/07/owl#> prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> prefix rdfs: <ht… ») |
Aucun résumé des modifications |
||
Ligne 44 : | Ligne 44 : | ||
sh:maxCount 1 ; | sh:maxCount 1 ; | ||
sh:datatype xsd:string ; | sh:datatype xsd:string ; | ||
sh: | sh:path escr:nom ; | ||
] ; | ] ; | ||
sh:property [ | sh:property [ | ||
Ligne 51 : | Ligne 51 : | ||
sh:maxCount 1 ; | sh:maxCount 1 ; | ||
sh:datatype xsd:string ; | sh:datatype xsd:string ; | ||
sh: | sh:path escr:prénom ; | ||
] ; | ] ; | ||
. | . | ||
</rdf> | </rdf> |
Version du 30 septembre 2020 à 09:32
BASE <https://data.escr.fr/wiki/Utilisateur>
prefix owl: <http://www.w3.org/2002/07/owl#>
prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#>
prefix sh: <http://www.w3.org/ns/shacl#>
prefix xsd: <http://www.w3.org/2001/XMLSchema#>
PREFIX wd: <http://www.wikidata.org/entity/>
PREFIX geo: <http://www.opengis.net/ont/geosparql#>
PREFIX escr: <https://data.escr.fr/wiki/>
Description
On décrit ici la classe Utilisateur nous servira à décrire les utilisateurs de ce wiki.
Un utilisateur possède les propriétés obligatoires suivantes :
- nom
- prénom
Définition de la classe
<>
rdf:type owl:Class ;
rdfs:label "User"@en ;
rdfs:label "Utilisateur"@fr ;
rdfs:subClassOf owl:Thing .
Constraints
<>
rdf:type sh:Shape ;
sh:targetClass <> ;
sh:property [
rdfs:label "Nom" ;
sh:minCount 1 ;
sh:maxCount 1 ;
sh:datatype xsd:string ;
sh:path escr:nom ;
] ;
sh:property [
rdfs:label "Prénom" ;
sh:minCount 1 ;
sh:maxCount 1 ;
sh:datatype xsd:string ;
sh:path escr:prénom ;
] ;
.