as:Mention leaf node


URI

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

Label

Mention

Description

A specialized Link that represents an @mention

Superclasses (1)

Usage

Instances of as:Mention can have the following properties:

PROPERTYTYPEDESCRIPTIONRANGE
From class as:Link
as:height owl:DatatypeProperty The display height expressed as device independent pixels xsd:nonNegativeInteger
as:href owl:DatatypeProperty The target URI of the Link xsd:anyURI
as:hreflang owl:DatatypeProperty A hint about the language of the referenced resource xsd:language
as:rel owl:DatatypeProperty The RFC 5988 or HTML5 Link Relation associated with the Link xsd:string
as:width owl:DatatypeProperty Specifies the preferred display width of the content, expressed in terms of device independent pixels. xsd:nonNegativeInteger

Implementation

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

as:Mention a owl:Class ;
    rdfs:label "Mention"@en ;
    rdfs:comment "A specialized Link that represents an @mention"@en ;
    rdfs:subClassOf as:Link .