Skip to content

SUDS JSON UDP Packet Structure

Jason Williams edited this page Nov 26, 2019 · 3 revisions

Here you will find an example of what a JSON UDP packet to send to SUDS looks like:

[
  {
    "table": "myTable",
    "values": {
      "column1': "value1",
      "column2": "value2",
      "column3": "value3"
    }
  }
]

Keep in mind, if the table specified does not exist in SUDS, it will be created. ALL fields are stored as TEXT in SQLite. No typing is done, this is on purpose. If the table exists, but you have updated the data generator to include a new field, the new field will be added to the table. ALL fields are NULLABLE. This allows the table to flex with incoming changes. ALL rows in the table include an id and a t datestamp field.

Clone this wiki locally