YDBDocument
Written by
Updated at August 18, 2026
Note
Currently, there are two UIs that support Workflows: Yandex Cloud
- Workflows created in the Yandex Cloud UI are automatically available in the AI Studio UI.
- Workflows created in the AI Studio UI are not available in the Yandex Cloud UI.
Starting September 3, 2026, Workflows will no longer be supported in the Yandex Cloud UI. To create and manage workflows, use the AI Studio UI.
Interacting with document tables in the Yandex Managed Service for YDB database. The get, put, update, and scan fields are mutually exclusive: you can use only one of them.
| Field name | Type | Required | Default value | Templating supported | Description |
|---|---|---|---|---|---|
database |
string |
Yes | None | None | Database ID. |
tableName |
string |
Yes | None | None | Table name. |
get |
YdbDocumentGet | None | None | None | Configuring the get action to select an entry from the table. |
put |
YdbDocumentPut | None | None | None | Configuring the put action to add an entry to the table. |
update |
YdbDocumentUpdate | None | None | None | Configuring the update action to update an entry in the table. |
scan |
YdbDocumentScan | None | None | None | Configuring the scan action to get a list of table entries. |
YdbDocumentGet
| Field name | Type | Required | Default value | Templating supported | Description |
|---|---|---|---|---|---|
key |
string |
Yes | None | Yes | Primary key value for a database item. |
YdbDocumentPut
| Field name | Type | Required | Default value | Templating supported | Description |
|---|---|---|---|---|---|
item |
string |
Yes | None | Yes | JSON-serialized data item to insert into a table. |
YdbDocumentUpdate
| Field name | Type | Required | Default value | Templating supported | Description |
|---|---|---|---|---|---|
key |
string |
Yes | None | Yes | Primary key value for a database item. |
expression |
string |
Yes | None | Yes | Expression to describe the updates to the attributes of a database item. For more information, see UpdateExpression. |
expressionAttributeValues |
string |
None | "" |
Yes | Values for attributes used in the expression. For more information, see ExpressionAttributeValues. |
YdbDocumentScan
| Field name | Type | Required | Default value | Templating supported | Description |
|---|---|---|---|---|---|
limit |
string |
None | None | Yes | Maximum number of items in the list |
exclusive_start_key |
string |
None | None | Yes | Primary key value for a database item to start the search from. |