Values.ViewContentSourceView content containing all content necessary to render a view except for runtime input data.
type nonrec t = {inputSchema : ViewInputSchema.t option;The schema representing the input data that the view template must be supplied to render.
*)template : ViewTemplate.t option;The view template representing the structure of the view.
*)actions : ViewActions.t option;A list of actions possible from the view
*)}val to_value :
t ->
[> `Structure of
(string
* [> `List of [> `String of ViewAction.t ] list
| `String of ViewInputSchema.t ])
list ]