@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> . @prefix ns0: <http://purl.org/goodrelations/v1#> . @prefix owl: <http://www.w3.org/2002/07/owl#> . @prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> . @prefix ns1: <http://purl.org/goodrelations/> . ns0:hasNext owl:inverseOf ns0:hasPrevious . ns0:hasPrevious a owl:ObjectProperty ; rdfs:comment """This ordering relation for gr:DayOfWeek indicates that the subject is directly preceeded by the object. Example: Tuesday hasPrevious Monday Since days of the week are a cycle, this property is not transitive."""@en ; rdfs:domain ns0:DayOfWeek ; rdfs:isDefinedBy ns1:v1 ; rdfs:label "has previous (0..1)"@en ; rdfs:range ns0:DayOfWeek .
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix ns0: <http://purl.org/goodrelations/v1#> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix ns1: <http://purl.org/goodrelations/> .

ns0:hasNext
    owl:inverseOf ns0:hasPrevious .

ns0:hasPrevious
    a owl:ObjectProperty ;
    rdfs:comment """This ordering relation for gr:DayOfWeek indicates that the subject is directly preceeded by the object.

Example: Tuesday hasPrevious Monday

Since days of the week are a cycle, this property is not transitive."""@en ;
    rdfs:domain ns0:DayOfWeek ;
    rdfs:isDefinedBy ns1:v1 ;
    rdfs:label "has previous (0..1)"@en ;
    rdfs:range ns0:DayOfWeek .