| 5 | import pointer from "jsonpointer"; |
| 6 | |
| 7 | export interface ValidationError { |
| 8 | message: string; |
| 9 | path: string; |
| 10 | schemaPath: string; |
| 11 | } |
| 12 | |
| 13 | const QUOTES_REGEX = /"/g; |
| 14 | const NOT_REGEX = /NOT/g; |
nothing calls this directly
no outgoing calls
no test coverage detected