Skip to content

Commit 4bb243c

Browse files
committed
Better copy + names
1 parent c2baab8 commit 4bb243c

File tree

1 file changed

+7
-8
lines changed

1 file changed

+7
-8
lines changed

pages/ACTOR_FILE.md

Lines changed: 7 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -54,17 +54,16 @@ The file has the following structure:
5454
"changelog": "../../../shared/CHANGELOG.md",
5555

5656
// Links to input/output extened JSON schema files or inlined objects.
57-
// TODO: This should have been inputSchema and outputSchema for more clarity
58-
"input": "./input_schema.json",
59-
"output": "./output_schema.json",
57+
// COMPATIBILITY: This used to be called "input", all implementations should support it
58+
"inputSchema": "./input_schema.json",
59+
"outputSchema": "./output_schema.json",
6060

6161
// Links to storages schema files, or inlined schema objects.
6262
// These aren't standard JSON schema files, but our own format. See ./DATASET_SCHEMA.md
63-
"storages": {
64-
"keyValueStore": "./key_value_store_schema.json",
65-
"dataset": "../shared_schemas/generic_dataset_schema.json",
66-
"requestQueue": "./request_queue_schema.json"
67-
},
63+
// COMPATIBILITY: This used to be "storages.keyValueStore", all implementations should support it
64+
"datasetSchema": "../shared_schemas/generic_dataset_schema.json"
65+
66+
"keyValueStoreSchema": "./key_value_store_schema.json",
6867

6968
// Optional link to an OpenAPI definition file or inlined object describing the Actor web server API
7069
"webServerOpenapi": "./web_server_openapi.json",

0 commit comments

Comments
 (0)