@prefix adms:  <http://www.w3.org/ns/adms#> .
@prefix dc:    <http://purl.org/dc/elements/1.1/> .
@prefix rdfs:  <http://www.w3.org/2000/01/rdf-schema#> .
@prefix foaf:  <http://xmlns.com/foaf/0.1/> .
@prefix owl:   <http://www.w3.org/2002/07/owl#> .
@prefix xsd:   <http://www.w3.org/2001/XMLSchema#> .
@prefix passim: <http://data.lirmm.fr/ontologies/passim#> .
@prefix rdf:   <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix vann:  <http://purl.org/vocab/vann/> .
@prefix dcterms: <http://purl.org/dc/terms/> .

passim:snake  a        foaf:Person ;
        foaf:homepage  <http://jplu.developpez.com> ;
        foaf:name      "Julien PLU" .

passim:Coverage  a    owl:Class , rdfs:Class ;
        rdfs:comment  "This class represents the coverage of a service of transport." ;
        rdfs:label    "Coverage" .

passim:postalCode  a  rdf:Property ;
        rdfs:comment  "The property \"postalCode\" represents the the postal code of the main town of the transport." ;
        rdfs:domain   passim:TransportServiceInformation ;
        rdfs:label    "postalCode" .

passim:webSite  a     owl:DatatypeProperty , rdf:Property ;
        rdfs:comment  "The property \"webSite\" represents the Web site of the transport." ;
        rdfs:domain   passim:TransportServiceInformation ;
        rdfs:label    "webSite" ;
        rdfs:range    xsd:string .

passim:Service  a     owl:Class , rdfs:Class ;
        rdfs:comment  "This class represents the services of transport." ;
        rdfs:label    "Service" .

passim:mobileApplication
        a             owl:DatatypeProperty , rdf:Property ;
        rdfs:comment  "The property \"mobileApplication\" represents the mobile application of the transport." ;
        rdfs:domain   passim:TransportServiceInformation ;
        rdfs:label    "mobileApplication" ;
        rdfs:range    xsd:string .

passim:SMSInformation
        a             owl:DatatypeProperty , rdf:Property ;
        rdfs:comment  "The property \"SMSInformation\" represents the SMS service of the transport." ;
        rdfs:domain   passim:TransportServiceInformation ;
        rdfs:label    "SMSInformation" ;
        rdfs:range    xsd:string .

passim:Mode  a        owl:Class , rdfs:Class ;
        rdfs:comment  "This class represents the differents modes of transport." ;
        rdfs:label    "Mode" .

passim:region  a      rdf:Property ;
        rdfs:comment  "The property \"region\" represents the region of the transport." ;
        rdfs:domain   passim:TransportServiceInformation ;
        rdfs:label    "region" .

passim:serviceCoverage
        a             rdf:Property ;
        rdfs:comment  "The property \"serviceCoverage\" represents the coverage of the transport." ;
        rdfs:domain   passim:TransportServiceInformation ;
        rdfs:label    "serviceCoverage" ;
        rdfs:range    passim:Coverage .

passim:rdf  a               adms:SemanticDistribution ;
        dcterms:FileFormat  <http://data.lirmm.fr/ontologies/passim> ;
        adms:accessURL      "http://data.lirmm.fr/ontologies/passim.rdf" ;
        adms:status         <http://purl.org/adms/status/Completed> .

passim:department  a  rdf:Property ;
        rdfs:comment  "The property \"department\" represents the department of the transport." ;
        rdfs:domain   passim:TransportServiceInformation ;
        rdfs:label    "department" .

passim:isAccessibilityForDisabledPerson
        a             owl:DatatypeProperty , rdf:Property ;
        rdfs:comment  "The property \"isAccessibilityForDisabledPerson\" represents if the transport is for the disabled person or not." ;
        rdfs:domain   passim:TransportServiceInformation ;
        rdfs:label    "isAccessibilityForDisabledPerson" ;
        rdfs:range    xsd:boolean .

passim:cityThrough  a  rdf:Property ;
        rdfs:comment  "The property \"cityThrough\" represents a city through by the transport. This property will be instanciate as many times as there is city through by the transport." ;
        rdfs:domain   passim:TransportServiceInformation ;
        rdfs:label    "cityThrough" .

