Salome HOME
Make MEDReader compilable standalone. make test is still not working in standalone...
[modules/paravis.git] / src / Plugins / JSONReader / Examples / example1.json
1 {
2   "_metadata": {
3       "_comment": "",
4       "table_name": "Short name of the table",
5       "table_description": "A somewhat longer description for the table",
6     
7       "short_names": ["P", "u", "weight" ],
8       "long_names": [ "Pressure", "Velocity", "Total weight" ],
9       "units": [ "Pa", "m/s", "kg" ],
10       "date" : "12/09/2015"
11       },
12     
13    "items": [
14       {
15         "P":3.15,
16         "u": 0.0,
17         "weight": 43.5
18       },
19       
20       {
21         "P": 3.15,
22         "u": 0.0,
23         "weight": 43.5
24       },
25       
26       {
27         "P": 3.15,
28         "u": 0.0,
29         "weight": 43.5
30       }
31    ]
32 }