Conversation
Contributor
There was a problem hiding this comment.
Warning
Copilot couldn't run its full agentic review because it didn't start before the timeout. Make sure your repository has a runner available, or add a copilot-code-review.yml file specifying one with the runs-on attribute. See the docs for more details.
Pull request overview
Clarifies the FormBody.status_field omission and null semantics for create and update operations.
Changes:
- Documents that omission uses defaults for new forms.
- Documents that omission preserves existing configuration for updates.
- Documents that explicitly setting
status_fieldtonullclears it.
💡 Add a code-review agent skill or configure MCP servers for context-aware, tailored reviews. Learn more in the docs.
KaraFox
reviewed
Sep 18, 2026
| }, | ||
| "status_field": { | ||
| "description": "Configuration for the built-in status field. Omit to use the default status field settings.", | ||
| "description": "Configuration for the built-in status field. For new forms, omit this property to use the default status field settings. For updates, omit this property to preserve the form's existing status field configuration. Set it to null to clear the status field.", |
Contributor
There was a problem hiding this comment.
Is the default status field settings just disabled (that's what I'm seeing in testing)? Is that clarified anywhere?
KaraFox
approved these changes
Sep 18, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Clarify the shared
FormBody.status_fieldcontract for create versus update operations.status_fielduses default settings.status_fieldpreserves the current configuration.status_field: nullclears the status field.This documents the backend behavior addressed by fulcrumapp/fulcrum#11149 and closes the API-contract follow-up from review.
Validation
FormBodyis used by both create and update form operations.