Skip to content
This repository has been archived by the owner on Aug 28, 2019. It is now read-only.

Latest commit

 

History

History
30 lines (24 loc) · 462 Bytes

json-schema.md

File metadata and controls

30 lines (24 loc) · 462 Bytes

JSON Schema

Object

{
  "type": "object",
  "properties": {
    "number":      { "type": "number" },
    "street_name": { "type": "string" },
    "street_type": { "type": "string",
                     "enum": ["Street", "Avenue", "Boulevard"]
                   }
  }
}

Array

length

{
  "type": "array",
  "minItems": 2,
  "maxItems": 3
}

See also