TB_ArrayToJson

General description

JSON:

JSON (JavaScript Object Notation) is a lean data exchange format that is easy for humans to read and write and easy for machines to parse (analyse data structures) and generate. It is based on a subset of the JavaScript programming language, standard ECMA-262 third edition - December 1999. JSON is a text format that is completely independent of programming languages, but follows many conventions familiar to programmers from the family of C-based languages (including C, C++, C#, Java, JavaScript, Perl, Python and many others). These characteristics make JSON the ideal format for data exchange. JSON is based on two structures:

  • Name/value pairs. In various languages, this is realised as an object, record, structure, dictionary, hash table, keyed list or associative array.
  • An ordered list of values. In most languages, this is realised as an array, vector, list or sequence.

Quelle: https://www.json.org/json-de.html

Example-Integration: