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