as:rel leaf node


URI

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

Label

rel

Description

The RFC 5988 or HTML5 Link Relation associated with the Link

Usage

DOMAINPROPERTYRANGE
as:Link as:rel xsd:string

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#> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .

as:rel a owl:DatatypeProperty ;
    rdfs:label "rel"@en ;
    rdfs:comment "The RFC 5988 or HTML5 Link Relation associated with the Link"@en ;
    rdfs:domain as:Link ;
    rdfs:range xsd:string .