as:href leaf node


URI

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

Label

href

Description

The target URI of the Link

Usage

DOMAINPROPERTYRANGE
as:Link as:href xsd:anyURI

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:href a owl:DatatypeProperty,
        owl:FunctionalProperty ;
    rdfs:label "href"@en ;
    rdfs:comment "The target URI of the Link"@en ;
    rdfs:domain as:Link ;
    rdfs:range xsd:anyURI .