@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> . @prefix ns0: <http://purl.org/vocab/lifecycle/schema#> . @prefix owl: <http://www.w3.org/2002/07/owl#> . @prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> . @prefix dct: <http://purl.org/dc/terms/> . @prefix xsd: <http://www.w3.org/2001/XMLSchema#> . ns0:completed dct:issued "2008-06-03" ; a owl:DatatypeProperty ; rdfs:comment "This uses a boolean to represent if an action has been completed. This is a simple alternative to the taskProgress property." ; rdfs:domain ns0:Action ; rdfs:isDefinedBy <http://purl.org/vocab/lifecycle/schema#> ; rdfs:label "completed"@en ; rdfs:range xsd:boolean .
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix ns0: <http://purl.org/vocab/lifecycle/schema#> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix dct: <http://purl.org/dc/terms/> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .

ns0:completed
    dct:issued "2008-06-03" ;
    a owl:DatatypeProperty ;
    rdfs:comment "This uses a boolean to represent if an action has been completed. This is a simple alternative to the taskProgress property." ;
    rdfs:domain ns0:Action ;
    rdfs:isDefinedBy <http://purl.org/vocab/lifecycle/schema#> ;
    rdfs:label "completed"@en ;
    rdfs:range xsd:boolean .