The declared structure of a data store or message โ what fields exist, what types they are, and what constraints apply.
Example: A database table's column definitions, or a JSON Schema describing what an API payload must look like.
In practice: Enforcing schema at the boundary (on input or at the database level) is almost always better than validating downstream โ catching bad data at the source is cheaper than tracing corrupt data through a pipeline.