mirror of
https://github.com/home-assistant/home-assistant.io.git
synced 2025-07-27 19:26:50 +00:00
Add additional example
This commit is contained in:
parent
6e3b9df172
commit
9fcfb2368a
@ -206,6 +206,28 @@ The template for `on` would be:
|
|||||||
'{% raw %}{{value_json.on}}{% endraw %}'
|
'{% raw %}{{value_json.on}}{% endraw %}'
|
||||||
```
|
```
|
||||||
|
|
||||||
|
Nested JSON in a response is supported as well
|
||||||
|
|
||||||
|
```json
|
||||||
|
{
|
||||||
|
"sensor": {
|
||||||
|
"type": "air",
|
||||||
|
"id": "12345"
|
||||||
|
},
|
||||||
|
"values": {
|
||||||
|
"temp": 26.09,
|
||||||
|
"hum": 56.73,
|
||||||
|
}
|
||||||
|
}
|
||||||
|
```
|
||||||
|
|
||||||
|
Just use the "Square bracket notation" to get the value.
|
||||||
|
|
||||||
|
```yaml
|
||||||
|
'{% raw %}{{ value_json["values"]["temp"] }}{% endraw %}'
|
||||||
|
```
|
||||||
|
|
||||||
|
|
||||||
The following overview contains a couple of options to get the needed values:
|
The following overview contains a couple of options to get the needed values:
|
||||||
|
|
||||||
```text
|
```text
|
||||||
@ -226,7 +248,4 @@ The following overview contains a couple of options to get the needed values:
|
|||||||
{% raw %}{{ value_json.tst | timestamp_local }}{% endraw %}
|
{% raw %}{{ value_json.tst | timestamp_local }}{% endraw %}
|
||||||
{% raw %}{{ value_json.tst | timestamp_utc }}{% endraw %}
|
{% raw %}{{ value_json.tst | timestamp_utc }}{% endraw %}
|
||||||
{% raw %}{{ value_json.tst | timestamp_custom('%Y' True) }}{% endraw %}
|
{% raw %}{{ value_json.tst | timestamp_custom('%Y' True) }}{% endraw %}
|
||||||
|
|
||||||
# Square bracket notation
|
|
||||||
{% raw %}{{ value_json["001"] }}{% endraw %}
|
|
||||||
```
|
```
|
||||||
|
Loading…
x
Reference in New Issue
Block a user