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 9178666 commit c4ba665Copy full SHA for c4ba665
content/docs/fields/field-types/formula/generic-functions.mdx
@@ -21,4 +21,30 @@ RECORD_ID()
21
RECORD_ID() => 1
22
```
23
24
+---
25
+
26
+## JSON_EXTRACT
27
28
+The `JSON_EXTRACT` function extracts a value from a JSON string using a jq-like syntax.
29
30
+#### Syntax
31
32
+```plaintext
33
+JSON_EXTRACT(json_string, path)
34
+```
35
36
+#### Sample
37
38
39
+JSON_EXTRACT('{"a": {"b": "c"}}', '.a.b') => "c"
40
+JSON_EXTRACT({json_column}, '.key')
41
42
43
+#### Remark
44
45
+* `json_string` must be a valid JSON string.
46
+* `path` follows jq-like dot notation (e.g., `.a.b` to access nested values).
47
+* Returns the extracted value as a string.
48
49
50
---
0 commit comments