Commit 868ab2b1 authored by María's avatar María
Browse files

subclass of skos:Concept created and added as range of s4city:hasAccessibility. Closes #19

parent 7bc7a87a
Loading
Loading
Loading
Loading
Loading
+31 −17
Original line number Diff line number Diff line
@@ -82,6 +82,14 @@ vann:preferredNamespacePrefix rdf:type owl:AnnotationProperty .
vann:preferredNamespaceUri rdf:type owl:AnnotationProperty .


#################################################################
#    Datatypes
#################################################################

###  http://www.w3.org/2001/XMLSchema#duration
xsd:duration rdf:type rdfs:Datatype .


#################################################################
#    Object Properties
#################################################################
@@ -134,18 +142,11 @@ s4city:assesses rdf:type owl:ObjectProperty ;
                rdfs:label "assesses"@en .


###  https://saref.etsi.org/saref4city/hasAccesibility
s4city:hasAccesibility rdf:type owl:ObjectProperty ;
                       rdfs:comment "has accesibility"@en ;
                       rdfs:label "has accesibility"@en .


###  https://saref.etsi.org/saref4city/hasCalculationPeriod
s4city:hasCalculationPeriod rdf:type owl:DatatypeProperty ;
                            rdfs:domain s4city:KeyPerformanceIndicator ;
                            rdfs:range xsd:duration ;
                            rdfs:comment "has calculation period"@en ;
                            rdfs:label "has calculation period"@en .
###  https://saref.etsi.org/saref4city/hasAccessibility
s4city:hasAccessibility rdf:type owl:ObjectProperty ;
                        rdfs:range s4city:AccessibilityConcept ;
                        rdfs:comment "relation between an event and the accesility modes provided"@en ;
                        rdfs:label "has accessibility"@en .


###  https://saref.etsi.org/saref4city/hasKPI
@@ -249,6 +250,14 @@ s4city:takesPlaceAtTime rdf:type owl:ObjectProperty ;
#    Data properties
#################################################################

###  https://saref.etsi.org/saref4city/hasCalculationPeriod
s4city:hasCalculationPeriod rdf:type owl:DatatypeProperty ;
                            rdfs:domain s4city:KeyPerformanceIndicator ;
                            rdfs:range xsd:duration ;
                            rdfs:comment "has calculation period"@en ;
                            rdfs:label "has calculation period"@en .


###  https://saref.etsi.org/saref4city/hasCreationDate
s4city:hasCreationDate rdf:type owl:DatatypeProperty ;
                       rdfs:range xsd:dateTime ;
@@ -344,6 +353,11 @@ time:TemporalEntity rdf:type owl:Class ;
                                   rdfs:label "Person"@en .


###  https://saref.etsi.org/saref4city/AccessibilityConcept
s4city:AccessibilityConcept rdf:type owl:Class ;
                            rdfs:subClassOf <http://www.w3.org/2004/02/skos/core#Concept> .


###  https://saref.etsi.org/saref4city/AdministrativeArea
s4city:AdministrativeArea rdf:type owl:Class ;
                          rdfs:subClassOf geo:Feature ;
@@ -397,7 +411,7 @@ s4city:District rdf:type owl:Class ;
###  https://saref.etsi.org/saref4city/Event
s4city:Event rdf:type owl:Class ;
             rdfs:subClassOf [ rdf:type owl:Restriction ;
                               owl:onProperty s4city:hasAccesibility ;
                               owl:onProperty s4city:hasAccessibility ;
                               owl:allValuesFrom <http://www.w3.org/2004/02/skos/core#Concept>
                             ] ,
                             [ rdf:type owl:Restriction ;
@@ -431,12 +445,12 @@ s4city:Facility rdf:type owl:Class ;
###  https://saref.etsi.org/saref4city/KeyPerformanceIndicator
s4city:KeyPerformanceIndicator rdf:type owl:Class ;
                               rdfs:subClassOf [ rdf:type owl:Restriction ;
                                                 owl:onProperty s4city:hasCalculationPeriod ;
                                                 owl:allValuesFrom xsd:duration
                                               ] ,
                                               [ rdf:type owl:Restriction ;
                                                 owl:onProperty s4city:isKPIOf ;
                                                 owl:allValuesFrom saref:FeatureOfInterest
                                               ] ,
                                               [ rdf:type owl:Restriction ;
                                                 owl:onProperty s4city:hasCalculationPeriod ;
                                                 owl:allValuesFrom xsd:duration
                                               ] ;
                               rdfs:comment "A Key Performance Indicator (KPI) is a type of performance measurement. KPIs evaluate the success of an organization or of a particular activity in which it engages. (Definition taken from FIWARE)"@en ;
                               rdfs:label "Key Performance Indicator"@en ;