We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8c56c7b commit fa7e587Copy full SHA for fa7e587
src/main/java/com/networknt/schema/SpecVersionDetector.java
@@ -17,14 +17,18 @@
17
package com.networknt.schema;
18
19
import com.fasterxml.jackson.databind.JsonNode;
20
-import com.fasterxml.jackson.databind.ObjectMapper;
21
+/**
22
+ * This class is used to detect schema version
23
+ *
24
+ * @author Subhajitdas298
25
+ * @since 25/06/20
26
+ */
27
public class SpecVersionDetector {
28
29
+ // Schema tag
30
private static final String SCHEMA_TAG = "$schema";
31
- private static ObjectMapper mapper = new ObjectMapper();
-
32
/**
33
* Detects schema version based on the schema tag
34
*
0 commit comments