as:units leaf node


URI

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

Label

units

Description

Identifies the unit of measurement used by the radius, altitude and accuracy properties. The value can be expressed either as one of a set of predefined units or as a well-known common URI that identifies units.

Usage

DOMAINPROPERTYRANGE
as:Place , Blank node (see implementation) as:units 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:units a owl:DatatypeProperty,
        owl:FunctionalProperty ;
    rdfs:label "units"@en ;
    rdfs:comment "Identifies the unit of measurement used by the radius, altitude and accuracy properties. The value can be expressed either as one of a set of predefined units or as a well-known common URI that identifies units."@en ;
    rdfs:domain as:Place ;
    rdfs:range [ a rdfs:Datatype ;
            owl:unionOf ( [ a rdfs:Datatype ;
                        owl:oneOf ( "inches" "feet" "miles" "cm" "m" "km" ) ] xsd:anyURI ) ] .