Neo-D3-JSON

Data is often returned from isoprene-pumpjack to instruct synpatic-scout how to draw a graph.

This is done in a standard JSON format, described below:

Neo-D3-JSON Specification

Nodes

Node objects have no additional properties.

Neo-D3-JSON Example Response

HTTP/1.1 200 OK
Content-Type: application/json

{
    "nodes":[
        {
            "labels":[
                "Document"
            ],
            "id":0,
            "props":{
                "isopump_fully_loaded":true,
                "label":"AVrDasjxocluSgWq6vsT",
                "isopump_load_last":1490949576577,
                "id":"AVrDasjxocluSgWq6vsT",
                "isopump_load_initial":1490714160644
            }
        },
        {
            "labels":[
                "Dolphin"
            ],
            "id":1,
            "props":{
                "isopump_fully_loaded":true,
                "id":"Zap",
                "label":"Zap",
                "isopump_load_last":1490949577244,
                "isopump_load_initial":1490714160644
            }
        }
    ],
    "links":[
        {
            "props":{

            },
            "labels":[
                "Source"
            ],
            "id":0,
            "target":0,
            "source":1
        }
    ]
}