# Functions for working with JSON In Yandex.Metrica, JSON is transmitted by users as session parameters. There are some special functions for working with this JSON. (Although in most of the cases, the JSONs are additionally pre-processed, and the resulting values are put in separate columns in their processed format.) All these functions are based on strong assumptions about what the JSON can be, but they try to do as little as possible to get the job done. The following assumptions are made: 1. The field name (function argument) must be a constant. 2. The field name is somehow canonically encoded in JSON. For example: `visitParamHas('{"abc":"def"}', 'abc') = 1`, but `visitParamHas('{"\\u0061\\u0062\\u0063":"def"}', 'abc') = 0` 3. Fields are searched for on any nesting level, indiscriminately. If there are multiple matching fields, the first occurrence is used. 4. The JSON doesn't have space characters outside of string literals. ## visitParamHas(params, name) Checks whether there is a field with the 'name' name. ## visitParamExtractUInt(params, name) Parses UInt64 from the value of the field named 'name'. If this is a string field, it tries to parse a number from the beginning of the string. If the field doesn't exist, or it exists but doesn't contain a number, it returns 0. ## visitParamExtractInt(params, name) The same as for Int64. ## visitParamExtractFloat(params, name) The same as for Float64. ## visitParamExtractBool(params, name) Parses a true/false value. The result is UInt8. ## visitParamExtractRaw(params, name) Returns the value of a field, including separators. Examples: ``` visitParamExtractRaw('{"abc":"\\n\\u0000"}', 'abc') = '"\\n\\u0000"' visitParamExtractRaw('{"abc":{"def":[1,2,3]}}', 'abc') = '{"def":[1,2,3]}' ``` ## visitParamExtractString(params, name) Parses the string in double quotes. The value is unescaped. If unescaping failed, it returns an empty string. Examples: ``` visitParamExtractString('{"abc":"\\n\\u0000"}', 'abc') = '\n\0' visitParamExtractString('{"abc":"\\u263a"}', 'abc') = '☺' visitParamExtractString('{"abc":"\\u263"}', 'abc') = '' visitParamExtractString('{"abc":"hello}', 'abc') = '' ``` There is currently no support for code points in the format `\uXXXX\uYYYY` that are not from the basic multilingual plane (they are converted to CESU-8 instead of UTF-8). [Original article](https://clickhouse.yandex/docs/en/query_language/functions/json_functions/) The following functions are based on [simdjson](https://github.com/lemire/simdjson) designed for more complex JSON parsing requirements. The assumption 2 mentioned above still applies. ## JSONHas(params[, accessors]...) If the value exists in the JSON document, `1` will be returned. If the value does not exist, `null` will be returned. Examples: ``` select JSONHas('{"a": "hello", "b": [-100, 200.0, 300]}', 'b') = 1 select JSONHas('{"a": "hello", "b": [-100, 200.0, 300]}', 'b', 4) = null ``` An accessor can be either a string, a positive integer or a negative integer. * String = access object member by key. * Positive integer = access the n-th member/key from the beginning. * Negative integer = access the n-th member/key from the end. You may use integers to access both JSON arrays and JSON objects. So, for example: ``` select JSONExtractKey('{"a": "hello", "b": [-100, 200.0, 300]}', 1) = 'a' select JSONExtractKey('{"a": "hello", "b": [-100, 200.0, 300]}', 2) = 'b' select JSONExtractKey('{"a": "hello", "b": [-100, 200.0, 300]}', -1) = 'b' select JSONExtractKey('{"a": "hello", "b": [-100, 200.0, 300]}', -2) = 'a' select JSONExtractString('{"a": "hello", "b": [-100, 200.0, 300]}', 1) = 'hello' ``` ## JSONLength(params[, accessors]...) Return the length of a JSON array or a JSON object. If the value does not exist or has a wrong type, `null` will be returned. Examples: ``` select JSONLength('{"a": "hello", "b": [-100, 200.0, 300]}', 'b') = 3 select JSONLength('{"a": "hello", "b": [-100, 200.0, 300]}') = 2 ``` The usage of accessors is the same as above. ## JSONType(params[, accessors]...) Return the type of a JSON value. If the value does not exist, `null` will be returned. Examples: ``` select JSONType('{"a": "hello", "b": [-100, 200.0, 300]}') = 'Object' select JSONType('{"a": "hello", "b": [-100, 200.0, 300]}', 'a') = 'String' select JSONType('{"a": "hello", "b": [-100, 200.0, 300]}', 'b') = 'Array' ``` The usage of accessors is the same as above. ## JSONExtractUInt(params[, accessors]...) ## JSONExtractInt(params[, accessors]...) ## JSONExtractFloat(params[, accessors]...) ## JSONExtractBool(params[, accessors]...) ## JSONExtractString(params[, accessors]...) Parse data from JSON values which is similar to `visitParam` functions. If the value does not exist or has a wrong type, `null` will be returned. Examples: ``` select JSONExtractString('{"a": "hello", "b": [-100, 200.0, 300]}', 'a') = 'hello' select JSONExtractInt('{"a": "hello", "b": [-100, 200.0, 300]}', 'b', 1) = -100 select JSONExtractFloat('{"a": "hello", "b": [-100, 200.0, 300]}', 'b', 2) = 200.0 select JSONExtractUInt('{"a": "hello", "b": [-100, 200.0, 300]}', 'b', -1) = 300 ``` The usage of accessors is the same as above. ## JSONExtract(params, type[, accessors]...) Parse data from JSON values with a given ClickHouse data type. If the value does not exist or has a wrong type, `null` will be returned. Examples: ``` select JSONExtract('{"a": "hello", "b": [-100, 200.0, 300]}', 'Int8', 'b', 1) = -100 select JSONExtract('{"a": "hello", "b": [-100, 200.0, 300]}', 'Tuple(String, String, String, Array(Float64))') = ('a', 'hello', 'b', [-100.0, 200.0, 300.0]) ``` The usage of accessors is the same as above.