Home
last modified time | relevance | path

Searched refs:jsonPointer (Results 1 – 2 of 2) sorted by relevance

/external/json-schema-validator/src/main/java/com/networknt/schema/
DSchemaLocation.java201 boolean jsonPointer = false; in of()
204 jsonPointer = true; in of()
212 if (fragmentPartIndex == 0 && jsonPointer) { in of()
DJsonSchema.java228 String jsonPointer = ref; in getRefSchemaNode() local
231 jsonPointer = refValue; in getRefSchemaNode()
233 if (jsonPointer.startsWith("#/")) { in getRefSchemaNode()
234 jsonPointer = jsonPointer.substring(1); in getRefSchemaNode()
237 if (jsonPointer.startsWith("/")) { in getRefSchemaNode()
239 jsonPointer = URLDecoder.decode(jsonPointer, "utf-8"); in getRefSchemaNode()
244 node = node.at(jsonPointer); in getRefSchemaNode()