blob: 100ff7c2647cef745945e83a628a8dc44cbaa9b4 [file] [log] [blame] [view]
Marcel van Lohuizen75cb0032019-01-11 12:10:48 +01001[TOC](Readme.md) [Prev](fieldcomp.md) [Next](coalesce.md)
2
Marcel van Lohuizenaf0932f2019-01-11 13:03:56 +01003_Expressions_
4
Marcel van Lohuizen75cb0032019-01-11 12:10:48 +01005# Conditional Fields
6
7Field comprehensions can also be used to
8add a single field conditionally.
9
10Converting the resulting configuration to JSON results in an error
11as `justification` is required yet no concrete value is given.
12
13
14<!-- CUE editor -->
15```
16price: float
17
18// Require a justification if price is too high
19justification: string if price > 100
20
21price: 200
22```
23
24<!-- result -->
25```
26price: 200
27justification: string
28```