gr:hasPrevious leaf node


URI

http://purl.org/goodrelations/v1#hasPrevious

Label

has previous (0..1)

Description

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.

Usage

DOMAINPROPERTYRANGE
gr:DayOfWeek gr:hasPrevious gr:DayOfWeek

Implementation

@prefix gr: <http://purl.org/goodrelations/v1#> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .

gr:hasPrevious a owl:ObjectProperty ;
    rdfs:label "has previous (0..1)"@en ;
    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 gr:DayOfWeek ;
    rdfs:isDefinedBy <http://purl.org/goodrelations/v1> ;
    rdfs:range gr:DayOfWeek ;
    owl:inverseOf gr:hasNext .