JAL-4020 Added search for PyMOLWinWithConsole.bat (and PyMOLWin.exe) in likely places...
[jalview.git] / examples / biojson-doc / tests / basic.json
1 [{
2     "schema": {
3         "title": "Example Schema",
4         "type": "object",
5         "properties": {
6             "firstName": {
7                 "type": "string"
8             },
9             "lastName": {
10                 "type": "string"
11             },
12             "age": {
13                 "description": "Age in years",
14                 "type": "integer",
15                 "minimum": 0
16             }
17         },
18         "required": ["firstName", "lastName"]
19     }
20 }]