JSON is a lightweight, plain text data format. It’s become a standard that is widely used across many industries, even healthcare.
Its simplicity simple structure makes it a good example to review some key Lua and Translator concepts.
...
Expand |
---|
title | Parse the JSON sample data using json.parse{data=Data} |
---|
|
Code Block |
---|
| local patient = json.parse{data=Data} |
JSON objects are parsed into Lua tables. You can see this clearly in the Annotation Window. |
Expand |
---|
title | Serialize the table as a JSON string using json.serialize{data=Data} |
---|
|
|
...