Type: object

A little food fun

Type: array

Tuple Validation

Item at 1 must be:

a number

Type: number
Item at 2 must be:
Type: string

followed by a string

Item at 3 must be:

again a string

Type: enum (of string)

Must be one of:

  • "Street"
  • "Avenue"
  • "Boulevard"
Item at 4 must be:

finally an enum

Type: enum (of string)

Must be one of:

  • "NW"
  • "NE"
  • "SW"
  • "SE"

Example:

[
    1600,
    "Pennsylvania",
    "Avenue",
    "NW",
    "Washington"
]

Type: array

list of address lines

No Additional Items

Tuple Validation

Item at 1 must be:

Type: array

This is not a valid JSON Schema, but let's do it anyway.

No Additional Items