(value: Any, schema: Mapping[str, Any])
| 120 | |
| 121 | |
| 122 | def _is_valid(value: Any, schema: Mapping[str, Any]) -> bool: |
| 123 | issues: list[ValidationIssue] = [] |
| 124 | _validate(value, schema, path="$", issues=issues) |
| 125 | return not issues |
| 126 | |
| 127 | |
| 128 | def build_schema_not_sent_hint(tool: Any) -> str: |