<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=us-ascii">
</head>
<body style="word-wrap: break-word; -webkit-nbsp-mode: space; -webkit-line-break: after-white-space; font-size: 14px; font-family: Calibri, sans-serif; ">
<div style="color: rgb(0, 0, 0); ">Hello all,</div>
<div style="color: rgb(0, 0, 0); "><br>
</div>
<div style="color: rgb(0, 0, 0); ">My company is in the process creating location based services.  We have decided to create services that consume and produce GeoJSON documents.    I wonder if the following document adheres to the spec.  In the first feature,
 I wonder if the tag member is legitimate.  I know I could place it in properties, but I didn't know if I could make it an element.  I may have missed it in the spec, but I didn't see it.</div>
<div style="color: rgb(0, 0, 0); "><br>
</div>
<div>
<div style="color: rgb(0, 0, 0); ">{ "type": "FeatureCollection",</div>
<div style="color: rgb(0, 0, 0); ">  "features": [</div>
<div style="color: rgb(0, 0, 0); ">    { "type": "Feature",</div>
<div>     <span style="background-color: rgb(255, 255, 0);"> "tag" : "some tag",</span></div>
<div style="color: rgb(0, 0, 0); ">      "geometry": {"type": "Point", "coordinates": [102.0, 0.5]},</div>
<div style="color: rgb(0, 0, 0); ">      "properties": {"prop0": "value0"}</div>
<div style="color: rgb(0, 0, 0); ">      },</div>
<div style="color: rgb(0, 0, 0); ">    { "type": "Feature",</div>
<div style="color: rgb(0, 0, 0); ">      "geometry": {</div>
<div style="color: rgb(0, 0, 0); ">        "type": "LineString",</div>
<div style="color: rgb(0, 0, 0); ">        "coordinates": [</div>
<div style="color: rgb(0, 0, 0); ">          [102.0, 0.0], [103.0, 1.0], [104.0, 0.0], [105.0, 1.0]</div>
<div style="color: rgb(0, 0, 0); ">          ]</div>
<div style="color: rgb(0, 0, 0); ">        },</div>
<div style="color: rgb(0, 0, 0); ">      "properties": {</div>
<div style="color: rgb(0, 0, 0); ">        "prop0": "value0",</div>
<div style="color: rgb(0, 0, 0); ">        "prop1": 0.0</div>
<div style="color: rgb(0, 0, 0); ">        }</div>
<div style="color: rgb(0, 0, 0); ">      },</div>
<div style="color: rgb(0, 0, 0); ">    { "type": "Feature",</div>
<div style="color: rgb(0, 0, 0); ">       "geometry": {</div>
<div style="color: rgb(0, 0, 0); ">         "type": "Polygon",</div>
<div style="color: rgb(0, 0, 0); ">         "coordinates": [</div>
<div style="color: rgb(0, 0, 0); ">           [ [100.0, 0.0], [101.0, 0.0], [101.0, 1.0],</div>
<div style="color: rgb(0, 0, 0); ">             [100.0, 1.0], [100.0, 0.0] ]</div>
<div style="color: rgb(0, 0, 0); ">           ]</div>
<div style="color: rgb(0, 0, 0); ">       },</div>
<div style="color: rgb(0, 0, 0); ">       "properties": {</div>
<div style="color: rgb(0, 0, 0); ">         "prop0": "value0",</div>
<div style="color: rgb(0, 0, 0); ">         "prop1": {"this": "that"}</div>
<div style="color: rgb(0, 0, 0); ">         }</div>
<div style="color: rgb(0, 0, 0); ">       }</div>
<div style="color: rgb(0, 0, 0); ">     ]</div>
<div style="color: rgb(0, 0, 0); ">   }</div>
</div>
<br>
<div><br>
</div>
<div>Thanks,</div>
<div>Eliot</div>
</body>
</html>