18 lines
586 B
XML
18 lines
586 B
XML
<rdf:RDF
|
|
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
|
xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#"
|
|
xmlns:owl="http://www.w3.org/2002/07/owl#"
|
|
xml:base="http://www.monannuaire.com/">
|
|
<owl:Class rdf:ID="Personne"/>
|
|
<owl:DatatypeProperty
|
|
rdf:ID="email">
|
|
<rdfs:label
|
|
rdf:datatype="http://www.w3.org/2001/XMLSchema#string">
|
|
Adresse courriel de la personne
|
|
</rdfs:label>
|
|
<rdfs:range
|
|
rdf:resource="http://www.w3.org/2001/XMLSchema#string"/>
|
|
<rdfs:domain
|
|
rdf:resource="#Personne"/>
|
|
</owl:DatatypeProperty>
|
|
</rdf:RDF>
|