Skip to content

Commit d1d5b59

Browse files
committed
fix: Output schema (fix copy-paste mistakes) and containerUrl to containerRunUrl (I guess it is a correct variable)
1 parent 7047c8b commit d1d5b59

File tree

1 file changed

+4
-4
lines changed
  • sources/platform/actors/development/actor_definition/output_schema

1 file changed

+4
-4
lines changed

sources/platform/actors/development/actor_definition/output_schema/index.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ You can organize the files using one of these structures:
5656

5757
## Definitions
5858

59-
The key-value store schema defines the collections of keys and their properties. It allows you to organize and validate data stored by the Actor, making it easier to manage and retrieve specific records.
59+
The output schema defines the collections of keys and their properties. It allows you to organize and validate data stored by the Actor, making it easier to manage and retrieve specific records.
6060

6161
### Output schema object definition
6262

@@ -139,7 +139,7 @@ Then to specify that output is stored in the default dataset, create `.actor/out
139139
}
140140
```
141141

142-
To show, that the output is stored in the default key-value store, the schema defines a property called `results`.
142+
To show that the output is stored in the default dataset, the schema defines a property called `results`.
143143

144144
The `title` is a human-readable name for the output, shown in the Apify Console.
145145

@@ -206,7 +206,7 @@ Then to specify that output is stored in the key-value store, update `.actor/out
206206
}
207207
```
208208

209-
To show, that the output is stored in the default key-value store, the schema defines a property called `files`.
209+
To show that the output is stored in the default key-value store, the schema defines a property called `files`.
210210

211211
The `template` uses a variable `{{links.apiDefaultKeyValueStoreUrl}}`, which is replaced with the URL of the default key-value store API endpoints when the Actor run finishes.
212212

@@ -297,7 +297,7 @@ The conversation history is then stored in the dataset.
297297
"clientUrl": {
298298
"type": "string",
299299
"title": "Chat client",
300-
"template": "{{run.containerUrl}}"
300+
"template": "{{run.containerRunUrl}}"
301301
},
302302
"chatHistory": {
303303
"type": "string",

0 commit comments

Comments
 (0)