solveit-core:sortOrder leaf node


URI

https://ontology.solveit-df.org/solveit/core/sortOrder

Label

sort order

Description

The position of an objective in investigation order, which is the order the knowledge base presents them in rather than alphabetical order.

Usage

DOMAINPROPERTYRANGE
solveit-core:Objective solveit-core:sortOrder xsd:integer

Implementation

@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix solveit-core: <https://ontology.solveit-df.org/solveit/core/> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .

solveit-core:sortOrder a owl:DatatypeProperty ;
    rdfs:label "sort order"@en ;
    rdfs:comment "The position of an objective in investigation order, which is the order the knowledge base presents them in rather than alphabetical order."@en ;
    rdfs:domain solveit-core:Objective ;
    rdfs:range xsd:integer .