diff --git a/playground/nutech/call-activity-1/select_product_color.json b/playground/nutech/call-activity-1/select_product_color.json new file mode 100644 index 00000000..265d982a --- /dev/null +++ b/playground/nutech/call-activity-1/select_product_color.json @@ -0,0 +1,31 @@ +{ + "title": "Select Product Color", + "type": "object", + "required": [ + "product_color" + ], + "properties": { + "product_color": { + "title": "Product Color", + "type": "string", + "oneOf": [ + { + "const": "white", + "title": "White" + }, + { + "const": "black", + "title": "Black" + }, + { + "const": "gray", + "title": "Gray" + }, + { + "const": "navy", + "title": "Navy" + } + ] + } + } +}