# The Example object

An example associated with a Supervisor Agent.
 Contains a question and guidelines for how the agent should respond.

## Attributes

- `name` (string, Beta)
  Full resource name:
   supervisor-agents/{supervisor_agent_id}/examples/{example_id}
- `question` (string, Beta)
  The example question.
- `guidelines` (array of string, Beta)
  Guidelines for answering the question.
- `example_id` (string, Beta)
  The universally unique identifier (UUID) of the example.

## Example

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


