Tuples
- Viewer
 - JSON Schema
 
Loading ....
{
  "type": "array",
  "description": "Represent a street address such as ['1600','Pennsylvania','Avenue','NW']",
  "items": false,
  "prefixItems": [
    {
      "type": "number",
      "description": "The address number"
    },
    {
      "type": "string",
      "description": "The name of the street"
    },
    {
      "enum": [
        "Street",
        "Avenue",
        "Boulevard"
      ],
      "description": "The type of street"
    },
    {
      "enum": [
        "NW",
        "NE",
        "SW",
        "SE"
      ],
      "description": "The city quadrant of the address"
    }
  ]
}