diff --git a/docs/odata-protocol/odata-protocol.html b/docs/odata-protocol/odata-protocol.html index 4c48b46a..90d5af55 100644 --- a/docs/odata-protocol/odata-protocol.html +++ b/docs/odata-protocol/odata-protocol.html @@ -2514,20 +2514,20 @@
{
"FirstName": "Suzanne",
"LastName": "Brown-Johnson",
"Manager": {
- "EmployeeID": 6,
- "FirstName": null,
- "LastName": null
- }
- }
{
"@context": "$metadata#Employees/$entity",
"EmployeeID": 7,
diff --git a/docs/odata-protocol/odata-protocol.md b/docs/odata-protocol/odata-protocol.md
index 1714c7c8..2ffe7d40 100644
--- a/docs/odata-protocol/odata-protocol.md
+++ b/docs/odata-protocol/odata-protocol.md
@@ -4607,7 +4607,9 @@ payloads both reset the first and last names of the new manager:
"FirstName": "Suzanne",
"LastName": "Brown-Johnson",
"Manager": {
- "EmployeeID": 6
+ "EmployeeID": 6,
+ "FirstName": null,
+ "LastName": null
}
}
```
@@ -4619,9 +4621,7 @@ payloads both reset the first and last names of the new manager:
"FirstName": "Suzanne",
"LastName": "Brown-Johnson",
"Manager": {
- "EmployeeID": 6,
- "FirstName": null,
- "LastName": null
+ "EmployeeID": 6
}
}
```
diff --git a/odata-protocol/11.4 Data Modification.md b/odata-protocol/11.4 Data Modification.md
index c4840f88..b39e7fe7 100644
--- a/odata-protocol/11.4 Data Modification.md
+++ b/odata-protocol/11.4 Data Modification.md
@@ -604,7 +604,9 @@ payloads both reset the first and last names of the new manager:
"FirstName": "Suzanne",
"LastName": "Brown-Johnson",
"Manager": {
- "EmployeeID": 6
+ "EmployeeID": 6,
+ "FirstName": null,
+ "LastName": null
}
}
```
@@ -616,9 +618,7 @@ payloads both reset the first and last names of the new manager:
"FirstName": "Suzanne",
"LastName": "Brown-Johnson",
"Manager": {
- "EmployeeID": 6,
- "FirstName": null,
- "LastName": null
+ "EmployeeID": 6
}
}
```