core:description leaf node


URI

https://w3id.org/agent-ontology/core#description

Label

description

Description

A human-readable description of an Artifact.

Usage

DOMAINPROPERTYRANGE
core:Artifact core:description xsd:string

Implementation

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

core:description a owl:DatatypeProperty ;
    rdfs:label "description" ;
    rdfs:comment "A human-readable description of an Artifact." ;
    rdfs:domain core:Artifact ;
    rdfs:range xsd:string .