structured_schema_1.json 474 Bytes
Newer Older
1
{
2
    "type": "object",
3
    "properties": {
4
      "name": { "type": "string" },
5
6
7
8
9
10
11
12
13
      "email": { "type": "string" },
      "street": { "type": "string" },
      "city": { "type": "string" },
      "state": { "type": "string" },
      "zip": { "type": "string" },
      "phone": { "type": "string" },
      "website": { "type": "string" },
      "company": { "type": "string" },
      "age": { "type": "integer" }
14
    },
15
16
    "required": [
      "name",
17
      "email"
18
19
    ]
}