as:image leaf node


URI

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

Label

image

Description

Indicates an entity that describes an image for this object. Unlike the icon property, there are no aspect ratio or display size limitations assumed.

Usage

DOMAINPROPERTYRANGE
as:Object , Blank node (see implementation) as:image 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:image a owl:ObjectProperty ;
    rdfs:label "image"@en ;
    rdfs:comment "Indicates an entity that describes an image for this object. Unlike the icon property, there are no aspect ratio or display size limitations assumed."@en ;
    rdfs:domain as:Object ;
    rdfs:range [ a owl:Class ;
            owl:unionOf ( as:Image as:Link ) ] .