klms:hasTags leaf node


URI

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

Label

WorkflowExecution - hasTags

Description

A tag associated with a WorkflowExecution and represented as key/value pair. - A tag associated with a TaskExecution and represented as key/value pair.

Usage

DOMAINPROPERTYRANGE
klms:WorkflowExecution , klms:TaskExecution klms:hasTags klms:KeyValuePair

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/> .

:hasTags a owl:ObjectProperty ;
    rdfs:label "TaskExecution - hasTags"@en,
        "WorkflowExecution - hasTags"@en ;
    dcterms:identifier "klms:hasTags" ;
    vann:usageNote "Optional property. This property links a TaskExecution with one or more tags, each represented as a key/value pair."@en,
        "Optional property. This property links a WorkflowExecution with one or more tags, each represented as a key/value pair."@en ;
    rdfs:comment "A tag associated with a TaskExecution and represented as key/value pair."@en,
        "A tag associated with a WorkflowExecution and represented as key/value pair."@en ;
    rdfs:domain :TaskExecution,
        :WorkflowExecution ;
    rdfs:range :KeyValuePair .