klms:orderNum leaf node


URI

http://stelar-project.eu/klms#orderNum

Label

Artifact - orderNum

Description

This property indicates the ordering (1:first, 2:second, etc.) of an Artifact involved as input or output in a TaskExecution.

Usage

DOMAINPROPERTYRANGE
klms:Artifact klms:orderNum xsd:int

Implementation

@prefix : <http://stelar-project.eu/klms#> .
@prefix dcterms: <http://purl.org/dc/terms/> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix vann: <http://purl.org/vocab/vann/> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .

:orderNum a owl:ObjectProperty ;
    rdfs:label "Artifact - orderNum"@en ;
    dcterms:identifier "klms:orderNum" ;
    vann:usageNote "Optional property. This property indicates the ordering (1:first, 2:second, etc.) of an Artifact involved as input or output in a TaskExecution."@en ;
    rdfs:comment "This property indicates the ordering (1:first, 2:second, etc.) of an Artifact involved as input or output in a TaskExecution."@en ;
    rdfs:domain :Artifact ;
    rdfs:range xsd:int .