davidradl commented on code in PR #26473: URL: https://github.com/apache/flink/pull/26473#discussion_r2050455828
########## docs/content/docs/connectors/table/formats/json.md: ########## @@ -257,6 +257,37 @@ The following table lists the type mapping from Flink type to JSON type. </tbody> </table> +Features +-------- +### Allow top-level JSON Arrays + +Usually, we assume the top-level of json string is a json object. Then the json object is converted to one SQL row. + +There are some cases that, the top-level of json string is a json array, and we want to explode the array to +multiple records, each one of the array is a json object which is converted to one row. Flink JSON Format supports +read such data implicitly. Review Comment: nit: read -> reading nit: do we need the word implicitly? -- 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: issues-unsubscr...@flink.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org