# Placeholder

Values of JSON objects are addressed using property names separated by a slash (`/`).

> 📎 Note that the `placeholder` requires whitespace between the opening `{{` and the expression. All other template commands must immediately follow the `{{`.

## Example

Input:

```javascript
{
  "account": {
    "name": "alice",
    "mail": "alice@example.com",
    "id": 4711
  }
}
```

Template:

```markup
<template>
{
  "user": {{ account/name}},
  "id": {{ account/id }},
  "admin": {{ account/id = 0 }}
}
</template>
```

Result:

```javascript
{
  "user": "alice",
  "id": 4711,
  "admin": false
}
```

The placeholder generates typed output. For example, no quotes (`""`) should be used to enclose the `{{ … }}` expression, since a string result will automatically be emitted with quotes during execution of the template. Without explicit quotes, all JSON types, including numbers, boolean values or arrays and objects can be produced correctly.


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://sevenval.gitbook.io/flat/reference/templating/placeholder.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
