{
   "class" : {
      "rdf:type" : "rdfs:Class",
      "rdfs:comment" : "A GeoCircle is a GeoShape representing a circular geographic area. As it is a GeoShape\n          it provides the simple textual property 'circle', but also allows the combination of postalCode alongside geoRadius.\n          The center of the circle can be indicated via the 'geoMidpoint' property, or more approximately using 'address', 'postalCode'.\n       ",
      "rdfs:label" : "GeoCircle",
      "rdfs:subClassOf" : "schema:GeoShape"
   },
   "properties" : {
      "schema:geoMidpoint" : {
         "rdf:type" : "rdf:Property",
         "rdfs:comment" : "Indicates the GeoCoordinates at the centre of a GeoShape, e.g. GeoCircle.",
         "rdfs:label" : "geoMidpoint",
         "schema:domainIncludes" : "schema:GeoCircle",
         "schema:rangeIncludes" : "schema:GeoCoordinates"
      },
      "schema:geoRadius" : {
         "rdf:type" : "rdf:Property",
         "rdfs:comment" : "Indicates the approximate radius of a GeoCircle (metres unless indicated otherwise via Distance notation).",
         "rdfs:label" : "geoRadius",
         "schema:domainIncludes" : "schema:GeoCircle",
         "schema:rangeIncludes" : [
            "schema:Number",
            "schema:Text",
            "schema:Distance"
         ]
      }
   }
}