View Issue Details

IDProjectCategoryView StatusLast Update
0006872SymmetricDSNew Featurepublic2025-05-07 12:16
Reporteremiller Assigned Toemiller  
Prioritynormal 
Status assignedResolutionopen 
Product Version3.16.0 
Target Version3.16.3 
Summary0006872: Add a JSON transform type
DescriptionAdd a JSON transform type which converts the entire row to JSON format. Depending on the transform_expression, it should be in one of three formats. Below are examples of the three formats:

Row for table:
"id","name","state","time"
"customer001","John","inactive","2025-01-01 02:03:04"

1. No header:
{
    "id":"customer001",
    "name":"John",
    "state":"inactive",
    "time":"2025-01-01 02:03:04"
}

2. Customizable data header:
{
    "payload":{
        "id":"customer001",
        "name":"John",
        "state":"inactive",
        "time":"2025-01-01 02:03:04"
    }
}

3. Customizable ID and data header:
{
    "_id":"customer001",
    "data":{
        "id":"customer001",
        "name":"John",
        "state":"inactive",
        "time":"2025-01-01 02:03:04"
    }
}
Tagstransformation

Activities

There are no notes attached to this issue.

Issue History

Date Modified Username Field Change
2025-05-06 18:03 emiller New Issue
2025-05-06 18:03 emiller Status new => assigned
2025-05-06 18:03 emiller Assigned To => emiller
2025-05-06 18:03 emiller Tag Attached: transformation
2025-05-07 12:16 emiller Description Updated View Revisions