Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions custom-recipes/forward_geocoding/Cobuild.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
# Cobuild guidance

Runtime constraints:
- Always configure `output_ds`; the runner assumes this output exists even though the descriptor marks the role optional.
- Always set `provider`; the runner rejects a missing provider even though the descriptor does not mark the parameter mandatory.
3 changes: 3 additions & 0 deletions custom-recipes/forward_geocoding/recipe.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,9 @@
},

"kind" : "PYTHON",
"cobuild": {
"supported": true
},
"selectableFromDataset": "input_ds",

"inputRoles" : [
Expand Down
6 changes: 6 additions & 0 deletions custom-recipes/reverse_geocoding/Cobuild.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
# Cobuild guidance

Runtime constraints:
- Always configure `output_ds`; the runner assumes this output exists even though the descriptor marks the role optional.
- Always set `provider`; the runner rejects a missing provider even though the descriptor does not mark the parameter mandatory.
- Enable at least one of `address`, `city`, `postal`, `state`, or `country`; the runner rejects a configuration with no result feature selected.
3 changes: 3 additions & 0 deletions custom-recipes/reverse_geocoding/recipe.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,9 @@
},

"kind" : "PYTHON",
"cobuild": {
"supported": true
},
"selectableFromDataset": "input_ds",

"inputRoles" : [
Expand Down