| 15 | } |
| 16 | |
| 17 | interface URLInfo { |
| 18 | url: string; |
| 19 | description: string; |
| 20 | relevance: 'high' | 'medium' | 'low'; |
| 21 | validated: boolean; |
| 22 | validation_reason?: string; |
| 23 | added_at: string; |
| 24 | added_by: string; |
| 25 | } |
| 26 | |
| 27 | interface SchemaField { |
| 28 | name: string; |
nothing calls this directly
no outgoing calls
no test coverage detected