# self

### Description

`self` is used to refer to the current [instance](/guides/glossary/instance.md) where you use it.

{% hint style="info" %}
This operator can only be used with [calculated information](broken://pages/-ML71u0p4UUNJ6GTeFl0).
{% endhint %}

### Example

```
CONCAT(self.last_name, ", ", self.first_name)
```

This [expression](/rule-language/expressions.md) calculates the full name of a person, by getting the information from the fields `first_name` and `first_name`.

If the expression is attached to an instance of the ‘Person’ [ontology](/guides/glossary/ontology.md), `self` tells the system to look for the field's first name within that instance.

If there is an Instance with the values for *Information Fields* `first_name` and `last_name` as Britta Johansdottir, this will return *'Johansdottir, Britta'.*


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://docs.atfinity.io/rule-language/operators/special-operators/self.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
