@prefix : . @prefix owl: . @prefix rdf: . @prefix xml: . @prefix xsd: . @prefix rdfs: . @base . rdf:type owl:Ontology ; owl:versionIRI ; "Jhon Toledo (Ontology Engienering Group - Universidad Politécnica de Madrid)"@en , "Miguel Angel García (Ontology Engienering Group - Universidad Politécnica de Madrid"@en , "Oscar Corcho (Ontology Engineering Group - Universidad Politécnica de Madrid)"@en ; "https://w3id.org/mobility/trias/utility"@en ; "Creative Commons Attribution 4.0 International (CC BY 4.0)"@en ; "Ontology for the representation of utility elements in the Trias ontology"@en ; ; rdfs:label "Ontology for the representation of utility elements in the Trias ontology"@en . ################################################################# # Annotation properties ################################################################# ### http://purl.org/dc/elements/1.1/creator rdf:type owl:AnnotationProperty . ### http://purl.org/dc/elements/1.1/date rdf:type owl:AnnotationProperty . ### http://purl.org/dc/elements/1.1/description rdf:type owl:AnnotationProperty . ### http://purl.org/dc/elements/1.1/identifier rdf:type owl:AnnotationProperty . ### http://purl.org/dc/elements/1.1/rights rdf:type owl:AnnotationProperty . ### http://purl.org/dc/elements/1.1/title rdf:type owl:AnnotationProperty . ### http://purl.org/dc/terms/license rdf:type owl:AnnotationProperty . ################################################################# # Object Properties ################################################################# ### https://w3id.org/mobility/trias/utility#urlLabe :urlLabe rdf:type owl:ObjectProperty ; rdfs:domain :WebLink ; rdfs:range :InternationalText . ################################################################# # Data properties ################################################################# ### http://purl.org/dc/terms/identifier rdf:type owl:DatatypeProperty ; rdfs:comment "An unambiguous reference to the resource within a given context."@en ; rdfs:isDefinedBy ; rdfs:label "identifier"@en . ### https://w3id.org/mobility/trias/utility#altitude :altitude rdf:type owl:DatatypeProperty ; rdfs:domain :GeoPosition ; rdfs:range xsd:string ; rdfs:comment "Altitude metres from sea level."@en ; rdfs:label "altitude"@en . ### https://w3id.org/mobility/trias/utility#language :language rdf:type owl:DatatypeProperty ; rdfs:domain :InternationalText ; rdfs:range xsd:string ; rdfs:comment "language"@en ; rdfs:label "language"@en . ### https://w3id.org/mobility/trias/utility#latitude :latitude rdf:type owl:DatatypeProperty ; rdfs:domain :GeoPosition ; rdfs:range xsd:string ; rdfs:comment "Latitude from equator. -90 (South) to +90 (North)."@en ; rdfs:label "latitude"@en . ### https://w3id.org/mobility/trias/utility#longitude :longitude rdf:type owl:DatatypeProperty ; rdfs:domain :GeoPosition ; rdfs:range xsd:string ; rdfs:comment "Longitude from Greenwich Meridian. -180 (West) to +180 (East)."@en ; rdfs:label "longitude"@en . ### https://w3id.org/mobility/trias/utility#text :text rdf:type owl:DatatypeProperty ; rdfs:domain :InternationalText ; rdfs:range xsd:string ; rdfs:comment "Text content."@en ; rdfs:label "text"@en . ### https://w3id.org/mobility/trias/utility#textId :textId rdf:type owl:DatatypeProperty ; rdfs:domain :InternationalText ; rdfs:range xsd:string ; rdfs:comment "ID of text"@en ; rdfs:label "textId"@en . ### https://w3id.org/mobility/trias/utility#url :url rdf:type owl:DatatypeProperty ; rdfs:domain :WebLink ; rdfs:range xsd:string ; rdfs:label "url"@en . ################################################################# # Classes ################################################################# ### https://w3id.org/mobility/trias/utility#GeoPosition :GeoPosition rdf:type owl:Class ; rdfs:subClassOf [ rdf:type owl:Restriction ; owl:onProperty :latitude ; owl:qualifiedCardinality "1"^^xsd:nonNegativeInteger ; owl:onDataRange xsd:string ] , [ rdf:type owl:Restriction ; owl:onProperty :longitude ; owl:qualifiedCardinality "1"^^xsd:nonNegativeInteger ; owl:onDataRange xsd:string ] , [ rdf:type owl:Restriction ; owl:onProperty :altitude ; owl:maxQualifiedCardinality "1"^^xsd:nonNegativeInteger ; owl:onDataRange xsd:string ] ; rdfs:comment "Expressed as WGS84."@en ; rdfs:label "GeoPosition"@en . ### https://w3id.org/mobility/trias/utility#InternationalText :InternationalText rdf:type owl:Class ; rdfs:subClassOf [ rdf:type owl:Restriction ; owl:onProperty :text ; owl:qualifiedCardinality "1"^^xsd:nonNegativeInteger ; owl:onDataRange xsd:string ] , [ rdf:type owl:Restriction ; owl:onProperty :language ; owl:maxQualifiedCardinality "1"^^xsd:nonNegativeInteger ; owl:onDataRange xsd:string ] , [ rdf:type owl:Restriction ; owl:onProperty :textId ; owl:maxQualifiedCardinality "1"^^xsd:nonNegativeInteger ; owl:onDataRange xsd:string ] ; rdfs:comment "Class that describes texts with a text-ID and specification of language in which it is written."@en ; rdfs:label "InternationalText"@en . ### https://w3id.org/mobility/trias/utility#WebLink :WebLink rdf:type owl:Class ; rdfs:subClassOf [ rdf:type owl:Restriction ; owl:onProperty :urlLabe ; owl:minQualifiedCardinality "1"^^xsd:nonNegativeInteger ; owl:onClass :InternationalText ] , [ rdf:type owl:Restriction ; owl:onProperty :url ; owl:qualifiedCardinality "1"^^xsd:nonNegativeInteger ; owl:onDataRange xsd:string ] ; rdfs:comment "URL with label."@en ; rdfs:label "WebLink"@en . ### Generated by the OWL API (version 5.1.18) https://github.com/owlcs/owlapi/