# The Example object

An example associated with a Knowledge Assistant.
 Contains a question and guidelines for how the assistant should respond.

## Attributes

- `name` (string, Beta)
  Full resource name:
   knowledge-assistants/{knowledge_assistant_id}/examples/{example_id}
- `question` (string, Beta)
  The example question.
- `guidelines` (array of string, Beta)
  Guidelines for answering the question. Optional — examples may be created
   with just a question; the front-end form does not require guidelines.
- `example_id` (string, Beta)
  The universally unique identifier (UUID) of the example.
- `create_time` (string, Beta)
  Timestamp when this example was created.
- `update_time` (string, Beta)
  Timestamp when this example was last updated.

## Example

```json
{
  "name": "string",
  "question": "string",
  "guidelines": [
    "string"
  ],
  "example_id": "string",
  "create_time": "string",
  "update_time": "string"
}
```


