@prefix rdf:	<http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix schema:	<http://schema.org/> .
schema:polygon	rdf:type	rdf:Property .
@prefix rdfs:	<http://www.w3.org/2000/01/rdf-schema#> .
schema:polygon	rdfs:label	"polygon" ;
	rdfs:comment	"A polygon is the area enclosed by a point-to-point path for which the starting and ending points are the same. A polygon is expressed as a series of four or more space delimited points where the first and final points are identical." ;
	schema:domainIncludes	schema:GeoShape ;
	schema:rangeIncludes	schema:Text .