Describes the JSON-path transformation to retrieve a field on a source object and the target field to store the value to on a destination object

interface JsonPathTransformExpression {
    defaultValue?: JsonValue;
    destinationField: string;
    sourcePathExpression: string;
}

Properties

defaultValue?: JsonValue

The default value to use if the source field does not exist

destinationField: string

The target field to store the source field into on the destination object

sourcePathExpression: string

The JSON path expressions for the source field on the source object