Created
August 30, 2014 20:23
-
-
Save kofronpi/7838140853d65be594f8 to your computer and use it in GitHub Desktop.
Une ontologie basique de poster TN10
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@prefix owl: <http://www.w3.org/2002/07/owl#> . | |
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> . | |
@prefix time: <http://www.w3.org/2006/time#> . | |
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> . | |
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> . | |
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> . | |
@prefix tn10: <http://www.poster.tn10/tn10.ttl#> . | |
@prefix foaf: <http://xmlns.com/foaf/0.1/> . | |
@prefix org: <http://www.w3.org/TR/vocab-org/> . | |
tn10:PosterTN10 | |
a owl:Class . | |
tn10:hasTitle | |
a owl:DatatypeProperty ; | |
rdfs:domain tn10:PosterTN10 ; | |
rdfs:label "ID"^^xsd:string ; | |
rdfs:range xsd:string . | |
tn10:hasDate | |
a owl:ObjectProperty ; | |
rdfs:domain tn10:PosterTN10 ; | |
rdfs:range time:Instant . | |
tn10:hasAuthor | |
a owl:ObjectProperty ; | |
rdfs:domain tn10:PosterTN10 ; | |
rdfs:range foaf:Person . | |
tn10:hasUtcFollower | |
a owl:ObjectProperty ; | |
rdfs:domain tn10:PosterTN10 ; | |
rdfs:range foaf:Person . | |
tn10:hasCompanyFollower | |
a owl:ObjectProperty ; | |
rdfs:domain tn10:PosterTN10 ; | |
rdfs:range foaf:Person . | |
tn10:hasOrganization | |
a owl:ObjectProperty ; | |
rdfs:domain tn10:PosterTN10 ; | |
rdfs:range org:Organization . |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment