Skip to content

Instantly share code, notes, and snippets.

@tormi
Forked from sgillies/ld-example.json
Created November 2, 2016 10:27
Show Gist options
  • Save tormi/a0d10f9ed7db888abe8467a685b420c0 to your computer and use it in GitHub Desktop.
Save tormi/a0d10f9ed7db888abe8467a685b420c0 to your computer and use it in GitHub Desktop.
Display the source blob
Display the rendered blob
Raw
{
"@context": {
"@vocab": "http://example.com/vocab#",
"Place": "http://schema.org/Place",
"name": "http://schema.org/name"
},
"type": "FeatureCollection",
"@id": "http://example.com/collections/1",
"features": [
{
"type": "Feature",
"@type": ["Feature", "Place"],
"id": "1",
"@id": "http://example.com/collections/1/features/1",
"properties": {"name": "Fort Collins, Colorado" },
"geometry": {"type": "Point", "coordinates": [-105.078056, 40.559167]}
},
{
"type": "Feature",
"@type": ["Feature", "Place"],
"id": "2",
"@id": "http://example.com/collections/1/features/2",
"properties": {"name": "Boulder, Colorado" },
"geometry": {"type": "Point", "coordinates": [-105.251945, 40.027435]}
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment