http://www.w3.org/ns/activitystreams#icon
Indicates an entity that describes an icon for this object. The image should have an aspect ratio of one (horizontal) to one (vertical) and should be suitable for presentation at a small size.
DOMAIN | PROPERTY | RANGE |
---|---|---|
as:Object , Blank node (see implementation) | as:icon | owl:Thing (inferred) |
@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:icon a owl:ObjectProperty ;
rdfs:label "icon"@en ;
rdfs:comment "Indicates an entity that describes an icon for this object. The image should have an aspect ratio of one (horizontal) to one (vertical) and should be suitable for presentation at a small size."@en ;
rdfs:domain as:Object ;
rdfs:range [ a owl:Class ;
owl:unionOf ( as:Image as:Link ) ] .