Hisoka-X commented on code in PR #3510:
URL: 
https://github.com/apache/incubator-seatunnel/pull/3510#discussion_r1034233266


##########
docs/en/connector-v2/source/Http.md:
##########
@@ -124,6 +125,33 @@ connector will generate data as the following:
 
 the schema fields of upstream data
 
+### json_field [Config]
+
+The Wildcards for jsonpath. This parameter must be used with schema.
+```hocon
+source {
+  Http {
+    url = "http://mockserver:1080/jsonpath/mock";
+    method = "GET"
+    format = "json"
+    json_field = {
+      category = "$.store.book[*].category"
+      author = "$.store.book[*].author"
+      title = "$.store.book[*].title"
+      price = "$.store.book[*].price"
+    }
+    schema = {
+      fields {
+        category = string
+        author = string
+        title = string
+        price = string
+      }
+    }
+  }
+}
+```

Review Comment:
   Please add real response json example in here.



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to