Skip to main content

$$raw

Returns the input as-is without interpreting transformers

Usage​

{ 
"$$raw": /* Value to return as-is */
}
"$$raw:{input}"

Returns​

Same type as input

Arguments​

ArgumentTypeValuesRequired / Default ValueDescription
PrimaryanyYesValue to return as-is

Examples​

Input

Definition

Output

"true"
{
"$$raw": "$$boolean:$"
}
"$$boolean:$"
"true"
{
"$$raw": {
"$$first": [
"$",
1
]
}
}
{
"$$first": [
"$",
1
]
}
"true"
{
"$$raw": [
"$",
"$$boolean:$",
{
"$$first": [
"$",
1
]
}
]
}
[
"$",
"$$boolean:$",
{
"$$first": [
"$",
1
]
}
]
"true"
"$$raw:$$boolean:$"
"$$boolean:$"
null
"$$raw:$.x"
"$.x"