KarrLab / obj_tables

Tools for creating and reusing high-quality spreadsheets
https://objtables.org
MIT License
8 stars 2 forks source link

Add document, table properties to JSON #107

Closed jonrkarr closed 4 years ago

jonrkarr commented 4 years ago

Make the JSON output look like this:

{
    _documentMetadata: {
        name: '',
        objTablesVersion: '',
        date: ''
    }
    _modelMetadata: {
        ModelA: {
            id: '',
            name: ''
        },
        ModelB: {
            id: '',
            name: ''
        }
    },
    ModelA: [
        InstanceOfModelA1,
        InstanceOfModelA2
    ],
    ModelB: [
        InstanceOfModelB1,
        InstanceOfModelB2
    ]
}
jonrkarr commented 4 years ago

Done