> For the complete documentation index, see [llms.txt](https://platform.slapdash.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://platform.slapdash.com/reference/command-response-view.md).

# View

Views define, what's shown to the user when the command is executed. The view can be provided at the root of the [Command Response](/reference/command-response.md) using the `CommandReponse.view` property.

The simplest view one can use is text. Simply set the view property to some text and it will be shown in the Command Bar.

```javascript
{
  "view": "Ahoy, world!"
}
```

Read on about other views that can be used in the Command Response: [List](/reference/command-response-view-list.md#list), [Masonry](/reference/command-response-view-masonry.md) and [Form](/reference/command-response-view-form.md).
