Placeholder
Example
{
"account": {
"name": "alice",
"mail": "alice@example.com",
"id": 4711
}
}<template>
{
"user": {{ account/name}},
"id": {{ account/id }},
"admin": {{ account/id = 0 }}
}
</template>Last updated
{
"account": {
"name": "alice",
"mail": "alice@example.com",
"id": 4711
}
}<template>
{
"user": {{ account/name}},
"id": {{ account/id }},
"admin": {{ account/id = 0 }}
}
</template>Last updated
{
"user": "alice",
"id": 4711,
"admin": false
}