Typed expansion
"@type:${path.to.property}"Examples
"@number:${scope.path.to.value}" // "99" -> 99
"@int:${scope.path.to.value}" // "99" -> 99
"@long:${scope.path.to.value}" // "99" -> 99L
"@float:${scope.path.to.value}" // "56.78" -> 56.78F
"@double:${scope.path.to.value}" // "56.78" -> 56.78
"@boolean:${scope.path.to.value}" // "true" -> true
"@bool:${scope.path.to.value}" // "false" -> false
"@json:${scope.path.to.value}" // "{}" -> {}Last updated