Skip to content

Commit d6c4536

Browse files
authored
Merge pull request #115743 from timsander1/master
fix error in json example
2 parents 25a4394 + 3aa0927 commit d6c4536

File tree

1 file changed

+3
-5
lines changed

1 file changed

+3
-5
lines changed

articles/cosmos-db/sql-query-working-with-json.md

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ description: Learn about to query and access nested JSON properties and use spec
44
author: timsander1
55
ms.service: cosmos-db
66
ms.topic: conceptual
7-
ms.date: 05/08/2020
7+
ms.date: 05/19/2020
88
ms.author: tisande
99
---
1010

@@ -143,13 +143,11 @@ For example, here's a document with a property named `order` and a property `pri
143143
```json
144144
{
145145
"id": "AndersenFamily",
146-
"order": [
147-
{
146+
"order": {
148147
"orderId": "12345",
149148
"productId": "A17849",
150149
"price($)": 59.33
151-
}
152-
],
150+
},
153151
"creationDate": 1431620472,
154152
"isRegistered": true
155153
}

0 commit comments

Comments
 (0)