Hello! It looks like null-JSON (i.e. simply top-level "null") is not accepted by FieldMask parsing code https://github.com/protocolbuffers/protobuf/blob/main/src/google/protobuf/json/internal/parser.cc#L1001
This differs from other "well-known" types, for example, Timestamp/Duration, which accept null-JSON as a valid value and simply leave message default-initialized: https://github.com/protocolbuffers/protobuf/blob/main/src/google/protobuf/json/internal/parser.cc#L949 .
Can u please explain - is it intentional (and why)?