You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
These sample schemas describe simple data structures which can be expressed as JSON. The "canonical url" links omit the ".json" extension, which is the correct
16
-
way to reference the schema in a ``$ref``, but is not friendly to web browsers.
17
-
The larger links use ".json" for browser compatibility.
88
+
```json
89
+
{
90
+
"latitude": 48.858093,
91
+
"longitude": 2.294694
92
+
}
93
+
```
94
+
95
+
## Arrays of things
96
+
97
+
Arrays are fundamental structures in JSON -- here we demonstrate a couple of ways they can be described:
98
+
99
+
* An array of string values.
100
+
* An array of objects.
101
+
102
+
We also introduce the following with this example:
|[Geographic Coordinate](example/geo.json) <br> [<small>(canonical url)</small>](geo)| a ___location as longitude and latitude |
21
-
|[Card](example/card.json) <br> [<small>(canonical url)</small>](card)| a microformat-style representation of a person, company, organization, or place |
22
-
|[Calendar](example/calendar.json) <br> [<small>(canonical url)</small>](calendar)| a microformat-style representation of an event |
23
-
|[Address](example/address.json) <br> [<small>(canonical url)</small>](address)| a microformat-style representation of a street address |
0 commit comments