You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: api-specs/api/resources/custom-objects.raml
+7-7Lines changed: 7 additions & 7 deletions
Original file line number
Diff line number
Diff line change
@@ -51,7 +51,7 @@ post:
51
51
If an object with the given container/key exists, the object will be replaced with the new value and the version is incremented.
52
52
If the request contains a version and an object with the given container/key, then the version must match the version of the existing object. Concurrent updates to the same Custom Object returns a [ConcurrentModification](ctp:api:type:ConcurrentModificationError) error even if the version is not provided.
53
53
54
-
Fields with `null` values will **not be saved**.
54
+
Fields within `value` that have `null` values **are not saved**.
Copy file name to clipboardExpand all lines: api-specs/api/types/custom-object/CustomObject.raml
+3-3Lines changed: 3 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -46,6 +46,6 @@ properties:
46
46
value:
47
47
type: any
48
48
description: |
49
-
JSON standard types Number, String, Boolean, Array, Object, and [common API data types](/../api/types).
50
-
For values of type [Reference](ctp:api:type:Reference) the integrity of the data is not guaranteed.
51
-
If the referenced object is deleted, the API does not delete the corresponding reference to it and the `value` points to a non-existing object in such case.
49
+
Can be any JSON standard type, such as number, string, boolean, array, object, or a [common API data type](/../api/types).
50
+
51
+
- For values of type [Reference](ctp:api:type:Reference) the integrity of the data is not guaranteed. If the referenced object is deleted, the API does not delete the corresponding reference to it and the `value` points to a non-existing object in such case.
Copy file name to clipboardExpand all lines: api-specs/api/types/custom-object/CustomObjectDraft.raml
+4-3Lines changed: 4 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -19,9 +19,10 @@ properties:
19
19
value:
20
20
type: any
21
21
description: |
22
-
JSON standard types Number, String, Boolean, Array, Object, and [common API data types](/../api/types).
23
-
For values of type [Reference](ctp:api:type:Reference) the integrity of the data is not guaranteed.
24
-
If the referenced object is deleted, the API does not delete the corresponding reference to it and the `value` points to a non-existing object in such case.
22
+
Can be any JSON standard type, such as number, string, boolean, array, object, or a [common API data type](/../api/types).
23
+
24
+
- Fields within `value` that have `null` values **are not saved**.
25
+
- For values of type [Reference](ctp:api:type:Reference) the integrity of the data is not guaranteed. If the referenced object is deleted, the API does not delete the corresponding reference to it and the `value` points to a non-existing object in such case.
0 commit comments