You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
fix: Output schema (fix copy-paste mistakes) and ~~containerUrl to
containerRunUrl (I guess it is the correct variable)~~
Edit: Replace: `lnkis.containerRunUrl` with `run.containerUrl`
close: #2033
Copy file name to clipboardExpand all lines: sources/platform/actors/development/actor_definition/output_schema/index.md
+4-4Lines changed: 4 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -56,7 +56,7 @@ You can organize the files using one of these structures:
56
56
57
57
## Definitions
58
58
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.
60
60
61
61
### Output schema object definition
62
62
@@ -85,8 +85,8 @@ The key-value store schema defines the collections of keys and their properties.
85
85
|`links.apiRunUrl`| string | API run url in format `https://api.apify.com/v2/actor-runs/:runId`|
86
86
|`links.apiDefaultDatasetUrl`| string | API url of default dataset in format `https://api.apify.com/v2/datasets/:defaultDatasetId`|
87
87
|`links.apiDefaultKeyValueStoreUrl`| string | API url of default key-value store in format `https://api.apify.com/v2/key-value-stores/:defaultKeyValueStoreId`|
88
-
|`links.containerRunUrl`| string | URL of a webserver running inside the run in format `https://<containerId>.runs.apify.net/`|
89
88
|`run`| object | Contains information about the run same as it is returned from the `GET Run` API endpoint |
89
+
|`run.containerUrl`| string | URL of a webserver running inside the run in format `https://<containerId>.runs.apify.net/`|
90
90
|`run.defaultDatasetId`| string | ID of the default dataset |
91
91
|`run.defaultKeyValueStoreId`| string | ID of the default key-value store |
92
92
@@ -139,7 +139,7 @@ Then to specify that output is stored in the default dataset, create `.actor/out
139
139
}
140
140
```
141
141
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`.
143
143
144
144
The `title` is a human-readable name for the output, shown in the Apify Console.
145
145
@@ -206,7 +206,7 @@ Then to specify that output is stored in the key-value store, update `.actor/out
206
206
}
207
207
```
208
208
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`.
210
210
211
211
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.
0 commit comments