Skip to content

Latest commit

 

History

History
21 lines (20 loc) · 471 Bytes

JSONformat.md

File metadata and controls

21 lines (20 loc) · 471 Bytes

JSON format used for producing annotated equation variables

[
    {
        "type" : "variable", 
        "name": "S", 
        "id" : "v123"
        "text_annotations": ["susceptible", "people that are susceptible"],
        "dkg_annotations" : [["id123", "Term 1"], ["id456", "Term 2"]]
    }, 
    ...
    { 
        "type" : "equation", 
        "latex" : "\alphaS = \beta",
        "id" : "e456", 
        "matches" : {"S":["v123"], ...}
    },
    ...
]