gr:hasNext leaf node


URI

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

Label

has next (0..1)

Description

This ordering relation for gr:DayOfWeek indicates that the subject is directly followed by the object.

Example: Monday hasNext Tuesday

Since days of the week are a cycle, this property is not transitive.

Usage

DOMAINPROPERTYRANGE
gr:DayOfWeek gr:hasNext 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:hasNext a owl:ObjectProperty ;
    rdfs:label "has next (0..1)"@en ;
    rdfs:comment """This ordering relation for gr:DayOfWeek indicates that the subject is directly followed by the object.

Example: Monday hasNext Tuesday

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:hasPrevious .