What jBuilder syntax will create an object?
A block.
What jBuilder method allows us to use multiple attributes of the same object?
json.extract!(obj, :attr1, :attr2, …)
What’s a shorthand for json.extract! ?
json.someKey obj, :attr1, :attr2
What method lets you dynamically set the value of a key?
json.set!(theKeyValue) { … }
What jBuilder method will change snake_case things into camelCase things?
json.key_format! camelize: :lower