as:hreflang leaf node


URI

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

Label

hreflang

Description

A hint about the language of the referenced resource

Usage

DOMAINPROPERTYRANGE
as:Link as:hreflang xsd:language

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:hreflang a owl:DatatypeProperty,
        owl:FunctionalProperty ;
    rdfs:label "hreflang"@en ;
    rdfs:comment "A hint about the language of the referenced resource"@en ;
    rdfs:domain as:Link ;
    rdfs:range xsd:language .