Property definitions

json $ JsonKeyError :: defaultinit
# Key access error
class JsonKeyError
	super Error

	# The value on which the access was requested
	var json_value: JsonValue

	# The requested key
	#
	# In the case of `JsonValue::get`, the sub-query that failed.
	var key: Object
end
lib/json/dynamic.nit:396,1--407,3