passim:serviceName  a  owl:DatatypeProperty , rdf:Property ;
        rdfs:comment  "The property \"serviceName\" represents the name of the service." ;
        rdfs:domain   passim:TransportServiceInformation ;
        rdfs:label    "serviceName" ;
        rdfs:range    xsd:string .

passim:ttl  a               adms:SemanticDistribution ;
        dcterms:FileFormat  <http://data.lirmm.fr/ontologies/passim> ;
        adms:accessURL      "http://data.lirmm.fr/ontologies/passim.ttl" ;
        adms:status         <http://purl.org/adms/status/Completed> .

passim:infoPoint  a   owl:DatatypeProperty , rdf:Property ;
        rdfs:comment  "The property \"infoPoint\" represents the point of information." ;
        rdfs:domain   passim:TransportServiceInformation ;
        rdfs:label    "infoPoint" ;
        rdfs:range    xsd:string .

passim:modeOfTransport
        a             rdf:Property ;
        rdfs:comment  "The property \"modeOfTransport\" represents a mode of transport. This property will be instanciate as many times as there is mode of transport." ;
        rdfs:domain   passim:TransportServiceInformation ;
        rdfs:label    "modeOfTransport" ;
        rdfs:range    passim:Mode .

passim:TransportServiceInformation
        a             owl:Class , rdfs:Class ;
        rdfs:comment  "This class represents an information service of transport." ;
        rdfs:label    "TransportServiceInformation" .

passim:isWebSiteAccessibilityForDisabledPerson
        a             owl:DatatypeProperty , rdf:Property ;
        rdfs:comment  "The property \"isWebSiteAccessibilityForDisabledPerson\" represents if the website of the transport is for the disabled person or not." ;
        rdfs:domain   passim:TransportServiceInformation ;
        rdfs:label    "isWebSiteAccessibilityForDisabledPerson" ;
        rdfs:range    xsd:boolean .

passim:centerTown  a  rdf:Property ;
        rdfs:comment  "The property \"centerTown\" represents the main town of the transport." ;
        rdfs:domain   passim:TransportServiceInformation ;
        rdfs:label    "centerTown" .

passim:typeOfService  a  rdf:Property ;
        rdfs:comment  "The property \"typeOfService\" represents a type of service." ;
        rdfs:domain   passim:TransportServiceInformation ;
        rdfs:label    "typeOfService" ;
        rdfs:range    passim:Service .

<http://data.lirmm.fr/ontologies/passim>
        a                              owl:Ontology , adms:SemanticAsset ;
        dc:creator                     passim:snake ;
        dcterms:created                "2011-06-20"^^xsd:date ;
        dcterms:description            "This ontology is the description of the operation of a transport information service." ;
        dcterms:modified               "2014-07-22"^^xsd:date ;
        dcterms:partOf                 <http://data.lirmm.fr/ontologies> ;
        dcterms:status                 <http://purl.org/adms/status/UnderDevelopment> ;
        dcterms:title                  "PASSIM ontology" ;
        dcterms:type                   <http://purl.org/adms/assettype/Ontology> ;
        vann:preferredNamespacePrefix  "passim" ;
        vann:preferredNamespaceUri     "http://data.lirmm.fr/ontologies/passim#" ;
        foaf:homepage                  <http://data.lirmm.fr/ontologies/passim.html> .

passim:comment  a     owl:DatatypeProperty , rdf:Property ;
        rdfs:comment  "The property \"comment\" represents the comments about the transport." ;
        rdfs:domain   passim:TransportServiceInformation ;
        rdfs:label    "comment" ;
        rdfs:range    xsd:string .

passim:remark  a      owl:DatatypeProperty , rdf:Property ;
        rdfs:comment  "The property \"remark\" represents the remarks about the transport." ;
        rdfs:domain   passim:TransportServiceInformation ;
        rdfs:label    "remark" ;
        rdfs:range    xsd:string .

passim:landInformation
        a             owl:DatatypeProperty , rdf:Property ;
        rdfs:comment  "The property \"landInformation\" represents the informations about the land through by the transport." ;
        rdfs:domain   passim:TransportServiceInformation ;
        rdfs:label    "landInformation" ;
        rdfs:range    xsd:string .
