
Lab #6: A list of latitude values

JSON instances are to contain a list of latitude values
(see Lab #5 for the data requirements on the latitude
values). There can be up to 5 lat values in the list.
Here is a valid list:

	[ "74.23", "-9.04", "89.00" ]

Define this list using JSON Schema.

Validate using the online validator tool.

Test your JSON Schema using both bad and good data.

Hint: the word "list" is codeword for "array"!

Remember to use anchors in regular expressions!