README.md in embulk-output-kintone-0.1.1 vs README.md in embulk-output-kintone-0.2.0

- old
+ new

@@ -3,11 +3,10 @@ [![Build Status](https://travis-ci.org/trocco-io/embulk-output-kintone.svg?branch=master)](https://travis-ci.org/trocco-io/embulk-output-kintone) ## Overview kintone output plugin for Embulk stores app records from kintone. -embulk 0.9 is only supported due to the dependency of kintone-java-sdk 0.4.0, which requires java 8 ## Configuration - **domain**: kintone domain(FQDN) e.g. devfoo.cybozu.com (string, required) - **username**: kintone username (string, optional) @@ -21,26 +20,27 @@ - **column_options** advanced: a key-value pairs where key is a column name and value is options for the column. - **field_code**: field code (string, required) - **type**: field type (string, required) - **timezone**: timezone to convert into `date` (string, default is `UTC`) - **update_key**: update key (boolean, default is `false`) + - **val_sep**: Used to specify multiple checkbox values (string, default is `,`) ## Example ```yaml out: type: kintone - domain: example.cybozu.com - username: username - password: password - app_id: 1 - mode: insert - column_options: - id: {field_code: "id", type: "NUMBER"} - name: {field_code: "name", type: "SINGLE_LINE_TEXT"} - number: {field_code: "num", type: "NUMBER"} - date: {field_code: "date", type: "DATE"} - date_time: {field_code: "datetime", type: "DATETIME"} + domain: example.cybozu.com + username: username + password: password + app_id: 1 + mode: insert + column_options: + id: {field_code: "id", type: "NUMBER"} + name: {field_code: "name", type: "SINGLE_LINE_TEXT"} + number: {field_code: "num", type: "NUMBER"} + date: {field_code: "date", type: "DATE"} + date_time: {field_code: "datetime", type: "DATETIME"} ``` ## Build