as:radius leaf node


URI

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

Label

radius

Description

Specifies a radius around the point established by the longitude and latitude

Usage

DOMAINPROPERTYRANGE
as:Place , Blank node (see implementation) as:radius owl:Thing (inferred)

Implementation

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

as:radius a owl:DatatypeProperty,
        owl:FunctionalProperty ;
    rdfs:label "radius"@en ;
    rdfs:comment "Specifies a radius around the point established by the longitude and latitude"@en ;
    rdfs:domain as:Place ;
    rdfs:range [ a rdfs:Datatype ;
            owl:onDatatype xsd:float ;
            owl:withRestrictions ( [ xsd:minInclusive "0.0"^^xsd:float ] ) ] .