Skip to content
Open
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
2 changes: 1 addition & 1 deletion cumulusci/schema/cumulusci.jsonschema.json
Original file line number Diff line number Diff line change
Expand Up @@ -421,7 +421,7 @@
},
"namespaced": {
"title": "Namespaced",
"type": "string"
"type": "boolean"
},
"setup_flow": {
"title": "Setup Flow",
Expand Down
2 changes: 1 addition & 1 deletion cumulusci/utils/yaml/cumulusci_yml.py
Original file line number Diff line number Diff line change
Expand Up @@ -147,7 +147,7 @@ class Project(CCIDictModel):
class ScratchOrg(CCIDictModel):
config_file: Path = None
days: int = None
namespaced: str = None
namespaced: bool = None
setup_flow: str = None
noancestors: bool = None
release: Literal["preview", "previous"] = None
Expand Down