Skip to content

Commit e15b865

Browse files
authored
Add missing email field in sample json (#506)
Signed-off-by: Tihomir Surdilovic <[email protected]>
1 parent 2ee4865 commit e15b865

File tree

1 file changed

+19
-18
lines changed

1 file changed

+19
-18
lines changed

specification.md

Lines changed: 19 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -1675,25 +1675,26 @@ To show some expression examples, let's say we have the following state data:
16751675

16761676
```json
16771677
{
1678-
"applicant": {
1679-
"name": "John Doe",
1680-
"age" : 26,
1681-
"address" : {
1682-
"streetAddress": "Naist street",
1683-
"city" : "Nara",
1684-
"postalCode" : "630-0192"
1678+
"applicant": {
1679+
"name": "John Doe",
1680+
"age" : 26,
1681+
"email": "[email protected]",
1682+
"address" : {
1683+
"streetAddress": "Naist street",
1684+
"city" : "Nara",
1685+
"postalCode" : "630-0192"
1686+
},
1687+
"phoneNumbers": [
1688+
{
1689+
"type" : "iPhone",
1690+
"number": "0123-4567-8888"
16851691
},
1686-
"phoneNumbers": [
1687-
{
1688-
"type" : "iPhone",
1689-
"number": "0123-4567-8888"
1690-
},
1691-
{
1692-
"type" : "home",
1693-
"number": "0123-4567-8910"
1694-
}
1695-
]
1696-
}
1692+
{
1693+
"type" : "home",
1694+
"number": "0123-4567-8910"
1695+
}
1696+
]
1697+
}
16971698
}
16981699
```
16991700

0 commit comments

Comments
 (0)