as:attachment leaf node


URI

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

Label

attachment

Description

Identifies a resource attached or related to an object that potentially requires special handling. The intent is to provide a model that is at least semantically similar to attachments in email.

Usage

DOMAINPROPERTYRANGE
as:Object , Blank node (see implementation) as:attachment 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:attachment a owl:ObjectProperty ;
    rdfs:label "attachment"@en ;
    rdfs:comment "Identifies a resource attached or related to an object that potentially requires special handling. The intent is to provide a model that is at least semantically similar to attachments in email."@en ;
    rdfs:domain as:Object ;
    rdfs:range [ a owl:Class ;
            owl:unionOf ( as:Link as:Object ) ] ;
    owl:equivalentProperty as:attachments .