Data:Utilisateur

De ESCR
Révision datée du 30 septembre 2020 à 08:57 par Karima Rafes (discussion | contributions) (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… »)
(diff) ← Version précédente | Voir la version actuelle (diff) | Version suivante → (diff)
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 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:predicate escr:nom ;
    ] ;
  sh:property [
      rdfs:label "Prénom" ;
      sh:minCount 1 ;
      sh:maxCount 1 ;
      sh:datatype xsd:string ;
      sh:predicate escr:prénom ;
    ] ;
.