PATCH semantics¶
PATCH operations need three logical states for nullable fields:
- setter not called: omit field;
- setter called with a value: send value;
- setter called with
null: send JSONnull.
Example:
description is absent.
serializes as:
The SDK uses internal field maps for PATCH request classes so it does not lose this distinction through ordinary Java null handling.
The same rule applies to nullable fields in board, ticket, and document updates.