http://www.w3.org/ns/activitystreams#accuracy
Specifies the accuracy around the point established by the longitude and latitude
DOMAIN | PROPERTY | RANGE |
---|---|---|
as:Place , Blank node (see implementation) | as:accuracy | owl:Thing (inferred) |
@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:accuracy a owl:DatatypeProperty,
owl:FunctionalProperty ;
rdfs:label "accuracy"@en ;
rdfs:comment "Specifies the accuracy 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 ] ) ] .