as:tag leaf node


URI

http://www.w3.org/ns/activitystreams#tag

Label

tag

Description

One or more "tags" that have been associated with an objects. A tag can be any kind of Object. The key difference between attachment and tag is that the former implies association by inclusion, while the latter implies associated by reference.

Usage

DOMAINPROPERTYRANGE
as:Object , Blank node (see implementation) as:tag owl:Thing (inferred)

Implementation

@prefix as: <http://www.w3.org/ns/activitystreams#> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .

as:tag a owl:ObjectProperty ;
    rdfs:label "tag"@en ;
    rdfs:comment "One or more \"tags\" that have been associated with an objects. A tag can be any kind of Object. The key difference between attachment and tag is that the former implies association by inclusion, while the latter implies associated by reference."@en ;
    rdfs:domain as:Object ;
    rdfs:range [ a owl:Class ;
            owl:unionOf ( as:Object as:Link ) ] .