Slide 15
Slide 15 text
15
࣭อূͷೖྗϑΥʔϜΛ +40/4DIFNBͰॻ͍ͯΈΔ
{
title: "商品",
type: "object",
required: ["category_id"],
properties: {
category_id: { title: "カテゴリ", type: "number", enum: [1, 2, 3], enumNames: ["根もの", "鶏肉", "魚介加工品"] }
},
dependencies: {
category_id: {
oneOf: [
{ properties: { category_id: { const: 1 }, /** 根もの独自の入力項目 **/ }},
{ properties: { category_id: { const: 2 }, /** 鶏肉独自の入力項目 **/ }},
{ properties: { category_id: { const: 3 }, /** 魚介加工品独自の入力項目 **/ }},
]
},
},
}