"""Response utility functions.""" from owsresponse import response def validation_error(message: str) -> response.Response: """Create validation error response. Args: message: Error message Returns: Error response with status 400 """ return response.Response(message=message, status=400)