diff --git a/docs/odata-protocol/odata-protocol.html b/docs/odata-protocol/odata-protocol.html
index c3900c05..4c48b46a 100644
--- a/docs/odata-protocol/odata-protocol.html
+++ b/docs/odata-protocol/odata-protocol.html
@@ -2523,18 +2523,22 @@
Clients MAY associate an id with individual nested entities in the request by using the Core.ContentID
term defined in OData-VocCore. Services that respond with 200 OK
SHOULD annotate the entities in the response using the same Core.ContentID
value as specified in the request. Services SHOULD advertise support for deep updates, including support for returning the Core.ContentID
, through the Capabilities.DeepUpdateSupport
term, defined in OData-VocCap.
diff --git a/docs/odata-protocol/odata-protocol.md b/docs/odata-protocol/odata-protocol.md
index aa52e294..1714c7c8 100644
--- a/docs/odata-protocol/odata-protocol.md
+++ b/docs/odata-protocol/odata-protocol.md
@@ -4619,7 +4619,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
}
}
```
@@ -4630,7 +4632,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
}
}
```
diff --git a/odata-protocol/11.4 Data Modification.md b/odata-protocol/11.4 Data Modification.md
index 61275722..c4840f88 100644
--- a/odata-protocol/11.4 Data Modification.md
+++ b/odata-protocol/11.4 Data Modification.md
@@ -616,7 +616,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
}
}
```
@@ -627,7 +629,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
}
}
```