Data:Utilisateur

De ESCR
Aller à la navigation Aller à la recherche
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 vcard: <http://www.w3.org/2006/vcard/ns#>

Description

On décrit ici la classe Utilisateur nous servira à décrire les utilisateurs de ce wiki.

<>
  rdf:type owl:Class ;
  rdfs:label "User"@en ;
  rdfs:label "Utilisateur"@fr ;
  rdfs:subClassOf owl:Thing .

Un utilisateur possède les propriétés obligatoires suivantes :

  • nom
  • prénom

Constraints

<>
  rdf:type sh:Shape ;
  sh:targetClass <> ;
  sh:property [
      rdfs:label "Nom complet" ;
      sh:minCount 1 ;
      sh:maxCount 1 ;
      sh:datatype xsd:string ;
      sh:path vcard:fn ;
    ] ;
  sh:property [
      rdfs:label "Nom" ;
      sh:minCount 1 ;
      sh:maxCount 1 ;
      sh:datatype xsd:string ;
      sh:path vcard:family-name ;
    ] ;

  sh:property [
      rdfs:label "Prénom" ;
      sh:minCount 1 ;
      sh:maxCount 1 ;
      sh:datatype xsd:string ;
      sh:path vcard:given-name ;
    ] ;
.