Array of row objects to insert. Each object maps column keys to values. All keys must match columns defined in the table’s schema. Maximum 1000 rows per request.
Show Row object
Each key-value pair corresponds to a column in the table’s schema. For example, if the schema has columns name (text) and price (number), a valid row would be { "name": "Widget", "price": 9.99 }.
Column keys are strictly validated against the table’s schema. If any row contains a key that doesn’t match a schema column, the entire request is rejected with a 422 error listing the unknown keys.