> For the complete documentation index, see [llms.txt](https://docs.aligned.ch/installing-aligned-elements-web-server/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.aligned.ch/installing-aligned-elements-web-server/attributes-element/traced-objects-attribute.md).

# Traced Objects Attribute

The **TracedObjectsAttribute** displays traced objects of a specific type in a table. The table allows editing of traced objects, which means traces can be added or removed, and attributes can be edited.

## Example

The following example defines a Traced Objects Attribute that displays traced objects of type Task.

### XML

```xml
<TracedObjectsAttribute Name="Task Flow">
  <TracedType TypeName="Task">
    <DisplayedAttribute Name="Title" />
    <DisplayedAttribute Name="System Response" />
    <DisplayedAttribute Name="Use Environment" />
    <DisplayedAttribute Name="Patient Involved" />
    <DisplayedAttribute Name="Sterility Involved" />
  </TracedType>
</TracedObjectsAttribute>
```

### Appearance

<figure><img src="https://1513434666-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2F-MTuDV9CT1fe_nPqwVF4%2Fuploads%2FZdfpz2inXiTiNyOPOg9c%2Fimage.png?alt=media&amp;token=78b40825-16ce-4aac-b120-7a01ba0a63cb" alt=""><figcaption></figcaption></figure>

## XML Elements

#### TracedType&#x20;

Specifies the traced type and its displayed attributes.

#### DisplayedAttribute

Specifies the attribute of the traced object to be displayed.

## XML Attributes

#### CanCreate

Indicates if the user can create a new object directly from the table. The default value is false.

```xml
<TracedType TypeName="Task" CanCreate="false">
...
</TracedType>
```

#### TraceDirection

Specifies the trace direction. Must be "Outgoing" or "Incoming". The default value is outgoing.

```xml
<TracedType TypeName="Task" TraceDirection="Outgoing">
...
</TracedType>
```
