JSON
JSON (JavaScript Object Notation) is a lightweight data interchange format used to transmit data between servers and web applications. It is easy for humans to read and write and easy for machines to parse and generate.
The data is represented as a collection of key/value pairs, with the keys always being strings and the values being one of several data types, including strings, numbers, arrays, or other JSON objects.
JSON Example
1
{
2
"name": "GraphLinq Protocol",
3
"allTimeHighUSD": 0.10966683966210045,
4
"rate": 0.01375348745855626,
5
"volume": 913981,
6
"cap": 4676184,
7
"liquidity": 36833,
8
"delta": {
9
"hour": 1.0242,
10
"day": 0.9969,
11
"week": 1.1052,
12
}
13
}
The JSON Blocks available are:
Last Node to JSON
, Convert To JSON
, Add JSON Property
, Create JSON Object
, JSON Deserialize To Array
, JSON to JSON Object
, Merge JSON
, Serialize JSON Object
, and Serialize to JSON
.Last modified 4d ago