Json
概要
マスターデータをJson形式でコンバートします。
サンプル
Basic/Basic.xlsm#辞書
| A | B | C |
|---|---|---|
| Id | Name | |
| 1 | ご飯 | |
| 2 | パン | |
| 3 | パスタ |
yaml
header:
input_path:
- path: Basic/Basic.xlsm
sheet: 辞書
row: 1
base_type: Normal
source_type: Normal
container_type: Dictionary
output_path: Basic
name: BasicDictionary
fields:
- key: Id
name: id
type: Int
- key: Name
name: name
type: String
...
出力json
[
{
"Id": 1,
"Name": "\u3054\u98ef"
},
{
"Id": 2,
"Name": "\u30d1\u30f3"
},
{
"Id": 3,
"Name": "\u30d1\u30b9\u30bf"
}
]