schema:geo leaf node


URI

http://schema.org/geo

Label

geo

Description

The geo coordinates of the place.

Usage

DOMAINPROPERTYRANGE
schema:Place schema:geo schema:GeoCoordinates

Implementation

@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix schema: <http://schema.org/> .

schema:geo a rdf:Property ;
    rdfs:label "geo" ;
    schema:domainIncludes schema:Place ;
    schema:rangeIncludes schema:GeoCoordinates ;
    rdfs:comment "The geo coordinates of the place." .