fieldused
Fieldused is a concept in data modeling and software engineering that refers to a boolean indicator associated with a data field. It signals whether the field has been explicitly set or used during an operation, such as a form submission, API request, or database update, rather than merely existing in the record.
Origin and usage: The term is a compound of field and used, and has appeared in software
Patterns and implementations: Fieldused can be implemented as a separate per-field flag, as a per-record collection
Applications and limitations: Fieldused aids partial updates, change tracking, and input validation, but adds complexity and
See also: dirty flag, presence bit, nullability, optional field, auditing.