Servervalidated
Servervalidated is a term used in software engineering to indicate that an input, parameter, or value has been validated on the server. It is typically used in API documentation, contract definitions, or code comments to differentiate between validations performed on the client (in the browser or app) and those performed on the server after submission. The label is not a formal standard; its usage varies by project and language. The key idea is that the server side enforces rules such as data types, required presence, format validity, value ranges, and cross-field constraints, and may perform lookups or uniqueness checks against a database before proceeding with processing.
In practice, a servervalidated input may be accompanied by a server-side validation outcome or errors when
Terminology: Some teams prefer the hyphenated form “server-side validated” or “server-validated” and avoid the single-word form.
See also: client-side validation, data validation, API design, input validation.